Access Control Algorithm for RPR MAC

Size: px
Start display at page:

Download "Access Control Algorithm for RPR MAC"

Transcription

1 Access Cntrl Algrithm fr RPR MAC Kanaiya Vasani Anp Ghanwani Lantern Cmmunicatins IEEE Interim Meeting Orland, FL January 2002 kv_acc_02.pdf 1

2 Outline Overview MAC architecture Cmpnents f the bandwidth management entity Cmplexity analysis Cnclusins January 2002 kv_acc_02.pdf 2

3 The Need fr Access Cntrl Cntrl access t shared medium in rder t Prevent cllisins and cngestin n the shared medium e.g. On-ramp cntrls n freeways Make efficient use f the medium January 2002 kv_acc_02.pdf 3

4 RPR is a Clsed Lp Cntrl System Detect level f activity n the medium Regulate access t the medium based n this feedback All prpsals under cnsideratin are clsed lp systems January 2002 kv_acc_02.pdf 4

5 System Perfrmance Perfrmance f a clsed lp system depends n Precise feedback Timely feedback Rapid respnse January 2002 kv_acc_02.pdf 5

6 Feedback Prvided t Each Nde Prvides each nde its fair share f available bandwidth n a ring segment Fr this, ne needs 2 pieces f infrmatin The number f surces transmitting The available bandwidth (this is a cnstant number) January 2002 kv_acc_02.pdf 6

7 MAC Mdel DATA.indicate {RCMi }.indicate DATA.request PAUSE.indicate Media Access Rate Plicing Entity RPR MAC Link BW Mnitr Entity January 2002 kv_acc_02.pdf 7

8 Objectives fr a MAC Fairness Algrithm Ability t supprt multiple traffic types Prvide surce-based weighted fairness Maximize netwrk utilizatin Supprt VQ-capable and nn-vq capable clients Fast respnse time Stable Lssless Simplicity Scalable (size, speed, multiple ringlets) January 2002 kv_acc_02.pdf 8

9 The MAC Fairness Algrithm The bandwidth management entity implements a 3-step clsed-lp prcess: Link bandwidth mnitr entity Mnitr traffic and calculate rate infrmatin Fairness message management entity Distribute the rate infrmatin t all ndes Media access rate plicing entity Use the rate infrmatin fr access cntrl January 2002 kv_acc_02.pdf 9

10 MAC Architecture MAC Client DATA.indicate Data Path Bandwidth Management Entity DATA.request PAUSE.indicate Media Access Rate Plicing Entity RCM.indicate 13 Fairness Message Managament Entity 6 5 Ringlet In Receive Transit 1 Entity 2 Buffer Link Bandwidth Mnitr Entity 4 Ringlet Out Arbiter/Scheduler January 2002 kv_acc_02.pdf 10

11 Link Bandwidth Mnitr Entity Ringlet In Ringlet Out Per-surce cunters Signal t the fairness message management entity RCF Cmputatin January 2002 kv_acc_02.pdf 11

12 What is the Rate Cntrl Factr (RCF)? A factr sent t all ndes t cnvey rate infrmatin RCF = (AvailableBW Sum Ri) / Sum Wi where the sums are cmputed ver active flws nly AvailableBW = Link speed guaranteed BW Ri is the cmmitted rate fr surce i Wi is the weight fr surce i Used by each nde t cmpute its weighted fair share f BW Fair share f surce i n a segment Fi = Ri + Wi * RCF f that segment RCF allws us t cmpress infrmatin sent We culd have dne the cmputatin and sent 255 Fi s! January 2002 kv_acc_02.pdf 12

13 Link Bandwidth Mnitr Entity (Cncept) Maintain a per-surce bucket that increments by the number f bytes in each packet frm that surce At each rate measurement interval Drain the bucket based n the fair rate fr the surce as cmputed using the previus RCF Cmpute the new RCF January 2002 kv_acc_02.pdf 13

14 Link Bandwidth Mnitr Entity arrival /* Traffic mnitring */ bucket[surce_nde] += (Recmmended 1 usec at 10G) /* calculate RCF */ sum_r = 0; sum_w = 0; fr (i = 0; i < NumNdes; i++) { /* fr each surce nde */ if (bucket[i] > 0) { /* d nly fr active flws */ sum_r += R[i]; sum_w += W[i]; } bucket[i] -= calcinterval * (R[i] + W[i] * RCF); /* drain bucket */ if (bucket[i] <= 0) bucket[i] = 0; } RCF_sampled = min(((availableringbw sum_r)/sum_w),availableringbw); RCF_ld = RCF; RCF = a * RCF_ld + (1 - a) * RCF_sampled; /* lw pass filter */ January 2002 kv_acc_02.pdf 14

15 Fairness Message Management Entity Respnsible fr sending and receiving rate cntrl messages (RCMs) RCMs are peridically bradcast n bth rings Fast and rbust t message lss Sends the RCM infrmatin t the MAC client if the client is VQ-capable January 2002 kv_acc_02.pdf 15

16 Rate Cntrl Message Frmat RCM Specific fields RPR Header Message type Cntrl Length Statin ID Sequence Number RCF Ringlet 1 RCF Ringlet 2 RCF. RCF Ringlet N FCS 4 bytes 6 bytes 4 bytes 4 bytes 4 bytes 4 bytes 4 bytes Cmmn cntrl frame and message Message type = RCM Cntrl: Specific cntrl bits Versin, etc. Length: length f RCM packet Statin ID: Packet s surce statin address Sequence Number: Detect packet lss RCF: Rate Cntrl Factr, ne fr each ringlet FCS: Errr detectin fr RCM January 2002 kv_acc_02.pdf 16

17 Media Access Rate Plicing Entity Uses the RCFs frm all ndes fr access cntrl (plicing) Generates PAUSE.indicate t the client if the client exceeds its capacity The PAUSE.indicate is generated per-segment in ndes that supprt VQ The nde is blcked frm transmitting nly if the data wuld need t traverse a paused segment January 2002 kv_acc_02.pdf 17

