Chapter 5: outline. Network-layer functions. Chapter 5: outline. Routing protocols. data plane. Logically centralized control plane

Size: px
Start display at page:

Download "Chapter 5: outline. Network-layer functions. Chapter 5: outline. Routing protocols. data plane. Logically centralized control plane"

Transcription

1 Chapter : otline. introdction. roting protocols distance ector. intra-as roting in the Netork-laer fnctions Recall: to netork-laer fnctions: forarding: moe packets roter s inpt to appropriate roter otpt roting: determine rote taken b packets sorce to destination data control To approaches to strctring netork control : per-roter control (traditional) logicall centralied control (softare defined netorking) - - Per-roter control Indiidal roting algorithm components in each and eer roter interact ith each other in control to compte forarding s Logicall centralied control A distinct (tpicall remote) controller interacts ith local control agents (CAs) in roters to compte forarding s Remote Controller Roting Algorithm Local forarding header otpt control data CA CA CA CA CA control data - - Chapter : otline. introdction. roting protocols distance ector. intra-as roting in the Roting protocols Roting protocol goal: determine good paths (eqialentl, rotes), sending hosts to receiing host, throgh netork of roters path: seqence of roters packets ill traerse in going gien initial sorce host to gien final destination host good : least cost, fastest, least congested roting: a top-0 netorking challenge! - -6

2 Graph abstraction of the netork Graph abstraction: costs graph: G = (N,E) N = set of roters = {,,,,, } E = set of links ={ (,), (,), (,), (,), (,), (,), (,), (,), (,) } aside: graph abstraction is sefl in other netork contets, e.g., PP, here N is set of peers and E is set of TCP connections c(, ) = cost of link (, ) e.g., c(,) = cost cold alas be, or inersel related to bandidth, or inersel related to congestion cost of path (,,,, p) = c(,) + c(,) + + c(p-,p) ke qestion: hat is the least-cost path beteen and? roting algorithm: algorithm that finds that least cost path - -8 Roting algorithm classification Q: global or decentralied information? global: all roters hae complete topolog, link cost info link state algorithms decentralied: roter knos phsicallconnected neighbors, link costs to neighbors iteratie process of comptation, echange of info ith neighbors distance ector algorithms Q: static or dnamic? static: rotes change slol oer time dnamic: rotes change more qickl periodic pdate in response to link cost changes -9 Chapter : otline. introdction. roting protocols distance ector. intra-as roting in the. -0 A link-state roting algorithm Dijsktra s algorithm Dijkstra s algorithm net topolog, link costs knon to all nodes accomplished ia link state broadcast all nodes hae same info comptes least cost paths one node ( sorce ) to all other nodes gies forarding for that node iteratie: after k iterations, kno least cost path to k dest. s notation: c(,): link cost node to ; = if not direct neighbors D(): crrent ale of cost of path sorce to dest. p(): predecessor node along path sorce to N': set of nodes hose least cost path definitiel knon - Initialiation: N' = {} for all nodes if adjacent to then D() = c(,) 6 else D() = 8 Loop 9 find not in N' sch that D() is a minimm 0 add to N' pdate D() for all adjacent to and not in N' : D() = min( D(), D() + c(,) ) /* ne is either old or knon shortest path pls cost to */ ntil all nodes in N' -

3 Dijkstra s algorithm: eample D() D() D() D() D() Step N' p() p() p() p() p() 0,,, 6,,, 6,,, 0,,, notes: constrct shortest path tree b tracing predecessor nodes ties can eist (can be broken arbitraril) Dijkstra s algorithm: another eample Step 0 N' D(),p(),,, D(),p(),,,, * Check ot the online interactie eercises for more eamples: D(),p(), D(),p(), D(),p(),,, - Dijkstra s algorithm: eample () reslting shortest-path tree : Dijkstra s algorithm, discssion algorithm compleit: n nodes each iteration: need to check all nodes,, not in N n(n+)/ comparisons: O(n ) more efficient implementations possible: O(nlogn) reslting forarding in : destination link (,) (,) (,) (,) (,) - -6 Chapter : otline. introdction. roting protocols distance ector. intra-as roting in the Distance ector algorithm Bellman-Ford eqation (dnamic programming) let d () := cost of least-cost path to then d () = min {c(,) + d () } cost neighbor to destination neighbor min taken oer all neighbors of - -8

4 Bellman-Ford eample clearl, d () =, d () =, d () = B-F eqation sas: d () = min { c(,) + d (), c(,) + d (), c(,) + d () } = min { +, +, + } = node achieing minimm is net hop in shortest path, sed in forarding Distance ector algorithm D () = estimate of least cost to maintains distance ector D = [D (): є N ] node : knos each neighbor : c(,) maintains its neighbors distance ectors. For each neighbor, maintains D = [D (): є N ] -9-0 Distance ector algorithm ke idea: time-to-time, each node sends its on distance ector estimate to neighbors hen receies ne DV estimate neighbor, it pdates its on DV sing B-F eqation: D () min {c(,) + D ()} for each node N nder minor, natral conditions, the estimate D () conerge to the actal least cost d () Distance ector algorithm iteratie, asnchronos: each local iteration cased b: local link cost change DV pdate message neighbor distribted: each node notifies neighbors onl hen its DV changes neighbors then notif their neighbors if necessar each node: ait for (change in local link cost or msg neighbor) recompte estimates if DV to an dest has changed, notif neighbors - - node 0 node 0 D() = min{c(,) + D(), c(,) + D()} = min{+0, +} = D() = min{c(,) + D(), c(,) + D()} = min{+, +0} = node 0 node 0 D() = min{c(,) + D(), c(,) + D()} = min{+0, +} = D() = min{c(,) + D(), c(,) + D()} = min{+, +0} = node 0 time - node time -

