Access Control Algorithm for RPR MAC
|
|
|
- Melvyn Benson
- 10 years ago
- Views:
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
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
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
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
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
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
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
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:...
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
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
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
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
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
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
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,
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
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.
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
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
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
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
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
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.
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,
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
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
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
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
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.
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
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
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.
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
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
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
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
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
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
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
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
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
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
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.
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
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
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 [email protected],
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
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
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
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
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
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
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
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
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
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
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
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
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,
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
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
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
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
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
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
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
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
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.
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
Credit Report Reissue Recommendation TABLE OF CONTENTS
T: Credit Reprting Wrkgrup Frm: Mike Bixby (305) 829-5549 [email protected] Paul Wills (770) 740-7353 [email protected] Date: February 13, 2007 Re: Credit Reprt Reissue Recmmendatin The MISMO Credit
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
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
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
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
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
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
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
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...
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
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