18 Media Access Rate Plicing Entity (Cncept) Each nde implements a leaky bucket plicer fr every segment n the ring based n the received RCFs If the bucket fr any segment ges empty, that segment is paused Client can n lnger transmit data that needs t traverse that segment January 2002 kv_acc_02.pdf 18

19 Media Access Rate Plicing Entity Pseud-cde /* recmmend 100 usec at 10G */ fr each (link segment i n the ring) { /* calculate the allwable bandwidth fr this nde */ F = R[curr_nde] + W[curr_nde] * RCF[i]; /* accumulate credits fr each segment */ segment_credit[i] += F * Tupdate; segment_credit[i] = MIN(segment_credit[i], MAX_CREDIT); } /* has client has exceeded credit fr segment? */ if (segment_credit[i] < 0) { segment_paused[i] = TRUE; assert PAUSE.indicate fr segment i; } else { segment_paused[i] = FALSE; clear PAUSE.indicate fr segment i; } January 2002 kv_acc_02.pdf 19

20 Media Access Rate Plicing Entity Pseud-cde frm client /* at every transmissin request */ fr each (link segment i between surce and destinatin) { if (segment_paused[i] == TRUE) { reject DATA.request; return; } } accept DATA.request; fr each (link segment i between surce and destinatin) { /* deduct segment credit */ segment_credit[i] -= packet_length; } January 2002 kv_acc_02.pdf 20

21 Tying it all Tgether: An Example RCF = 10 A RCF = 10 B D RCF = 10 RCF = 5 C Assume weights are all 1 and reserved/cmmitted rates are 0 One surce active n segment 1 Tw surces active n segment 2 RCFs fr each link will be as shwn At nde B, fr plicing interval credits(seg1) = interval * 10 credits(seg2) = interval * 5 When sending a packet frm B t C, decrement credits(seg1) When sending a packet frm B t D, decrement bth credit(seg1) & credit(seg2) If credit(seg1) becmes zer, n traffic can be sent If credit(seg2) becmes zer, nly traffic frm B t C can be sent January 2002 kv_acc_02.pdf 21

22 Simple and Intuitive Hw d yu measure cmplexity? Implementatin cmplexity Number f gates and registers Amunt f memry Lgic cmplexity Number f decisin pints in a flwchart January 2002 kv_acc_02.pdf 22

23 Memry Lgic Implementatin Cst and Cmplexity W[]: 256 ndes x 8 bits = 1 kbits (prvisined) R[]: 256 ndes x 32 bits = 8 kbits (prvisined) bucket[]: 256 ndes x 32 bits = 8 kbits RCF[]: 256 ndes x 32 bits = 8 kbits segment_credit[]: 256 ndes x 16 bits = 4 kbits ~40K gates fr the link bandwidth mnitr entity (mnitring and fair rate cmputatin) ~30K gates fr the media access rate plicing entity (access cntrl plicing) January 2002 kv_acc_02.pdf 23

24 Summary Simple and intuitive MAC algrithm Mnitr traffic and cmpute rate infrmatin Bradcast the rate infrmatin t all ndes Cntrl access using rate infrmatin received Very fast respnse time and cnvergence Prvides accurate and timely feedback Easy t implement ~70,000 gates January 2002 kv_acc_02.pdf 24

Traffic monitoring on ProCurve switches with sflow and InMon Traffic Sentinel

Traffic monitoring on ProCurve switches with sflow and InMon Traffic Sentinel An HP PrCurve Netwrking Applicatin Nte Traffic mnitring n PrCurve switches with sflw and InMn Traffic Sentinel Cntents 1. Intrductin... 3 2. Prerequisites... 3 3. Netwrk diagram... 3 4. sflw cnfiguratin

More information

How do I evaluate the quality of my wireless connection?

How do I evaluate the quality of my wireless connection? Hw d I evaluate the quality f my wireless cnnectin? Enterprise Cmputing & Service Management A number f factrs can affect the quality f wireless cnnectins at UCB. These include signal strength, pssible

More information

Health Care Solution

Health Care Solution Management Summary & Technical Overview Versin 1 5405 Altn Parkway, 5-A #359 Irvine, CA 92604 (949) 733-8526 Cpyright The prgrams and cncepts mentined herein are prprietary t, and are nt t be reprduced,

More information

Andrew Cope & Casey Schaertl

Andrew Cope & Casey Schaertl Andrew Cpe & Casey Schaertl What is PCI Express? Peripheral Cmpnent Intercnnect Express A high-speed serial cnnectin Mre like a netwrk than a bus Has several pint-t-pint serial cnnectins (lanes) Used as

More information

Trends and Considerations in Currency Recycle Devices. What is a Currency Recycle Device? November 2003

Trends and Considerations in Currency Recycle Devices. What is a Currency Recycle Device? November 2003 Trends and Cnsideratins in Currency Recycle Devices Nvember 2003 This white paper prvides basic backgrund n currency recycle devices as cmpared t the cmbined features f a currency acceptr device and a

More information

CONTRIBUTION TO T1 STANDARDS PROJECT. On Shared Risk Link Groups for diversity and risk assessment Sudheer Dharanikota, Raj Jain Nayna Networks Inc.

CONTRIBUTION TO T1 STANDARDS PROJECT. On Shared Risk Link Groups for diversity and risk assessment Sudheer Dharanikota, Raj Jain Nayna Networks Inc. Bulder, CO., March 26-28, 2001 /2001-098 CONTRIBUTION TO T1 STANDARDS PROJECT TITLE SOURCE PROJECT On Shared Risk Link Grups fr diversity and risk assessment Sudheer Dharanikta, Raj Jain Nayna Netwrks

More information

State of Wisconsin. File Server Service Service Offering Definition