5 Distance ector: link cost changes link cost changes: node detects local link cost change pdates roting info, recalclates distance ector if DV changes, notif neighbors good nes traels fast 0 t0 : detects link-cost change, pdates its DV, informs its neighbors. t : receies pdate, pdates its, comptes ne least, sends its neighbors its DV. t : receies s pdate, pdates its distance. s least costs do not change, so does not send a message to. Distance ector: link cost changes link cost changes: node detects local link cost change bad nes traels slo - cont to infinit problem! iterations before algorithm stabilies: see tet 60 0 poisoned reerse: If Z rotes throgh Y to get to X : Z tells Y its (Z s) distance to X is infinite (so Y on t rote to X ia Z) ill this completel sole cont to infinit problem? * Check ot the online interactie eercises for more eamples: Comparison of LS and DV algorithms message compleit LS: ith n nodes, E links, O(nE) msgs sent DV: echange beteen neighbors onl conergence time aries speed of conergence LS: O(n ) algorithm reqires O(nE) msgs ma hae oscillations DV: conergence time aries ma be roting loops cont-to-infinit problem robstness: hat happens if roter malfnctions? LS: node can adertise incorrect link cost each node comptes onl its on DV: DV node can adertise incorrect path cost each node s sed b others error propagate thr netork Chapter : otline. introdction. roting protocols distance ector. intra-as roting in the - -8 Making roting scalable or roting std ths far - idealied all roters identical netork flat not tre in practice scale: ith billions of destinations: can t store all destinations in roting s! roting echange old samp links! administratie atonom internet = netork of netorks each netork admin ma ant to control roting in its on netork -9 Internet approach to scalable roting aggregate roters into regions knon as atonomos sstems (AS) (a.k.a. domains ) intra-as roting roting among hosts, roters in same AS ( netork ) all roters in AS mst rn same intra-domain protocol roters in differentas can rn different intra-domain roting protocol gatea roter: at edge of its on AS, has link(s) to inter-as roting roting among AS es gateas perform interdomain roting (as ell as intra-domain roting) roter(s) in other AS es -0