State of Wisconsin. File Server Service Service Offering Definition State f Wiscnsin File Server Service Service Offering Definitin Dcument Revisin Histry Date Versin Creatr Ntes 2/16/2008 1.0 JD Urfer First pass 2/16/2008 2.0 Tm Runge Editing changes 2/19/2009 2.1 Tm

More information

Prioritization and Management of VoIP & RTP s

Prioritization and Management of VoIP & RTP s Priritizatin f VIP Priritizatin and Management f VIP & RTP s Priritizatin and Management f VIP & RTP s 1 2006 SkyPilt Netwrks, Inc. Intrductin This dcument will utline the prcess by which the SkyPilt netwrk

More information

Networking Best Practices

Networking Best Practices Netwrking Best Practices Use f a Lad Balancer With Hitachi Cntent Platfrm and Hitachi Cntent Platfrm Anywhere By Hitachi Data Systems August 2015 Cntents Executive Summary... 3 Intrductin... 4 Lad Balancer

More information

Gregorio Martín Telefónica I+D

Gregorio Martín Telefónica I+D RESOURCE ALLOCATION IN DANGEROUS GOODS TRANSPORTATION ENVIRONMENTS Gregri Martín Telefónica I+D Safety as a key pririty 2 Imprving safety is an EC pririty (2003-2010 Eurpean Rad Safety Actin Prgramme).

More information

Knowledge Base Article

Knowledge Base Article Knwledge Base Article Crystal Matrix Interface Cmparisn TCP/IP vs. SDK Cpyright 2008-2012, ISONAS Security Systems All rights reserved Table f Cntents 1: INTRODUCTION... 3 1.1: TCP/IP INTERFACE OVERVIEW:...

More information

2. When logging is used, which severity level indicates that a device is unusable?

2. When logging is used, which severity level indicates that a device is unusable? Last updated by Admin at March 3, 2015. 1. What are the mst cmmn syslg messages? thse that ccur when a packet matches a parameter cnditin in an access cntrl list link up and link dwn messages utput messages

More information

2008 BA Insurance Systems Pty Ltd

2008 BA Insurance Systems Pty Ltd 2008 BA Insurance Systems Pty Ltd BAIS have been delivering insurance systems since 1993. Over the last 15 years, technlgy has mved at breakneck speed. BAIS has flurished in this here tday, gne tmrrw sftware

More information

AHI. Foreign Pre-Approval Inspections (PAIs) Points to Consider

AHI. Foreign Pre-Approval Inspections (PAIs) Points to Consider AHI Freign Pre-Apprval Inspectins (PAIs) Pints t Cnsider The fllwing suggestins are intended t prvide spnsr guidance fr timeliness and predictability f freign PAIs. The FDA Center fr Veterinary Medicine

More information

System Business Continuity Classification

System Business Continuity Classification Business Cntinuity Prcedures Business Impact Analysis (BIA) System Recvery Prcedures (SRP) System Business Cntinuity Classificatin Cre Infrastructure Criticality Levels Critical High Medium Lw Required

More information

Volume 2, Issue 11, November 2014 International Journal of Advance Research in Computer Science and Management Studies

Volume 2, Issue 11, November 2014 International Journal of Advance Research in Computer Science and Management Studies Vlume 2, Issue 11, Nvember 2014 Internatinal Jurnal f Advance Research in Cmputer Science and Management Studies Research Article / Survey Paper / Case Study Available nline at: www.ijarcsms.cm ISSN: 2321

More information

System Business Continuity Classification

System Business Continuity Classification System Business Cntinuity Classificatin Business Cntinuity Prcedures Infrmatin System Cntingency Plan (ISCP) Business Impact Analysis (BIA) System Recvery Prcedures (SRP) Cre Infrastructure Criticality

More information

THE MANAGEMENT OF LINUX VIRTUAL LAB BY DUAL LOAD BALANCING AKHIL S NAIK S7-CSE A ROLL NO:2 VJCET

THE MANAGEMENT OF LINUX VIRTUAL LAB BY DUAL LOAD BALANCING AKHIL S NAIK S7-CSE A ROLL NO:2 VJCET THE MANAGEMENT OF LINUX VIRTUAL LAB BY DUAL LOAD BALANCING AKHIL S NAIK S7-CSE A ROLL NO:2 VJCET INTRODUCTION Explsive grwth f Linux users Annual Rate f 21% Prviding each students a dedicated Linux machine

More information

Data Protection Act Data security breach management

Data Protection Act Data security breach management Data Prtectin Act Data security breach management The seventh data prtectin principle requires that rganisatins prcessing persnal data take apprpriate measures against unauthrised r unlawful prcessing

More information

How to deploy IVE Active-Active and Active-Passive clusters

How to deploy IVE Active-Active and Active-Passive clusters Hw t deply IVE Active-Active and Active-Passive clusters Overview Juniper Netscreen SA and SM series appliances supprt Active/Passive r Active/Active cnfiguratins acrss a LAN r a WAN t prvide high availability,

More information

The AppSec How-To: Choosing a SAST Tool

The AppSec How-To: Choosing a SAST Tool The AppSec Hw-T: Chsing a SAST Tl Surce Cde Analysis Made Easy GIVEN THE WIDE RANGE OF SOURCE CODE ANALYSIS TOOLS, SECURITY PROFESSIONALS, AUDITORS AND DEVELOPERS ALIKE ARE FACED WITH THE QUESTION: Hw

More information

GUIDANCE FOR BUSINESS ASSOCIATES

GUIDANCE FOR BUSINESS ASSOCIATES GUIDANCE FOR BUSINESS ASSOCIATES This Guidance fr Business Assciates dcument is intended t verview UPMCs expectatins, as well as t prvide additinal resurces and infrmatin, t UPMC s HIPAA business assciates.

More information

State of Wisconsin DET Agency Managed Virtual Services Service Offering Definition

State of Wisconsin DET Agency Managed Virtual Services Service Offering Definition State f Wiscnsin DET Agency Managed Virtual Services Service Offering Definitin Dcument Revisin Histry Date Versin Creatr Ntes 6/03/08 1.0 James Sylla Initial draft 9/21/11 1.7 Amy Dustin Annual review

More information

OPERATIONAL ISSUES AND CONCERNS WITH BROADBAND DATA

OPERATIONAL ISSUES AND CONCERNS WITH BROADBAND DATA Bradband Summit OPERATIONAL ISSUES AND CONCERNS WITH BROADBAND DATA Michael Weins Directr, RCC PSIS May 6, 2014 RCC Cnsultants Wrking with public safety and mbile data systems fr ver 30 years RCC has develped

More information

In connection with the SEC's Money Market Reform proposal, DST Systems, Inc. respectfully submits our comments for your consideration.

In connection with the SEC's Money Market Reform proposal, DST Systems, Inc. respectfully submits our comments for your consideration. DST September 18, 2013 Ms. Elizabeth M. Murphy Secretary Securities and Exchange Cmmissin 100 F. Street, NE Washingtn, DC 20549-1090 Subject: Mney Market Fund Refrm, File# 57-03-13 Dear Ms. Murphy: In

More information

Identify Major Server Hardware Components

Identify Major Server Hardware Components 98-365 Windws Server Administratin Fundamentals Identify Majr Server Hardware Cmpnents 98-365 Windws Server Administratin Fundamentals Lessn Overview In this lessn, yu will learn: Server frm factrs Server

More information

Integrate Marketing Automation, Lead Management and CRM

Integrate Marketing Automation, Lead Management and CRM Clsing the Lp: Integrate Marketing Autmatin, Lead Management and CRM Circular thinking fr marketers 1 (866) 372-9431 www.clickpintsftware.cm Clsing the Lp: Integrate Marketing Autmatin, Lead Management

More information

Information Services Hosting Arrangements

Information Services Hosting Arrangements Infrmatin Services Hsting Arrangements Purpse The purpse f this service is t prvide secure, supprted, and reasnably accessible cmputing envirnments fr departments at DePaul that are in need f server-based

More information

Research Report. Abstract: The Emerging Intersection Between Big Data and Security Analytics. November 2012

Research Report. Abstract: The Emerging Intersection Between Big Data and Security Analytics. November 2012 Research Reprt Abstract: The Emerging Intersectin Between Big Data and Security Analytics By Jn Oltsik, Senir Principal Analyst With Jennifer Gahm Nvember 2012 2012 by The Enterprise Strategy Grup, Inc.

More information

Research Report. Abstract: Advanced Malware Detection and Protection Trends. September 2013

Research Report. Abstract: Advanced Malware Detection and Protection Trends. September 2013 Research Reprt Abstract: Advanced Malware Detectin and Prtectin Trends By Jn Oltsik, Senir Principal Analyst With Jennifer Gahm, Senir Prject Manager September 2013 2013 by The Enterprise Strategy Grup,

More information

June 29, 2009 Incident Review Dallas Fort Worth Data Center Review Dated: July 8, 2009

June 29, 2009 Incident Review Dallas Fort Worth Data Center Review Dated: July 8, 2009 The purpse f this dcument is t capture the events and subsequent respnse t the incident that tk place in the DFW datacenter n 29 June, 2009. I. Executive Summary On 29 June, an area f the Rackspace DFW

More information

PBX Remote Line Extension using Mediatrix 4104 and 1204 June 22, 2011

PBX Remote Line Extension using Mediatrix 4104 and 1204 June 22, 2011 PBX Remte Line Extensin using Mediatrix 4104 and 1204 June 22, 2011 Prprietary 2011 Media5 Crpratin Table f Cntents Intrductin... 3 Applicatin Scenari... 3 Running the Unit Manager Netwrk Sftware... 4

More information

Remote Monitoring Service

Remote Monitoring Service Remte Mnitring Service Service Definitin Fr G-Clud 7 September 2015 G-Clud 7 Service Definitin Remte Mnitring Service Mnitred parameters The fllwing sectins prvide a detailed view f what parameters Daisy

More information

Microsoft SQL Server Administration

Microsoft SQL Server Administration Micrsft SQL Server Administratin Disk & memry David Hksza http://siret.cz/hksza Lecture Outline Query lifecycle Data strage SQL Server Memry SELECT Query Lifecycle 1. SNI client-server cnnectin using TCP/IP

More information

Organisational self-migration guide an overview V1-5 April 2014

Organisational self-migration guide an overview V1-5 April 2014 Organisatinal self-migratin guide an verview V1-5 April 2014 Cpyright 2013, Health and Scial Care Infrmatin Centre. 1 Self Migratin t NHSmail an verview fr rganisatins Cntents Intrductin 3 1. Initial preparatins

More information

FCA US INFORMATION & COMMUNICATION TECHNOLOGY MANAGEMENT

FCA US INFORMATION & COMMUNICATION TECHNOLOGY MANAGEMENT EDI ROADMAP FCA US INFORMATION & COMMUNICATION TECHNOLOGY MANAGEMENT FCA US EDI Radmap Business Requirement All FCA suppliers and carriers are required t establish an Electrnic Data Interchange (EDI) cnnectin.

More information

Johnston Public Schools Special Education Procedural Manual. IEP Overview

Johnston Public Schools Special Education Procedural Manual. IEP Overview Jhnstn Public Schls Special Educatin Prcedural Manual IEP Overview Definitin The Individualized Educatin Prgram (IEP) is a written plan fr the apprpriate educatin f students with disabilities. It is a

More information

WinFlex Web Single Sign-On (EbixLife XML Format) Version: 1.5

WinFlex Web Single Sign-On (EbixLife XML Format) Version: 1.5 WinFlex Web Single Sign-On (EbixLife XML Frmat) Versin: 1.5 The gal f this dcument is t specify and explre the basic peratins that are required t facilitate a vendr applicatin requesting access t the WinFlex

More information