6 Interconnected ASes c a b AS a c d Intra-AS Roting b algorithm Forarding AS Inter-AS Roting algorithm c a b AS forarding configred b both intraand inter-as roting algorithm intra-as roting determine entries for destinations ithin AS inter-as & intra-as determine entries for eternal destinations - other Inter-AS tasks sppose roter in AS receies datagram destined otside of AS: roter shold forard packet to gatea roter, bt hich one? netorks c a b AS c a AS d AS mst:. learn hich dests are reachable throgh AS, hich throgh AS. propagate this reachabilit info to all roters in AS job of inter-as roting! b c a b AS other netorks - Intra-AS Roting also knon as interior gatea protocols (IGP) most common intra-as roting protocols: RIP: Roting Information Protocol OSPF: Open Shortest Path First (IS-IS protocol essentiall same as OSPF) IGRP: Interior Gatea Roting Protocol (Cisco proprietar for decades, ntil 06) OSPF (Open Shortest Path First) open : pblicl aailable ses link-state algorithm link state packet dissemination topolog map at each node rote comptation sing Dijkstra s algorithm roter floods OSPF link-state adertisements to all other roters in entire AS carried in OSPF messages directl oer IP (rather than TCP or UDP link state: for each attached link IS-IS roting protocol: nearl identical to OSPF - - OSPF adanced featres Hierarchical OSPF secrit: all OSPF messages athenticated (to preent malicios intrsion) mltiple same-cost pathsalloed (onl one path in RIP) for each link, mltiple cost metrics for different TOS (e.g., satellite link cost set lo for best effort ToS; high for real-time ToS) integrated ni- and mlti-cast spport: Mlticast OSPF (MOSPF) ses same topolog data base as OSPF hierarchical OSPF in large domains. area area border roters backbone area bondar roter internal roters backbone roter area

7 Hierarchical OSPF to-leel hierarch: local area, backbone. link-state adertisements onl in area each nodes has detailed area topolog; onl kno direction (shortest path) to nets in other areas. area border roters: smmarie distances to nets in on area, adertise to other Area Border roters. backbone roters: rn OSPF roting limited to backbone. bondar roters: connect to other AS es. Chapter : smmar e e learned a lot! approaches to netork control per-roter control (traditional) logicall centralied control (softare defined netorking) traditional roting algorithms Dijkstra Algorithm Distance ector algorithm implementation in, BGP net stop: link laer! - -8

Routing Algorithm Classification. A Distance Vector Routing Algorithm

Routing Algorithm Classification. A Distance Vector Routing Algorithm Routing lgorithm lassification Global or decentralied information? Global: ll routers have complete topolog, link cost info Link state algorithms Decentralied: Router knows phsicallconnected neighbors,

More information

Lecture 18: Network Layer Link State and Distance Vector Routing

Lecture 18: Network Layer Link State and Distance Vector Routing Lecture 8: Network Laer Link State and Distance Vector Routing COMP 33, Spring 08 Victoria Manfredi Acknowledgements: materials adapted Computer Networking: A Top Down Approach 7 th edition: 996-06, J.F

More information

CS 457 Lecture 16 Routing Continued. Spring 2010

CS 457 Lecture 16 Routing Continued. Spring 2010 CS 457 Lecture 16 Routing Continued Spring 2010 Scaling Link-State Routing Overhead of link-state routing Flooding link-state packets throughout the network Running Dijkstra s shortest-path algorithm Introducing

More information

On Locality of Dominating Set in Ad Hoc Networks with Switch-On/Off Operations

On Locality of Dominating Set in Ad Hoc Networks with Switch-On/Off Operations On Locality of Dominating Set in Ad Hoc Netorks ith Sitch-On/Off Operations Jie W and Fei Dai Department of Compter Science and Engineering Florida Atlantic Uniersity Boca Raton, FL 3343 Abstract Roting

More information

Computer Networks II

Computer Networks II ipartimento di Informatica e Sistemistica omputer Networks II Routing protocols Overview Luca Becchetti Luca.Becchetti@dis.uniroma.it.. 2009/200 Goals escribe approaches and give overview of mechanisms

More information

OSPF Domain / OSPF Area. OSPF Advanced Topics. OSPF Domain / OSPF Area. Agenda

OSPF Domain / OSPF Area. OSPF Advanced Topics. OSPF Domain / OSPF Area. Agenda OSPF Domain / OSPF Area OSPF Advanced Topics Areas,, Backbone, Summary-LSA, ASBR, Stub Area, Route Summarization, Virtual Links, Header Details OSPF domain can be divided in multiple OSPF areas to improve

More information

Link-state protocols and Open Shortest Path First (OSPF)

Link-state protocols and Open Shortest Path First (OSPF) Fixed Internetworking Protocols and Networks Link-state protocols and Open Shortest Path First (OSPF) Rune Hylsberg Jacobsen Aarhus School of Engineering rhj@iha.dk 0 ITIFN Objectives Describe the basic

More information

OSPF Fundamentals. Agenda. OSPF Principles. L41 - OSPF Fundamentals. Open Shortest Path First Routing Protocol Internet s Second IGP

OSPF Fundamentals. Agenda. OSPF Principles. L41 - OSPF Fundamentals. Open Shortest Path First Routing Protocol Internet s Second IGP OSPF Fundamentals Open Shortest Path First Routing Protocol Internet s Second IGP Agenda OSPF Principles Introduction The Dijkstra Algorithm Communication Procedures LSA Broadcast Handling Splitted Area

More information

OSPF - Open Shortest Path First. OSPF Fundamentals. Agenda. OSPF Topology Database

OSPF - Open Shortest Path First. OSPF Fundamentals. Agenda. OSPF Topology Database OSPF - Open Shortest Path First OSPF Fundamentals Open Shortest Path First Routing Protocol Internet s Second IGP distance vector protocols like RIP have several dramatic disadvantages: slow adaptation

More information

Topology Control and Mobility Management in Mobile Ad Hoc Networks

Topology Control and Mobility Management in Mobile Ad Hoc Networks Topology Control and Mobility Management in Mobile Ad Hoc Netorks Fei Dai and JIe W Department of Electrical and Compter Engineering North Dakota State Uniersity Department of Compter Science and Engineering

More information

Link State Routing. Stefano Vissicchio UCL Computer Science CS 3035/GZ01

Link State Routing. Stefano Vissicchio UCL Computer Science CS 3035/GZ01 Link State Routing Stefano Vissicchio UCL Computer Science CS 335/GZ Reminder: Intra-domain Routing Problem Shortest paths problem: What path between two vertices offers minimal sum of edge weights? Classic

More information

ROUTING PROTOCOLS. Dr. Ahmed Khattab. EECE Department Cairo University Fall 2012 ELC 659/ELC724

ROUTING PROTOCOLS. Dr. Ahmed Khattab. EECE Department Cairo University Fall 2012 ELC 659/ELC724 ROUTING PROTOCOLS Dr. Ahmed Khattab EECE Department Cairo University Fall 2012 ELC 659/ELC724 Dr. Ahmed Khattab Fall 2012 2 Routing Network-wide process the determine the end to end paths that packets

More information

Network Layer (Routing)

Network Layer (Routing) Network Layer (Routing) Where we are in the ourse Moving on up to the Network Layer! Application Transport Network Link Physical SE 61 University of Washington Topics Network service models Datagrams (packets),

More information

CSE/EE 461. Link State Routing. Last Time. This Lecture. Routing Algorithms Introduction Distance Vector routing (RIP)

CSE/EE 461. Link State Routing. Last Time. This Lecture. Routing Algorithms Introduction Distance Vector routing (RIP) CSE/EE 46 Link State Routing Last Time Routing Algorithms Introduction Distance Vector routing (RIP) Application Presentation Session Transport Network Data Link Physical This Lecture Routing Algorithms

More information

Question No: 2 In an OSPF Hello packet, which of the following fields must match for all neighbor routers on the segment? Choose three answers.

Question No: 2 In an OSPF Hello packet, which of the following fields must match for all neighbor routers on the segment? Choose three answers. Volume: 335 Questions Question No: 1 What is the default preference value for a static route in the Alcatel-Lucent 7750 SR? A. 0 B. 5 C. 10 D. 15 Answer: B Question No: 2 In an OSPF Hello packet, which

More information

AAS/AIAA Astrodynamics Specialists Conference

AAS/AIAA Astrodynamics Specialists Conference Paper AAS 5-34 COVARIANCE ANALYSIS FOR DEEP- SPACE SATELLITES WITH RADAR AND OPTICAL TRACKING DATA James G. Miller The MITRE Corporation AAS/AIAA Astrodynamics Specialists Conference Lake Tahoe, CA, Agst

More information

Link State Routing. Brad Karp UCL Computer Science. CS 3035/GZ01 3 rd December 2013

Link State Routing. Brad Karp UCL Computer Science. CS 3035/GZ01 3 rd December 2013 Link State Routing Brad Karp UCL Computer Science CS 33/GZ 3 rd December 3 Outline Link State Approach to Routing Finding Links: Hello Protocol Building a Map: Flooding Protocol Healing after Partitions:

More information

Distance-Vector Routing

Distance-Vector Routing Distance-Vector Routing Antonio Carzaniga Faculty of Informatics University of Lugano June 8, 2007 c 2005 2007 Antonio Carzaniga 1 Recap on link-state routing Distance-vector routing Bellman-Ford equation

More information

Review Paper Geometric Configuration Optimization for Baseline Interferometry

Review Paper Geometric Configuration Optimization for Baseline Interferometry Research Jornal of Recent Sciences ISSN 2277-252 Vol. 2(5), 78-82, May (213) Res.J.Recent Sci. Reiew Paper Geometric Configration Optimization for Baseline Interferometry Abstract Aidin Gharahdaghi Amirkabir

More information

Efficient Backbone Construction Methods in MANETs Using Directional Antennas

Efficient Backbone Construction Methods in MANETs Using Directional Antennas Efficient Backbone Constrction Methods in MANETs Using Directional Antennas Shhi Yang, Jie W Department of Compter Science and Engineering Florida Atlantic Uniersity Boca Raton, FL 33431 Fei Dai Microsoft

More information

Link State Routing. In particular OSPF. dr. C. P. J. Koymans. Informatics Institute University of Amsterdam. March 4, 2008

Link State Routing. In particular OSPF. dr. C. P. J. Koymans. Informatics Institute University of Amsterdam. March 4, 2008 Link State Routing In particular OSPF dr. C. P. J. Koymans Informatics Institute University of Amsterdam March 4, 2008 dr. C. P. J. Koymans (UvA) Link State Routing March 4, 2008 1 / 70 1 Link State Protocols

More information

Table of Contents. OSPF Configuration 1

Table of Contents. OSPF Configuration 1 Table of Contents OSPF Configuration 1 Introduction to OSPF 1 Basic Concepts 2 Area Based OSPF Network Partition 3 Router Types 7 Classification of OSPF Networks 9 DR and BDR 9 OSPF Packet Formats 11 Supported

More information

Introduction to OSPF. ISP Workshops. Last updated 11 November 2013

Introduction to OSPF. ISP Workshops. Last updated 11 November 2013 Introduction to OSPF ISP Workshops Last updated 11 November 2013 1 OSPF p Open Shortest Path First p Open: n Meaning an Open Standard n Developed by IETF (OSPF Working Group) for IP RFC1247 n Current standard

More information

Link State Routing. In particular OSPF. Karst Koymans. Informatics Institute University of Amsterdam. (version 16.3, 2017/03/09 11:25:31)

Link State Routing. In particular OSPF. Karst Koymans. Informatics Institute University of Amsterdam. (version 16.3, 2017/03/09 11:25:31) Link State Routing In particular OSPF Karst Koymans Informatics Institute University of Amsterdam (version 16.3, 2017/03/09 11:25:31) Tuesday, March 7, 2017 Karst Koymans (UvA) Link State Routing Tuesday,

More information

Full Line of Sealing & Flow Control Technologies

Full Line of Sealing & Flow Control Technologies CHAPTER CONTENTS 90 Test Pressre 107 110 KOENIG CHECK VALVE 91 Base Materials / 111 112 KOENIG RESTRICTOR Installation Reqirements 113 92 93 Pressre Performance Hardenable Carbon and Lo Allo Steel 94 95

More information

Link State Routing. Link state routing principles Dijkstra s shortest-path-first algorithm The OSPF protocol. (Chapter 6 in Huitema) E7310/Comnet 1

Link State Routing. Link state routing principles Dijkstra s shortest-path-first algorithm The OSPF protocol. (Chapter 6 in Huitema) E7310/Comnet 1 Link State Routing Link state routing principles Dijkstra s shortest-path-first algorithm The OSPF protocol (Chapter 6 in Huitema) 7310/Comnet 1 Link State Routing Principles 7310/Comnet 2 Link state routing

More information

Configuring OSPF. Information About OSPF CHAPTER

Configuring OSPF. Information About OSPF CHAPTER CHAPTER 22 This chapter describes how to configure the ASASM to route data, perform authentication, and redistribute routing information using the Open Shortest Path First (OSPF) routing protocol. The

More information

Switching the Shannon Switching Game

Switching the Shannon Switching Game Switching the Shannon Switching Game A Senior Project sbmitted to The Diision of Science, Mathematics, and Compting of Bard College by Kimberly Wood Annandale-on-Hdson, New York May, 2012 Abstract The

More information

Configuring the maximum number of external LSAs in LSDB 27 Configuring OSPF exit overflow interval 28 Enabling compatibility with RFC Logging

Configuring the maximum number of external LSAs in LSDB 27 Configuring OSPF exit overflow interval 28 Enabling compatibility with RFC Logging Contents Configuring OSPF 1 Overview 1 OSPF packets 1 LSA types 1 OSPF areas 2 Router types 4 Route types 5 Route calculation 6 OSPF network types 6 DR and BDR 6 Protocols and standards 8 OSPF configuration

More information

Link State Routing. In particular OSPF. Karst Koymans. Informatics Institute University of Amsterdam. (version 17.4, 2017/11/30 12:33:57)

Link State Routing. In particular OSPF. Karst Koymans. Informatics Institute University of Amsterdam. (version 17.4, 2017/11/30 12:33:57) Link State Routing In particular OSPF Karst Koymans Informatics Institute University of Amsterdam (version 17.4, 2017/11/30 12:33:57) Tuesday, November 28, 2017 Karst Koymans (UvA) Link State Routing Tuesday,

More information

Neuro-predictive control based self-tuning of PID controllers

Neuro-predictive control based self-tuning of PID controllers Nero-predictive control based self-tning of PID controllers Corneli Lazar, Sorin Carari, Dragna Vrabie, Maris Kloetzer Gh. Asachi Technical Universit of Iasi, Department of Atomatic Control Blvd. D. Mangeron

More information

M U LT I C A S T C O M M U N I C AT I O N S. Tarik Cicic

M U LT I C A S T C O M M U N I C AT I O N S. Tarik Cicic M U LT I C A S T C O M M U N I C AT I O N S Tarik Cicic 9..08 O V E R V I E W One-to-many communication, why and how Algorithmic approach: Steiner trees Practical algorithms Multicast tree types Basic

More information

Configuring OSPF. The Cisco OSPF Implementation

Configuring OSPF. The Cisco OSPF Implementation Configuring OSPF This chapter describes how to configure Open Shortest Path First (OSPF). For a complete description of the OSPF commands in this chapter, refer to the OSPF s chapter of the Cisco IOS IP

More information

OPTI-502 Optical Design and Instrumentation I John E. Greivenkamp Homework Set 11 Fall, 2017

OPTI-502 Optical Design and Instrumentation I John E. Greivenkamp Homework Set 11 Fall, 2017 Assigned: 11/8/17 Lectre 23 De: 11/15/17 Lectre 25 11-1) A teleconverter is an optical component that is placed between or camera lens and camera to increase the focal length of the lens. Common varieties