CMS Eligibility Requirements Checklist for MSSP ACO Participation

CMS Eligibility Requirements Checklist for MSSP ACO Participation ATTACHMENT 1 CMS Eligibility Requirements Checklist fr MSSP ACO Participatin 1. General Eligibility Requirements ACO participants wrk tgether t manage and crdinate care fr Medicare fee-fr-service beneficiaries.

More information

CCPRF. Request for Proposals. Monitoring Services. November 25, 2009

CCPRF. Request for Proposals. Monitoring Services. November 25, 2009 CCPRF Request fr Prpsals Mnitring Services Nvember 25, 2009 Table f Cntents SECTION I... 1 1.1 INTRODUCTION AND OPPORTUNITY... 1 1.2 OBJECTIVES OF RFP... 1 1.3 STATEMENT OF WORK... 1 SECTION II... 2 2.1

More information

MiaRec. Performance Monitoring. Revision 1.1 (2014-09-18)

MiaRec. Performance Monitoring. Revision 1.1 (2014-09-18) Revisin 1.1 (2014-09-18) Table f Cntents 1 Purpse... 3 2 Hw it wrks... 3 3 A list f MiaRec perfrmance cunters... 4 3.1 Grup MiaRec Statistics... 4 3.2 Grup MiaRec Call Statistics Per-State... 5 3.3 Grup

More information

Data Measurement and Output

Data Measurement and Output ENERGY STAR Server Cnference Call June 30, 2010 Cnference Call Agenda 12:30-2PM EST EPA Team Una Sng, US EPA Evan Haines, ICF Internatinal Al Thmasn, TBWC LLC Tpics I. Intrductin II. III. IV. Data Measurement

More information

This report provides Members with an update on of the financial performance of the Corporation s managed IS service contract with Agilisys Ltd.

This report provides Members with an update on of the financial performance of the Corporation s managed IS service contract with Agilisys Ltd. Cmmittee: Date(s): Infrmatin Systems Sub Cmmittee 11 th March 2015 Subject: Agilisys Managed Service Financial Reprt Reprt f: Chamberlain Summary Public Fr Infrmatin This reprt prvides Members with an

More information

RECONCILIATION OF FUNDS

RECONCILIATION OF FUNDS RECONCILIATION OF FUNDS ROLES Departmental Staff f Interest Accuntants Office Managers Business Managers Prgram Assistants OVERVIEW S why d we need t recncile? Gd general business practices determine that

More information

SELDAC: Software-Defined Storage based Efficient Load Distribution and Auto Scaling in Cloud Data Centers

SELDAC: Software-Defined Storage based Efficient Load Distribution and Auto Scaling in Cloud Data Centers Jurnal f Cmmunicatins Vl. 0, N. 2, December 205 SELDAC: Sftware-Defined Strage based Efficient Lad Distributin and Aut Scaling in Clud Data Centers Renuga Kanaga and Khin Mi Mi Aung Data Center Technlgy

More information

Executive Summary. City of Kawartha Lakes EMS Master Plan-Executive Summary February 2011

Executive Summary. City of Kawartha Lakes EMS Master Plan-Executive Summary February 2011 Executive Summary The City f Kawartha Lakes (the City) Emergency Medical Services (EMS) serves an area f apprximately 3,060 square kilmeters with a ppulatin f apprximately 74,561 persns. Over the next

More information

A96 CALA Policy on the use of Computers in Accredited Laboratories Revision 1.5 August 4, 2015

A96 CALA Policy on the use of Computers in Accredited Laboratories Revision 1.5 August 4, 2015 A96 CALA Plicy n the use f Cmputers in Accredited Labratries Revisin 1.5 August 4, 2015 A96 CALA Plicy n the use f Cmputers in Accredited Labratries TABLE OF CONTENTS TABLE OF CONTENTS... 1 CALA POLICY

More information

CNS-205 Citrix NetScaler 10.5 Essentials and Networking

CNS-205 Citrix NetScaler 10.5 Essentials and Networking CNS-205 Citrix NetScaler 10.5 Essentials and Netwrking Descriptin: The bjective f the Citrix NetScaler 10.5 Essentials and Netwrking curse is t prvide the fundatinal cncepts and advanced skills necessary

More information

Backups and Backup Strategies

Backups and Backup Strategies IT Security Office Versin 2.3 02/19/10 Backups and Backup Strategies IT managers need t plan fr backups in terms f time and space required. Hwever, mst mdern backup sftware can cmpress the backup files

More information

Performance of an Infiniband cluster running MPI applications

Performance of an Infiniband cluster running MPI applications Jsé Miguel-Alns1, Txema Mercer2, Edu Ogand2 In 1Department f Cmputer Architecture and Technlgy, UPV/EHU the 2Scientific Cmputing Service, UPV/EHU f this paper we shw the Technical results f Reprt running

More information

Research Report. Abstract: Data Center Networking Trends. January 2012. By Jon Oltsik With Bob Laliberte and Bill Lundell

Research Report. Abstract: Data Center Networking Trends. January 2012. By Jon Oltsik With Bob Laliberte and Bill Lundell Research Reprt Abstract: Data Center Netwrking Trends By Jn Oltsik With Bb Laliberte and Bill Lundell January 2012 2012 Enterprise Strategy Grup, Inc. All Rights Reserved. Intrductin Research Objective

More information

The Importance Advanced Data Collection System Maintenance. Berry Drijsen Global Service Business Manager. knowledge to shape your future

The Importance Advanced Data Collection System Maintenance. Berry Drijsen Global Service Business Manager. knowledge to shape your future The Imprtance Advanced Data Cllectin System Maintenance Berry Drijsen Glbal Service Business Manager WHITE PAPER knwledge t shape yur future The Imprtance Advanced Data Cllectin System Maintenance Cntents

More information

Segment-oriented Recovery

Segment-oriented Recovery Advanced Tpics in Operating Systems, CS262a Prf. Eric A. Brewer (with help frm Rusty Sears) Segment-riented Recvery ARIES wrks great but is 20+ years ld and has sme prblems: viewed as very cmplex n available

More information

How to Reduce Project Lead Times Through Improved Scheduling

How to Reduce Project Lead Times Through Improved Scheduling Hw t Reduce Prject Lead Times Thrugh Imprved Scheduling PROBABILISTIC SCHEDULING & BUFFER MANAGEMENT Cnventinal Prject Scheduling ften results in plans that cannt be executed and t many surprises. In many

More information

Performance Analysis of Virtual Environments Nikhil Vidyadhar Mishrikoti (nikmys@cs.utah.edu)

Performance Analysis of Virtual Environments Nikhil Vidyadhar Mishrikoti (nikmys@cs.utah.edu) Perfrmance Analysis f Virtual Envirnments Nikhil Vidyadhar Mishrikti (nikmys@cs.utah.edu) Intrductin Virtual machines are becming an integral part f bth industrial data center facilities and large academic

More information

Software Quality Assurance Plan

Software Quality Assurance Plan Sftware Quality Assurance Plan fr AnthrpdEST pipeline System Versin 1.0 Submitted in partial fulfillment f the requirements f the degree f Master f Sftware Engineering Prepared by Luis Fernand Carranc

More information

State Bank Virtual Card FAQs

State Bank Virtual Card FAQs State Bank Virtual Card FAQs 1) What is State Bank Virtual Card? State Bank Virtual Card is a limit Debit card, which can be created using the State Bank Internet Banking facility fr ecmmerce (nline) transactins.

More information

McAfee Enterprise Security Manager. Data Source Configuration Guide. Infoblox NIOS. Data Source: September 2, 2014. Infoblox NIOS Page 1 of 8

McAfee Enterprise Security Manager. Data Source Configuration Guide. Infoblox NIOS. Data Source: September 2, 2014. Infoblox NIOS Page 1 of 8 McAfee Enterprise Security Manager Data Surce Cnfiguratin Guide Data Surce: Infblx NIOS September 2, 2014 Infblx NIOS Page 1 f 8 Imprtant Nte: The infrmatin cntained in this dcument is cnfidential and

More information

Spread Bet Terms: Deposit Accounts

Spread Bet Terms: Deposit Accounts Spread Bet Terms: Depsit Accunts 1. Structure 1.1 When we engage in Spread Betting with yu, we d s n the basis f: - ur General Terms; these terms, i.e. ur Spread Terms. 1.2 The Spread Terms deal with matters

More information

Controller Failover for SDN Enterprise Networks

Controller Failover for SDN Enterprise Networks Cntrller Failver fr SDN Enterprise Netwrks Vasily Pashkv, Alexander Shalimv, Ruslan Smeliansky Lmnsv Mscw State University, Applied Research Center fr Cmputer Netwrks Mscw, Russia pashkv@lvk.cs.msu.su,

More information

Nex-Gen Web Load Balancer

Nex-Gen Web Load Balancer Nex-Gen Web Lad Balancer Pramati Enterprise prducts have served thusands f applicatins in many different verticals fr ver 10 years. Pramati Server was the first standards-based applicatin server t achieve

More information

How to put together a Workforce Development Fund (WDF) claim 2015/16

How to put together a Workforce Development Fund (WDF) claim 2015/16 Index Page 2 Hw t put tgether a Wrkfrce Develpment Fund (WDF) claim 2015/16 Intrductin What eligibility criteria d my establishment/s need t meet? Natinal Minimum Data Set fr Scial Care (NMDS-SC) and WDF

More information

Ensuring end-to-end protection of video integrity

Ensuring end-to-end protection of video integrity White paper Ensuring end-t-end prtectin f vide integrity Prepared by: Jhn Rasmussen, Senir Technical Prduct Manager, Crprate Business Unit, Milestne Systems Date: May 22, 2015 Milestne Systems Ensuring

More information

Introduction cont. Network Core: Circuit Switching. Network Core: Packet Switching. Network Core: Packet Switching. Network Core: Packet Switching

Introduction cont. Network Core: Circuit Switching. Network Core: Packet Switching. Network Core: Packet Switching. Network Core: Packet Switching Intrductin cnt. Netwrk Cre: Circuit Switching Lecture gal: get cntext, verview, feel f netwrking mre depth, detail later in curse apprach: descriptive use Internet as example Overview: access net, media

More information

Spread Bet Terms: Deposit Accounts

Spread Bet Terms: Deposit Accounts Spread Bet Terms: Depsit Accunts 1. Structure 1.1 When we engage in Spread Betting with yu, we d s n the basis f: - ur General Terms; these terms, i.e. ur Spread Terms. 1.2 The Spread Terms deal with matters

More information

Spread Bet Terms: Deposit Accounts

Spread Bet Terms: Deposit Accounts Spread Bet Terms: Depsit Accunts 1. Structure 1.1 When we engage in Spread Betting with yu, we d s n the basis f: - ur General Terms; these terms, i.e. ur Spread Terms. 1.2 The Spread Terms deal with matters

More information

TELE GREENLAND A/S (Referred to as TELE-POST) Wholesale Data Services. Annex C6. National IP Service. Service Description

TELE GREENLAND A/S (Referred to as TELE-POST) Wholesale Data Services. Annex C6. National IP Service. Service Description TELE Greenland A/S Whlesale Data Services TELE GREENLAND A/S (Referred t as TELE-POST) Whlesale Data Services Natinal IP Service Service Descriptin 30.6.2015 Page 1 f 5 TELE Greenland A/S Whlesale Data

More information

State of Wisconsin DET Dedicated Virtual Host Services Offering Definition

State of Wisconsin DET Dedicated Virtual Host Services Offering Definition State f Wiscnsin DET Dedicated Virtual Hst Services Offering Definitin Dcument Revisin Histry Date Versin Creatr Ntes 10/29/2010 1.0 Phil Staley Initial draft 11/3/2010 1.1 Phil Staley Ryan McKee Secnd