More information

A Performance Comparison of Multi-Hop Wireless Ad Hoc Network Routing Protocols

A Performance Comparison of Multi-Hop Wireless Ad Hoc Network Routing Protocols A Performance Comparison of Multi-Hop Wireless Ad Hoc Network Routing Protocols Josh Broch, David Maltz, David Johnson, Yih-Chun Hu and Jorjeta Jetcheva Computer Science Department Carnegie Mellon University

More information

Chapter 5 Design of a Digital Sliding Mode Controller

Chapter 5 Design of a Digital Sliding Mode Controller Chapter 5 Design of a Digital Sliding Mode Controller In chapter 4 the linear controllers PID and RST are developed to reglate the Bck converter pt voltage. Frthermore based on the PID and RST control

More information

Foundations of Distributed Systems: Tree Algorithms

Foundations of Distributed Systems: Tree Algorithms Foundations of Distributed Systems: Tree Algorithms Stefan Schmid @ T-Labs, 2011 Broadcast Why trees? E.g., efficient broadcast, aggregation, routing,... Important trees? E.g., breadth-first trees, minimal

More information

Guide to OSPF Application on the CSS 11000

Guide to OSPF Application on the CSS 11000 Guide to OSPF Application on the CSS 11000 Document ID: 12638 Contents Introduction Before You Begin Conventions Prerequisites Components Used Description OSPF Configuration Task List Configuration Global