More information

field, priority queuing). At the Institute of Communication Networks and Satellite II. To carry voice over different network technologies, their

field, priority queuing). At the Institute of Communication Networks and Satellite II. To carry voice over different network technologies, their DEPLOYING IP TELEPHONY OVER SATELLITE LINKS Rnald Tegl, Ulla Bimbacher, Ott Kudelka Institute f Cmmunicatin Netwrks and Satellite Cmmunicatins, Graz University f Technlgy, Graz, Austria Abstract- IP Telephny

More information

Communicating Deficiencies in Internal Control to Those Charged with Governance and Management

Communicating Deficiencies in Internal Control to Those Charged with Governance and Management Internatinal Auditing and Assurance Standards Bard ISA 265 April 2009 Internatinal Standard n Auditing Cmmunicating Deficiencies in Internal Cntrl t Thse Charged with Gvernance and Management Internatinal

More information

Watlington and Chalgrove GP Practice - Patient Satisfaction Survey 2011

Watlington and Chalgrove GP Practice - Patient Satisfaction Survey 2011 Watlingtn and Chalgrve GP - Patient Satisfactin Survey 2011 Backgrund During ne week in Nvember last year patients attending either the Chalgrve r the Watlingtn surgeries were asked t cmplete a survey

More information

Bill Payment Agreement & Disclosures

Bill Payment Agreement & Disclosures Bill Payment Agreement & Disclsures Welcme t Online Banking Bill Payment Service. Use f the Bill Payment Service indicates acceptance f terms and cnditins set frth in the Online Banking Agreement & Disclsures

More information

DALBAR Due Diligence: Trust, but Verify

DALBAR Due Diligence: Trust, but Verify BEST INTEREST INVESTMENT RECOMMENDATIONS Advisr Rle under Best Interest Regulatins January 27, 2016 In the era when the cntractual bligatin is t act in the client s best interest, investment decisins can

More information

SBClient and Microsoft Windows Terminal Server (Including Citrix Server)

SBClient and Microsoft Windows Terminal Server (Including Citrix Server) SBClient and Micrsft Windws Terminal Server (Including Citrix Server) Cntents 1. Intrductin 2. SBClient Cmpatibility Infrmatin 3. SBClient Terminal Server Installatin Instructins 4. Reslving Perfrmance

More information

Request for Proposals

Request for Proposals Request fr Prpsals GIS Prject Water & Sewer Systems Issued by: NEOnet Inc. 4715 Highway 101 East Suth Prcupine, ON P0N1H0 Phne: 705.360.1353 Web: www.nenet.n.ca Deadline fr Submissin: 5:00 p.m. March 11,

More information

Comparisons between CRM and CCM PFC *