More information

Junos Intermediate Routing

Junos Intermediate Routing Junos Intermediate Routing Chapter 4: Open Shortest Path First 2012 Juniper Networks, Inc. All rights reserved. www.juniper.net Worldwide Education Services Chapter Objectives After successfully completing

More information

Goal of the Game. The players must amass the most victory points by constructing buildings. Game Contents

Goal of the Game. The players must amass the most victory points by constructing buildings. Game Contents The players mst amass the most ictory points by constrcting bildings. 37 rectanglar cards (inclding 18 Workers, 6 Prisoners, 4 Tools, 4 Loans, 4 Uniersities, and 1 First player) Example of Worker card:

More information

Image and Multidimensional Signal Processing

Image and Multidimensional Signal Processing Image and Mltidimensional Signal Processing Professor William off Dept of Electrical Engineering &Compter Science Image and Mltidimensional Signal Processing http://inside.mines.ed/~whoff/ Deconoltion

More information

OSPF for IPv6. ISP Workshops

OSPF for IPv6. ISP Workshops OSPF for IPv6 ISP Workshops These materials are licensed under the Creative Commons Attribution-NonCommercial 4.0 International license (http://creativecommons.org/licenses/by-nc/4.0/) Last updated 17

More information

Interlayer routing issues for wireless networks

Interlayer routing issues for wireless networks NRL Cross-Layer Workshop Interlayer routing issues for wireless networks June 2, 2004 Tom Henderson Marcelo Albuquerque Phil Spagnolo Jae H. Kim Boeing Phantom Works 1 Report Documentation Page Form Approved

More information

Energy-Efficient MANET Routing: Ideal vs. Realistic Performance

Energy-Efficient MANET Routing: Ideal vs. Realistic Performance Energy-Efficient MANET Routing: Ideal vs. Realistic Performance Paper by: Thomas Knuz IEEE IWCMC Conference Aug. 2008 Presented by: Farzana Yasmeen For : CSE 6590 2013.11.12 Contents Introduction Review:

More information

NSF LC Workshop Comments

NSF LC Workshop Comments NSF LC Workshop Comments John Wroclawski USC/ISI The DETER Testbed Facility is: An experimental research platform... that spports the design, constrction, exection and stdy of complex networked cyber-

More information

Scalable Routing Protocols for Mobile Ad Hoc Networks

Scalable Routing Protocols for Mobile Ad Hoc Networks Helsinki University of Technology T-79.300 Postgraduate Course in Theoretical Computer Science Scalable Routing Protocols for Mobile Ad Hoc Networks Hafeth Hourani hafeth.hourani@nokia.com Contents Overview

More information

KillTest *KIJGT 3WCNKV[ $GVVGT 5GTXKEG Q&A NZZV ]]] QORRZKYZ IUS =K ULLKX LXKK [VJGZK YKX\OIK LUX UTK _KGX

KillTest *KIJGT 3WCNKV[ $GVVGT 5GTXKEG Q&A NZZV ]]] QORRZKYZ IUS =K ULLKX LXKK [VJGZK YKX\OIK LUX UTK _KGX KillTest Q&A Exam : JN0-643 Title : Enterprise Routing and Switching, Professional (JNCIP-ENT) Version : Demo 1 / 10 1.Which connection method do OSPF routers use to communicate with each other? A. IP

More information

TEN TOWERS OF TEN. Getting Ready. The Activity. Overview. Introducing

TEN TOWERS OF TEN. Getting Ready. The Activity. Overview. Introducing TEN TOWERS OF TEN NUMER PROAILIT/STATISTICS Addition Chance Eqations Getting Ready What o ll Need Snap Cbes, 60 of each of 2 colors per pair Die, 1 per pair Ten Towers of Ten game board, 1 per pair, page

More information

Uploading Images & Supporting Text Guidelines for applications to: BSc Immersive Systems Design

Uploading Images & Supporting Text Guidelines for applications to: BSc Immersive Systems Design Uploading Images & Spporting Text Gidelines for applications to: BSc Immersive Systems Design How is my application assessed? Stage 1: Admissions staff from the programme yo have applied to will view the

More information

External control electronics for the SYDFE1 control of A10VSO axial piston pumps Analogue amplifier, configurable

External control electronics for the SYDFE1 control of A10VSO axial piston pumps Analogue amplifier, configurable External control electronics for the SYDFE control of A0VSO axial piston pmps Analoge amplifier, configrable RE 04/0.0 Replaces: 08.06 /8 Type VT 504 From Component series 5 H685_d Table of contents Contents

More information

A Novel Control Method for Direct Interface Converters used for DC and AC Power Supplies

A Novel Control Method for Direct Interface Converters used for DC and AC Power Supplies A Noel Control Method for Direct Interface Conerters sed for DC and AC Power Spplies Koji Kato, Jn-ichi Itoh Nagaoka Uniersity of Technology 163-1 Kamitomioka-cho Nagaoka city Niigata, Japan Tel./FAX:

More information

IP Routing: OSPF Configuration Guide, Cisco IOS XE Release 2

IP Routing: OSPF Configuration Guide, Cisco IOS XE Release 2 IP Routing: OSPF Configuration Guide, Cisco IOS XE Release 2 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS

More information

2IV10 Exercise 4: Basic Geometry

2IV10 Exercise 4: Basic Geometry IV10 Exercise 4: Basic Geometry 1. Gien two scceeding line segments with ertices, Q and R. R R r Q Q a. Assme that a procedre DrawLine(A, B: Tpoint) is aailable to draw a line segment from A to B. Gie

More information

Intended Learning Outcomes (ILO s):

Intended Learning Outcomes (ILO s): Grade 3-5 Alignment to Utah Core Crriclm Learning Otcome Skills Yo ll Use Inference Observation Recording Wondering Intended Learning Otcomes (ILO s): There are many ways to record and organize 1. Use

More information

C Commands. Send comments to

C Commands. Send comments to This chapter describes the Cisco NX-OS Open Shortest Path First (OSPF) commands that begin with C. UCR-583 clear ip ospf neighbor clear ip ospf neighbor To clear neighbor statistics and reset adjacencies

More information

IP Routing: OSPF Configuration Guide, Cisco IOS Release 12.2SX

IP Routing: OSPF Configuration Guide, Cisco IOS Release 12.2SX IP Routing: OSPF Configuration Guide, Cisco IOS Release 12.2SX Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS

More information

IP Routing: OSPF Configuration Guide, Cisco IOS XE Release 3SE (Catalyst 3650 Switches)

IP Routing: OSPF Configuration Guide, Cisco IOS XE Release 3SE (Catalyst 3650 Switches) IP Routing: OSPF Configuration Guide, Cisco IOS XE Release 3SE (Catalyst 3650 Switches) First Published: dd, yyyy Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706

More information

Introduction to Local and Wide Area Networks

Introduction to Local and Wide Area Networks Introduction to Local and Wide Area Networks Lecturers Amnach Khawne Jirasak Sittigorn Chapter 1 1 Routing Protocols and Concepts Chapter 10 : Link-State Routing Protocols Chapter 11 : OSPF Chapter 1 2

More information

Analogue amplifier modules for 4/3 and 4/2 proportional directional valves 4WRE

Analogue amplifier modules for 4/3 and 4/2 proportional directional valves 4WRE Analoge amplifier modles for 4/3 and 4/ proportional directional valves 4WRE RE 309/06.05 Replaces:.04 /0 Types VT-MRPA and VT-MRPA Component series X H677 Table of contents Contents Page Featres Ordering

More information

XIV International PhD Workshop OWD 2012, October Lumped Parameter Model of a Resistance Spot Welding DC-DC converter

XIV International PhD Workshop OWD 2012, October Lumped Parameter Model of a Resistance Spot Welding DC-DC converter XIV International PhD Workshop OWD, 3 October Lmped Parameter Model of a Resistance Spot Welding DC-DC converter Martin Petrn, University of Maribor (prof. dr. Drago Dolinar, University of Maribor) Abstract

More information

Wireless Mesh Networks

Wireless Mesh Networks Wireless Mesh Networks Renato Lo Cigno www.disi.unitn.it/locigno/teaching Part of this material (including some pictures) features and are freely reproduced from: Ian F.Akyildiz, Xudong Wang,Weilin Wang,

More information

Rapid Calculation Method Study and Realization for Wind Load of Ship-Borne Satellite Antenna

Rapid Calculation Method Study and Realization for Wind Load of Ship-Borne Satellite Antenna 206 International Congress on Comptation Algorithms in Engineering (ICCAE 206) ISBN: 978--60595-386- Rapid Calclation Method Std and Realization for Wind Load of Ship-Borne Satellite Antenna Jinping Kong*,

More information

Antenna Orientation Optimization for Minimum-Energy Multicast Tree Construction in Wireless Ad Hoc Networks with Directional Antennas

Antenna Orientation Optimization for Minimum-Energy Multicast Tree Construction in Wireless Ad Hoc Networks with Directional Antennas Antenna Orientation Optimization for Minimm-Energy Mlticast Tree Constrction in Wireless Ad Hoc Networks with Directional Antennas Song Go and Olier Yang School of Information Technology and Engineering

More information

Grundlagen der Rechnernetze. Introduction

Grundlagen der Rechnernetze. Introduction Grundlagen der Rechnernetze Introduction Overview Building blocks and terms Basics of communication Addressing Protocols and Layers Performance Historical development Grundlagen der Rechnernetze Introduction

More information

olsr.org 'Optimized Link State Routing' and beyond December 28th, 2005 Elektra

olsr.org 'Optimized Link State Routing' and beyond December 28th, 2005 Elektra olsr.org 'Optimized Link State Routing' and beyond December 28th, 2005 Elektra www.scii.nl/~elektra Introduction Olsr.org is aiming to an efficient opensource routing solution for wireless networks Work

More information

OSPF Sham-Link MIB Support

OSPF Sham-Link MIB Support This feature introduces MIB support for the OSPF Sham-Link feature through the addition of new tables and trap MIB objects to the Cisco OSPF MIB (CISCO-OSPF-MIB) and the Cisco OSPF Trap MIB (CISCO-OSPF-TRAP-MIB).

More information

Lecture 8 Link-State Routing

Lecture 8 Link-State Routing 6998-02: Internet Routing Lecture 8 Link-State Routing John Ioannidis AT&T Labs Research ji+ir@cs.columbia.edu Copyright 2002 by John Ioannidis. All Rights Reserved. Announcements Lectures 1-5, 7-8 are

More information

Cisco IOS IP Routing: OSPF Command Reference

Cisco IOS IP Routing: OSPF Command Reference Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 THE SPECIFICATIONS AND INFORMATION

More information

CHAPTER 1 INRODUCTION. Navigation is the process of directing a moving vehicle or a person

CHAPTER 1 INRODUCTION. Navigation is the process of directing a moving vehicle or a person CHAPTER INRODUCTION. INTRODUCTION Navigation is the process of directing a moving vehicle or a person from one known place to the other known place. The modern navigational aids ses the Electromagnetic

More information

ENHANCING UTILITY AND PRIVACY WITH NOISY MINIMAX FILTERS. Jihun Hamm

ENHANCING UTILITY AND PRIVACY WITH NOISY MINIMAX FILTERS. Jihun Hamm ENHANCING UTILITY AND PRIVACY WITH NOISY MINIMAX FILTERS Jihn Hamm The Ohio State Uniersity Department of Compter Science and Engineering Colmbs, OH 43210, USA ABSTRACT Presering priacy of continos and/or

More information

IEOR 130 Methods of Manufacturing Improvement Fall, 2016, Prof. Leachman Solutions to Homework Assignment 10.

IEOR 130 Methods of Manufacturing Improvement Fall, 2016, Prof. Leachman Solutions to Homework Assignment 10. IEOR 130 Methods of Manfactring Improvement Fall, 016, Prof. Leachman Soltions to Homework Assignment 10. 1. Consider a fab prodcing a NAND flash device. Prodction volme is 50,000 wafer starts per week.

More information

IP Routing: OSPF Configuration Guide, Cisco IOS Release 12.4

IP Routing: OSPF Configuration Guide, Cisco IOS Release 12.4 IP Routing: OSPF Configuration Guide, Cisco IOS Release 12.4 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS

More information

Optimisation for the Telecommunication Industry using Quantum Annealing

Optimisation for the Telecommunication Industry using Quantum Annealing Optimisation for the Telecommnication Indstry sing Qantm Annealing Catherine White, Tdor Popa BT Applied Research Plantagenet SYSTEMS BT Adastral Park http://atadastral.co.k/abot/bt-labs/ HARD PROBLEMS

More information

Robust Control with Classical Methods QFT

Robust Control with Classical Methods QFT Robst Control with Classical Methods QFT Per-Olof Gtman Review of the classical Bode-Nichols control problem QFT in the basic Single Inpt Single Otpt (SISO) case Fndamental Design Limitations Identification

More information

3. (12 %) Find an equation of the tangent plane at the point (2,2,1) to the surface. u = t. Find z t. v = se t.

3. (12 %) Find an equation of the tangent plane at the point (2,2,1) to the surface. u = t. Find z t. v = se t. EXAM - Math 17 NAME: I.D.: Instrction: Circle yor answers and show all yor work clearly. Messing arond may reslt in losing credits, since the grader may be forced to pick the worst to grade. Soltions with

More information

Aalborg Universitet. Published in: IET Power Electronics. DOI (link to publication from Publisher): /iet-pel Publication date: 2015

Aalborg Universitet. Published in: IET Power Electronics. DOI (link to publication from Publisher): /iet-pel Publication date: 2015 Aalborg Uniersitet Analysis and Modeling of Circlating Crrent in Two Parallel-Connected Inerters Maheshwari, Ram Krishan; Gohil, Ghanshyamsinh Vijaysinh; Bede, Lorand; Mnk-Nielsen, Stig Pblished in: IET

More information

FRT 041 System Identification Laboratory Exercise 3

FRT 041 System Identification Laboratory Exercise 3 FRT 041 System Identification Laboratory Exercise 3 Ulf Holmberg Revised: Kjell Gstafsson Karl Henrik Johansson Anders Wallén Johan Nilsson Rolf Johansson Johan Bengtsson Maria Henningsson Department of

More information

Semiring Pruning for Information Dissemination in Mobile Ad Hoc Networks

Semiring Pruning for Information Dissemination in Mobile Ad Hoc Networks The InsTITuTe for systems research Isr TechnIcal report 2009-8 Semiring Pruning for Information Dissemination in Mobile Ad Hoc Networks Kiran K. Somasundaram, John S. Baras Isr develops, applies and teaches

More information

Sensors Fault Detection and Diagnosis Based On Morphology-wavelet Algorithm

Sensors Fault Detection and Diagnosis Based On Morphology-wavelet Algorithm Sensors Falt Detection and Diagnosis Based On Morpholog-wavelet Algorithm GoLian Ho Department of Atomation North China Electric Power Universit Beijing,China e-mail:hgl@ncep.ed.cn Yi Zhang Department

More information

Semiring Pruning for Information Dissemination in Mobile Ad Hoc Networks

Semiring Pruning for Information Dissemination in Mobile Ad Hoc Networks 2009 First International Conference on Networks & Communications Semiring Pruning for Information Dissemination in Mobile Ad Hoc Networks Kiran K. Somasundaram, John S. Baras Institute of Systems Research

More information

Energy Saving Routing Strategies in IP Networks

Energy Saving Routing Strategies in IP Networks Energy Saving Routing Strategies in IP Networks M. Polverini; M. Listanti DIET Department - University of Roma Sapienza, Via Eudossiana 8, 84 Roma, Italy 2 june 24 [scale=.8]figure/logo.eps M. Polverini

More information

A HYBRID GENETIC ALGORITHM FOR THE WEIGHT SETTING PROBLEM IN OSPF/IS-IS ROUTING

A HYBRID GENETIC ALGORITHM FOR THE WEIGHT SETTING PROBLEM IN OSPF/IS-IS ROUTING A HYBRID GENETIC ALGORITHM FOR THE WEIGHT SETTING PROBLEM IN OSPF/IS-IS ROUTING L.S. BURIOL, M.G.C. RESENDE, C.C. RIBEIRO, AND M. THORUP Abstract. Intra-domain traffic engineering aims to make more efficient

More information

Document Version Publisher s PDF, also known as Version of Record (includes final page, issue and volume numbers)

Document Version Publisher s PDF, also known as Version of Record (includes final page, issue and volume numbers) Three-port bi-directional converter for electric vehicles: focs on high-freqency coaxial transformer Waltrich, G.; Darte, J.L.; Hendrix, M.A.M.; Palides, J.J.H. Pblished in: Proceedings of the 5th EVER

More information

Lecture - 10 Image Enhancement in the Frequency Domain

Lecture - 10 Image Enhancement in the Frequency Domain Lectre - Image Enhancement in the Freqenc Domain Cosimo Distante Backgrond An fnction that periodicall repeats itself can be epressed as the sm of sines and/or cosines of different freqencies each mltiplied

More information

Energy Measuring Unit MODEL EMU4-FD1-MB. User s Manual (Details)

Energy Measuring Unit MODEL EMU4-FD1-MB. User s Manual (Details) Energy Measring nit MODE EM4-FD-MB ser s Manal (Details) Before operating the instrment, yo shold first read thoroghly this operation manal for safe operation and optimized performance of the prodct. Delier

More information

Adaptive Generation Method of OFDM Signals in SLM Schemes for Low-complexity

Adaptive Generation Method of OFDM Signals in SLM Schemes for Low-complexity Adaptive Generation Method of OFDM Signals in SLM Schemes for Low-compleity Kee-Hoon Kim, Hyn-Seng Joo, Jong-Seon No, and Dong-Joon Shin 1 ariv:128.6412v1 [cs.it] 31 Ag 212 Abstract There are many selected

More information

II IMAGE ENHANCEMENT PART A. 1. Give the PDF of uniform noise and sketch it.(april/may 2015)(Nov./Dec.2013)

II IMAGE ENHANCEMENT PART A. 1. Give the PDF of uniform noise and sketch it.(april/may 2015)(Nov./Dec.2013) UNIT II IMAGE ENANCEMENT PART A 1. Gie the PD of niform noise and sketch it.april/may 015No./Dec.013 The probability density fnction of the continos niform distribtion is:. Define and gie the transfer

More information

PowPak 20 A Relay Module

PowPak 20 A Relay Module PowPak 20 A Relay Modle The PowPak 20 A Relay Modle is a radio-freqency (RF), receptacle switching soltion that is capable of controlling 20 A receptacles based on inpt from Pico wireless controls and

More information

LAB15: OSPF IPv6. OSPF: Not So Stubby Area. Disclaimer

LAB15: OSPF IPv6. OSPF: Not So Stubby Area. Disclaimer Page1 LAB15: OSPF IPv6 Disclaimer This Configuration Guide is designed to assist members to enhance their skills in respective technology area. While every effort has been made to ensure that all material

More information

International Conference on Intelligent Systems Research and Mechatronics Engineering (ISRME 2015)

International Conference on Intelligent Systems Research and Mechatronics Engineering (ISRME 2015) International Conference on Intelligent Systems Research and Mechatronics Engineering (ISRME 2015) An Improved Control Strategy for Fll-controlled Single-phase H Bridge Rectifier Qi Sheng-long 1, a, X

More information

ITE PC v4.0. Chapter Cisco Systems, Inc. All rights reserved. Cisco Public

ITE PC v4.0. Chapter Cisco Systems, Inc. All rights reserved. Cisco Public OSPF Routing Protocols and Concepts Chapter 11 1 Objectives Describe the background and basic features of OSPF Identify and apply the basic OSPF configuration commands Describe, modify and calculate l

More information

A Novel Concept for Mains Voltage Proportional Input Current Shaping of a VIENNA Rectifier Eliminating Controller Multipliers

A Novel Concept for Mains Voltage Proportional Input Current Shaping of a VIENNA Rectifier Eliminating Controller Multipliers 1 of 10 A Novel Concept for Mains Voltage Proportional Inpt Crrent Shaping of a VIENNA Rectifier Eliminating Controller Mltipliers Part I: Basic Theoretical Considerations and Experimental Verification

More information

Advanced Modeling and Simulation of Mobile Ad-Hoc Networks

Advanced Modeling and Simulation of Mobile Ad-Hoc Networks Advanced Modeling and Simulation of Mobile Ad-Hoc Networks Prepared For: UMIACS/LTS Seminar March 3, 2004 Telcordia Contact: Stephanie Demers Robert A. Ziegler ziegler@research.telcordia.com 732.758.5494

More information

OPTI-202R Final Exam Name Spring 2008

OPTI-202R Final Exam Name Spring 2008 OPTI-202R Final Exam Name Spring 2008 Note: Closed book; closed notes. Eqation sheets are inclded. A spare ratrace sheet is also attached. Assme thin lenses in air if not specified. If a method of soltion

More information

AUTOMATIC SYNTHESIS USING GENETIC PROGRAMMING OF IMPROVED PID TUNING RULES

AUTOMATIC SYNTHESIS USING GENETIC PROGRAMMING OF IMPROVED PID TUNING RULES AUTOMATIC SYNTHESIS USING GENETIC PROGRAMMING OF IMPROVED PID TUNING RULES Matthew J. Streeter 1, Martin A. Keane, and John R. Koza 3 1 Genetic Programming, Inc. Econometrics, Inc. 3 Stanford University

More information

External control electronics for the SYDEF1 adjustment of the A10VSO axial piston pump

External control electronics for the SYDEF1 adjustment of the A10VSO axial piston pump External control electronics for the SYDEF adjstment of the A0VSO axial piston pmp RE 04/0.0 Replaces: 04 /0 Type VT 504-X/... Component series X H09_d Table of contents Content Page Featres Ordering code

More information

An Energy-Efficient Relaying Scheme for Internet of Things Communications

An Energy-Efficient Relaying Scheme for Internet of Things Communications An Energy-Efficient Relaying Scheme for Internet of Things Commnications Ahmad Alsharoa, Xiaoyn Zhang, Daji Qiao, and Ahmed Kamal Electrical and Compter Engineering Iowa State University, Ames, Iowa Email:

More information

Rev a. Single-Area OSPF. c cnac o okbook.com

Rev a. Single-Area OSPF. c cnac o okbook.com Rev. 00.00 a. Single-Area OSPF c cnac o okbook.com C O N F I G U R A T I O N Technically, we're using OSPFv for IPv, but that only matters because IPv uses OSPFv. Wildcard a bitmask controlling address

More information

OSPF Inbound Filtering Using Route Maps with

OSPF Inbound Filtering Using Route Maps with OSPF Inbound Filtering Using Route Maps with a Distribute List Finding Feature Information OSPF Inbound Filtering Using Route Maps with a Distribute List Last Updated: July 19, 2011 The OSPF Inbound Filtering

More information

W-CDMA for UMTS Principles

W-CDMA for UMTS Principles W-CDMA for UMTS Principles Introdction CDMA Backgrond/ History Code Division Mltiple Access (CDMA) Why CDMA? CDMA Principles / Spreading Codes Mlti-path Radio Channel and Rake Receiver Problems to Solve

More information