Comparisons between CRM and CCM PFC * Energy and Pwer Engineering, 13, 5, 864-868 di:1.436/epe.13.54b165 Published Online July 13 (http://www.scirp.rg/jurnal/epe Cmparisns between CRM and CCM PFC * Weiping Zhang,Wei Zhang,Jianb Yang 1,Faris

More information

Diagnostic Manager Change Log

Diagnostic Manager Change Log Diagnstic Manager Change Lg Updated: September 8, 2015 4.4.4090 Features and Issues Supprt fr Office 365 Tenants Yu can nw: Mnitr the status f Office 365 Services (including SharePint Online, Exchange

More information

Chapter 3: Cluster Analysis

Chapter 3: Cluster Analysis Chapter 3: Cluster Analysis 3.1 Basic Cncepts f Clustering 3.1.1 Cluster Analysis 3.1. Clustering Categries 3. Partitining Methds 3..1 The principle 3.. K-Means Methd 3..3 K-Medids Methd 3..4 CLARA 3..5

More information

Personal Data Security Breach Management Policy

Personal Data Security Breach Management Policy Persnal Data Security Breach Management Plicy 1.0 Purpse The Data Prtectin Acts 1988 and 2003 impse bligatins n data cntrllers in Western Care Assciatin t prcess persnal data entrusted t them in a manner

More information

Position Paper on In-Network Object Cloud Architecture and Design Goals. Interconnecting Smart Objects with Internet Workshop 25 th March 2011

Position Paper on In-Network Object Cloud Architecture and Design Goals. Interconnecting Smart Objects with Internet Workshop 25 th March 2011 Architecture and Design Gals Intercnnecting Smart Objects with Internet Wrkshp 25 th March 2011 Alex Galis Stuart Clayman University Cllege Lndn Department

More information

Network Security Trends in the Era of Cloud and Mobile Computing

Network Security Trends in the Era of Cloud and Mobile Computing Research Reprt Abstract: Netwrk Security Trends in the Era f Clud and Mbile Cmputing By Jn Oltsik, Senir Principal Analyst and Bill Lundell, Senir Research Analyst With Jennifer Gahm, Senir Prject Manager

More information

The ADVANTAGE of Cloud Based Computing:

The ADVANTAGE of Cloud Based Computing: The ADVANTAGE f Clud Based Cmputing: A Web Based Slutin fr: Business wners and managers that perate equipment rental, sales and/r service based rganizatins. R M I Crpratin Business Reprt RMI Crpratin has

More information

Experience on inspection and audit of Emergency Response System

Experience on inspection and audit of Emergency Response System Experience n inspectin and audit f Emergency Respnse System Fabrizi Gambetti ENI R&M Via Laurentina 449 pal. A 00142 Rma Emergency respnse is nly ever effective if ptential, credible emergency incidents

More information

UNIVERSITY OF CALIFORNIA MERCED PERFORMANCE MANAGEMENT GUIDELINES

UNIVERSITY OF CALIFORNIA MERCED PERFORMANCE MANAGEMENT GUIDELINES UNIVERSITY OF CALIFORNIA MERCED PERFORMANCE MANAGEMENT GUIDELINES REFERENCES AND RELATED POLICIES A. UC PPSM 2 -Definitin f Terms B. UC PPSM 12 -Nndiscriminatin in Emplyment C. UC PPSM 14 -Affirmative

More information

Disk Redundancy (RAID)

Disk Redundancy (RAID) A Primer fr Business Dvana s Primers fr Business series are a set f shrt papers r guides intended fr business decisin makers, wh feel they are being bmbarded with terms and want t understand a cmplex tpic.

More information

R091: Award Contract to FDM Software Ltd. for a Computer Aided Fire Dispatch (CAD) and Integrated Fire Records Management System (RMS)

R091: Award Contract to FDM Software Ltd. for a Computer Aided Fire Dispatch (CAD) and Integrated Fire Records Management System (RMS) Crprate NO: R091 Reprt COUNCIL DATE: April 19, 2004 REGULAR COUNCIL TO: Mayr and Cuncil DATE: April 2 nd 2004 FROM: Fire Chief FILE: 1360-20 SUBJECT: Award Cntract t FDM Sftware Ltd. fr a Cmputer Aided

More information

CFD AND SPOT FOREX TERMS: DEPOSIT ACCOUNTS

CFD AND SPOT FOREX TERMS: DEPOSIT ACCOUNTS 1. Structure 1.1 When we engage in cfd r spt frex trading with yu, we d s n the basis f: - ur General Terms; these terms, i.e. ur CFD and Spt Frex Terms. 1.2 The CFD and Spt Frex Terms deal with matters

More information

Credit Report Reissue Recommendation TABLE OF CONTENTS

Credit Report Reissue Recommendation TABLE OF CONTENTS T: Credit Reprting Wrkgrup Frm: Mike Bixby (305) 829-5549 MBixby@LandAm.cm Paul Wills (770) 740-7353 Paul.Wills@Equifax.cm Date: February 13, 2007 Re: Credit Reprt Reissue Recmmendatin The MISMO Credit

More information

Fiscal Operation of Service Centers

Fiscal Operation of Service Centers Oregn University System Fiscal Plicy Manual Fiscal Operatin f Service Centers Sectin: Accunting and Financial Reprting Number: 05.713 Title: Fiscal Operatin f Service Centers Index POLICY.100 POLICY STATEMENT.110

More information

Safe PST Backup Enterprise Edition Administrator Guide

Safe PST Backup Enterprise Edition Administrator Guide Safe PST Backup Enterprise Editin Administratr Guide Versin 2.50 Cntents Intrductin... 3 Installatin... 3 Prduct Activatin... 4 Safe PST Backup Client Activatin... 4 Activatin Thrugh 4Team Online Activatin

More information

COUNTY OF SONOMA AGENDA ITEM SUMMARY REPORT

COUNTY OF SONOMA AGENDA ITEM SUMMARY REPORT COUNTY OF SONOMA AGENDA ITEM SUMMARY REPORT Department: General Services Cntact: Phne: Dave Head (707) 565-2809 Bard Date: May 12, 2009 Clerk f the Bard Use Only Meeting Date Held Until / / / / Agenda

More information

Mobile Workforce. Improving Productivity, Improving Profitability

Mobile Workforce. Improving Productivity, Improving Profitability Mbile Wrkfrce Imprving Prductivity, Imprving Prfitability White Paper The Business Challenge Between increasing peratinal cst, staff turnver, budget cnstraints and pressure t deliver prducts and services

More information

1.3. The Mean Temperature Difference

1.3. The Mean Temperature Difference 1.3. The Mean Temperature Difference 1.3.1. The Lgarithmic Mean Temperature Difference 1. Basic Assumptins. In the previus sectin, we bserved that the design equatin culd be slved much easier if we culd

More information

I I I I I I CISCO _. ViaECFS. May 30, 2014

I I I I I I CISCO _. ViaECFS. May 30, 2014 I I I I I I CISCO _ May 30, 2014 Cisc Systems, Inc. 601 Pennsylvania Ave. NW gth Flr. Nrth Bu1ld1ng Washingtn. DC 20004 Phne 202 354-2904 Fax. 202 354-2930 wwwc1sccm ViaECFS Jn Wilkins, Managing Directr

More information

Best Practice - Pentaho BA for High Availability

Best Practice - Pentaho BA for High Availability Best Practice - Pentah BA fr High Availability This page intentinally left blank. Cntents Overview... 1 Pentah Server High Availability Intrductin... 2 Prerequisites... 3 Pint Each Server t Same Database

More information

Financial Accountability Handbook

Financial Accountability Handbook Financial Accuntability Handbk >> Vlume 5 Reprting Systems Infrmatin Sheet 5.2 Preparatin f Financial Statements Intrductin The Financial Accuntability Act 2009 (the Act) and the Financial and Perfrmance

More information

High Availability for TFTP with Provisioning Services

High Availability for TFTP with Provisioning Services Wrldwide Cnsulting Slutins WHITE PAPER Implementatin Guide 2 High Availability fr TFTP with Prvisining Services Implementatin Guide www.citrix.cm Cntents Overview... 3 Optins... 4 DNS Rund Rbin Entry...

More information

Data Abstraction Best Practices with Cisco Data Virtualization

Data Abstraction Best Practices with Cisco Data Virtualization White Paper Data Abstractin Best Practices with Cisc Data Virtualizatin Executive Summary Enterprises are seeking ways t imprve their verall prfitability, cut csts, and reduce risk by prviding better access

More information

White Paper. NetWolves. Managed Network Services. Version 1 Published 8/2013 MK2129

White Paper. NetWolves. Managed Network Services. Version 1 Published 8/2013 MK2129 NetWlves Managed Netwrk Services White Paper Versin 1 Published 8/2013 CORPORATE OFFICE 4710 Eisenhwer Blvd. Suite E-8 Tampa, FL 33634-6337 855-638-9658 (NET-WOLV) www.netwlves.cm MK2129 Metrics That Matter

More information