DD2490 p Link state routing and OSPF. Olof Hagsand KTH/CSC

Size: px
Start display at page:

Download "DD2490 p Link state routing and OSPF. Olof Hagsand KTH/CSC"

Transcription

1 DD490 p4 00 Link state routing and OSPF Olof Hagsand KTH/CSC

2 Literature RFC 3: Section except.. Section 3 (areas), but only last two paragraphs of 3.5

3 Link state routing Each router spreads information about its links to its neighbours. This information is flooded to every router in the routing domain so that every router has knowledge of the entire network topology. Using Dijkstra's algorithm, the shortest path to each prefix in the network is calculated

4 Comparison with Distance vector Link state uses a distributed database model Distance vector uses a distributed processing model Link state pros: More functionality due to distribution of original data, no dependency on intermediate routers Easier to troubleshoot Fast convergence: when the network changes, new routes are computed quickly Less bandwidth consuming Distance vector pros: Less complex easier to implement and administrate Needs less memory

5 Comparison with IS IS Both are link state protocols IS IS has a longer history from Digital via OSI OSPF is newer and developed in IETF Area difference OSPF defines area boundaries between interfaces IS IS defines area boundaries between nodes IS IS areas leads to simpler configuration Protocol dependency IS IS can run many protocols (IPv6, CLNP) OSPF only IPv4, ( OSPFv3 supports IPv6) OSPF is implemented on more platforms and more deployed IS IS often popular among backbone networks

6 Original OSPF requirements A more descriptive routing metric Equal cost multipath Two level routing scheme: areas Separate internal and external routes Multiple best paths: load balance Routing hierarchy Link metric: External routes Security Cryptographic authentication

7 Basic OSPF. The hello protocol Is there anybody out there? Detection of neighboring routers Election of designated routers. The exchange protocol Exchange database between neighbours 3. Reliable flooding When links change/age send: update to neighbours and flood recursively. 4. Shortest path calculation Dijkstra's algorithm Compute shortest path tree to all destinations

8 Dijkstra's shortest path computation From the link state database, compute a shortest path delivery tree using a permanent set S and a tentative set Q: ) Define the root of the tree: the router ) Assign a cost of 0 to this node and make it the first permanent node. 3) Examine each neighbor node of the last permanent node. 4) Assign a cumulative cost to each node and make it tentative. 5) Among the list of tentative nodes: Find the node with the smallest cumulative cost and make it permanent. If a node can be reached from more than one direction, select the direction with the smallest cumulative cost. 6) Repeat steps 3 to 5 until every node is permanent.

9 Dijkstra pseudo code fun ct ion Dijkstra(G, w, s) for e ach vertex v in V[G] // Initializations d[v] := infinity previous[v] := undefined d[s] := 0 S := empty set // S: Permanent set Q := set of all vertices // Q: Tentative set whi le Q is not an empty set // The algorithm itself u := Extract_Min(Q) S := S union {u} for ea ch edge (u,v) outgoing from u if d[v] > d[u] + w(u,v) // Relax (u,v) d[v] := d[u] + w(u,v) previous[v] := u (from Wikipedia)

10 Example network N A B N5 D N4 N N3 3 C 3 N6 E N7 5 N F Metric (may be assymmetric) N9 N0

11 Corresponding link state database N A B N N3 3 N5 D N9 0 N4 C 3 N6 N6 s Designated Router E N7 0 N F N0 5

12 Dijkstra s algorithm computed N A B N5 D N9 Final shortest path delivery tree from A N N3 3 0 N4 C 3 N6 E N7 N F N0 5

13 OSPF Encapsulation OSPF runs directly on IP Needs its own reliable protocol No port numbers Need to run as root raw sockets No checksum The flooding protocol Computes its own checksum or digest Since it runs on IP (IS IS runs on the link level) OSPF messages can be routed tunneled or routed by some other protocol

14 OSPF header Version # Type Packet length Router ID Area ID Checksum AuType Authentication Authentication IP OSPF common header OSPF specific header

15 OSPF common header Version for IPv4 3 for IPv6 Router ID Type First configured interface or highest loopback IP Area ID Backbone: Checksum Hello DD database description Link State Request Link State Update NULL Link State Acknowledge Simple password Cryptographic authentication Standard IP checksum AUtype

16 Cryptographic authentication Key ID Auth Data Len Cryptographic sequence number Authentication field (see figure) Checksum field set to zero Create message digest from complete packet Eg, MD5 Append digest to packet Set key (if many keys are used), seq#, and digest length. IP OSPF common header OSPF specific header Digest

17 OSPF Adjacency How does a router know who its neighbours are? By sending each other Hello packets Multicast to AllSPFRouters ( ) Sent every 0 seconds Hello interval Three failed Hello attempts result in a link failure report. Router dead interval

18 The Hello packet Network Mask HelloInterval Options Rtr Pri RouterDeadInterval Designated Router Backup Designated Router Neighbor IP OSPF common header Hello

19 Adjacency on a broadcast network N squared problem: too many adjacencies if the network is fully meshed: n(n )/ We elect one router to represent the network We elect one router to take over in case of failure Designated router (DR) Backup designated router (BDR) OSPF communication From a router to the DR and BDR The DR sends messages to other neighbours Multicast: AllDRouters ( ) Multicast: AllSPFRouters ( ) Data traffic still forwarded directly!

20 Electing designated router Election algorithm First router always DR Second router always BDR Only in case of failure change DR/BDR Elect DR and BDR from router priority If equal prio => Highest router ID Routerprio is 0 => can never be DR/BDR Why is a BDR necessary? For fast failover if DR fails The BDR runs in parallell with the DR

21 Variants of multi point networks Broadcast networks The link layer is broadcast capable Non Broadcast Multiple Access (NBMA) Any two routers can communicate but no broadcast X.5, ATM, FR Neighbour detection via configuration Point to Multipoint Not all routers can communicate Packet radio, cloud of point to point links No DR/BDR, treated more like many point to point protocols.

22 Database exchange When two routers has established adjacency, the databases need to get synchronized. First: mutually send summary to each other's databases. The Database description packet includes a list of Link state headers Then: Request explicitly database entries Only database headers not actual entries. Link State requests Last: Send database entries Link state updates

23 Link State Advertisements LSAs are the elements of the distributed database A router describes its environment in the form of networks that it is connected to Fundamental task in OSPF: Also called LSPs (Link State packets) Distribute the LSAs to all nodes in a reliable way Then, each node can compute Dijkstra on the same database

24 Reliable flooding Every router spreads its LSAs to all its peers All routers forward the LSAs to its other peers That is, all information about its own links LSAs are acknowledged When a link changes, a new instance of the LSA is distributed Periodic updates every 30 minutes Flood a new instance

25 Reliable flooding example The originator floods an LSA over the network An LSA update of same instance is taken as an implicit ACK

26 Flooding in a transit network From peer to DR and BDR From DR to all others If the BDR does not hear an update from the DR, it assumes the DR has crashed and takes over DR BDR

27 LSA header Every LSA has a common header The rest is different depending on LSA type LSA headers appear in DD, LS update and LS ack LS age Options LS type Link State ID Advertising Router LS sequence number LS checksum length LSA hdr IP OSPF common header LSA LSA body LSA... LSA n

28 The type field. Router LSA Transit, stub, and point to point connections between routers. Network LSA Originated by DR. Contains list of routers connected to shared medium. 3. Network Summary LSA 4. ASBR Summary LSA 5. AS External LSA 6. Group Membership LSA (MOSPF) 7. NSSA external information LSA. External attributes LSA

29 The link state ID field Different for different types: Type Router LSA: Router ID Type Network LSA: IP address of DR...

30 The age field An LSA is valid up to 30 minutes When an LSA reaches 30 minutes, the originating router makes a new instance If not refreshed, the LSA will be deleted after one hour (MaxAge) Premature aging is used to flush LSAs from the database New instance: increment sequence number Age == MaxAge is the same as delete! If deleted by any router that router floods the LSAs with MaxAge To ensure that all deletes the LSA at the same time

31 Sequence number An originating router typically increments the sequence every 30 minutes when age has expired Larger sequence => more recent LSA instance But how do you define larger if sequence number may wrap? circular lollipop linear

32 Sequence numbers Original ARPANET: Circular OSPFv: Lollipop OSPFv: Linear Initial sequence number: 0x Max sequence number: 0x7fffffff When an LSA sequence number reaches Max, the router must delete the LSA By flooding of a prematured aged LSA And then reintroduce the LSA But sequence number is 3 bits, if router updates sequence # every 5 seconds it takes 600 years to wrap around!

33 Metric The metric is dependent on LSA and is not in the common header The metric is a scalar It can mean anything: hops,, delay, load,... Metrics are asymmetric CISCO's default metric is: 0^ / <linkbw> Eg 0Mb eth has metric 0 E (serial Mbps) has metric 50 Juniper does not have this

34 LSA type : Router LSA A list of links that a true router is connected to Link to a Point to point network Link to Transit networks Link to Stub networks Broadcast, NBMA or point to multipoint No other router Virtual link Tunnel to other router Used in error cases and to keep the backbone connected LSA hdr Router LSA hdr Link # Link # Link #n

35 Router LSA: Stub network RFC 3, fig a Stub network: only one entry point Represented by IP address and network mask Note that the database arrow is not bidirectional Physical network LSA (database) view RT7 RT7 N3 N3 RT7's router LSA (part of a LS update) Packet view LSA hdr Router LSA hdr Stub Link: N3

36 Router LSA: Point to point For unnumbered interfaces, Ia and Ib are omitted Ia and Ib does not need to be on common subnet OSPF obscurity: RT points to Ib! In practice (OSPF + JunOS): both addresses in same subnet. Ia Ib RT RT RT Ia Ib RT RT's router LSA LSA hdr Router LSA hdr Router link:rt Stub Link: Ib RT's router LSA LSA hdr Router LSA hdr Router link:rt Stub Link: Ia

37 Router LSA: Transit network The link points to a transit network's IP address The address of the designated router RT3 RT3 RT4 RT4 RT4 RT6 N RT5 N RT3's router LSA LSA hdr Router LSA hdr RT6 Transit link:n

38 Router LSA: Virtual link The link points to a remote router connected by an IP network Similar to point to point, but remote peer is not physically connected Used to keep the backbone connected We will talk more about virtual links in the area section

39 LSA Type : Network LSA Links of a transit network distributed from a designated router The designated router distributes the information on behalf of the connected routers Metric on entry to network but zero cost to leave Example: (RT3 is DR) DR RT3 RT3 RT4 RT4 RT4 RT6 N RT5 N RT3's network LSA LSA hdr Network LSA hdr RT6 RT3, RT4, RT5, RT6

40 External routes An external route is a prefix that OSPF has learnt from another protocol (or static route) Has been redistributed into OSPF External routes come in two flavors based on the metrics: External Type (E): use same metrics as internal External Type (E): external metric takes precedence If RIP routes are imported as E, and OSPF uses hop count metric, then OSPF and RIP can work seamlessly BGP routes are imported as E, where metric is AS path length

41 AS External LSA (Type 5) But how are the external routes communicated to the network? Router and network LSAs are not applicable AS External LSAs Originated by AS boundary routers Announces an external particular prefix Redistributed route from another protocol A forwarding address (may be different than AS boundary router) External route tag Eg an BGP AS path would enable the use of OSPF instead of IBGP AS External LSAs are flooded throughout the AS RT3 N RT3 N ASBR ASBR RT3's AS External LSA LSA hdr AS External LSA hdr N

42 From network to FIB: Example Network > Database > OSPF Routing table > RIB > FIB

43 Network example N 3 RT 3 RT4 N3 N N4 N 6 6 RT RT5 7 N3 6 RT3 RT6 Ia 7 N4 N5 Ib 6 RT0 3 N 3 N9 H RT9 0 6 RT N6 RT N RT 4 N0 N7 RFC 3 fig 9 RT7

44 Building a database With LSA type and, we can build databases by combining the LSA views * * T O * * **FROM** RTRTRTRTRTRTRTRTRTRTRTRT N3N6NN RT 0 RT 0 RT3 6 0 RT4 0 RT5 6 6 RT6 7 5 RT7 6 0 RT 0 RT9 0 RT RT 0 0 RT 0 N3 N 3 N3 N4 N6 N7 4 N 3 N9 N0 N 3 N N3 N4 N5 9 H 0 RFC 3 fig 3

45 N4 Database, graphical form N 3 RT 0 N3 0 N 0 RT4 7 RT3 RT5 0 3 RT N3 N LSA Type 5: AS External RT6 7 7 Ib N4 7 N5 5 Ia 6 5 RT7 RT0 3 N 3 RT9 0 H 0 RT N N RT N6 0 RT 4 N0 N7 9

46 N4 Shortest path tree for RT6 N 3 RT 0 N N3 0 N RT5 RT4 0 N3 3 RT 6 RT3 6 RT6 7 7 N4 Ib N5 Ia 5 RT7 RT0 3 N 3 RT9 H N9 0 RT N N6 0 0 RT RT 4 N0 N7 RFC 3 fig 5 9

47 Building a routing table Local routing table (RIB) computed from Dijkstra shortest path calculation Next hop routing: only nexthop router even if complete path is known Example: RT6 Local destinations RFC 3, table Destination Next Hop Distance N RT3 0 N RT3 0 N3 RT3 7 N4 RT3 Ib * 7 Ia RT0 N6 RT0 N7 RT0 N RT0 0 N9 RT0 N0 RT0 3 N RT0 4 H RT0 RT5 RT5 6 RT7 RT0 Remote destinations(type ) RFC 3, table 3 Destination Next Hop Distance N RT0 0 N3 RT5 4 N4 RT5 4 N5 RT0 7

48 OSPF Network Topology Area 0 is the backbone area. All (inter area) traffic goes via the backbone. All other areas are connected to the backbone ( level hierarchy) A Border area router (ABR) has one interface in each area. An AS Boundary Router (ASBR) attaches to other AS:s Backbone router at least one interface in backbone area ASY ASZ AS boundary router: External routing AS Area 0 ASX Internal router Area Border Router: Interfaces in different areas All areas connected to backbone area Area Area Area 3 Internal router + ASBR

49 OSPF Areas Divides the OSPF domain into smaller zones Smaller link state database in each zone Also decreases signaling traffic Routers have limits on processing power and memory Router CPUs are typically much slower than PCs CISCO used to recommend ~0 routers as a limit in a single area You need a large network to benefit from areas Typical large companies Example: KTHLAN using OSPF with 5 0 routers used to have areas but now only uses area 0. However, areas are less used today. More often divide your internal network into BGP confederations, for example

50 Smaller database Using areas makes the database smaller That is, fewer and more compact LSAs The destinations inside the area is still fully described by type router and type network LSAs Full Dijkstra algorithm But destinations outside the area are summarized Only the (cumulative) metric and prefix necessary Not full link state This leads to a smaller database and less processing to compute shortest path

51 Route summarization When the details of an area has been hidden it makes sense to aggregate the prefixes Typically, all networks within an area, can be summarized into one LSA Routes can also be summarized at redistribution to/from another protocol The metric uses the max of all summarized metrics In the example, area 's routes are summarized: N9 N, H With max cost (to H)

52 Summary LSAs: types 3 and 4 To distribute the more summary information, we need two new LSAs Type 3 Network summary LSA Destination, network mask and cumulative metric N Type 4 ASBR Summary LSA Same as type 3, but destination is an AS boundary router Next hop for external routes ABSR Why is LSA type 4 needed? Because type 5 AS external LSAs are flooded throughout the AS, but the ASBR might not be visible from inside an area

53 N4 N 3 RT 3 RT4 N3 N N 6 6 RT RT5 7 N3 6 RT3 RT6 Ia 7 N4 Area N5 Ib RT0 3 N 3 N9 H RT Area 3 RT9 0 N0 N6 RT N RT 4 Area RFC 3 fig 6 N7 RT7

54 Virtual links The backbone must be logically connected But it does not have to be physically connected You can use virtual links (tunnels) to make the backbone virtually connected Traffic passing in the backbone may then physically use a non backbone area: this is called a transit area. Example: A virtual link is (manually) configured between RT0 and RT For robustness, RT7 and RT may also have a virtual link

55 Virtual link example A virtual link is (manually) configured between RT0 and RT For robustness, RT7 and RT may also have a virtual link Why? Area is now a transit area RT0 3 N6 RT N RT 4 Area N7 RT7

56 Example RFC 3, section 3 Using Area 0 and as examples shows Note : The Area Border Routers (RT3 and RT4) injects summaries both Into Area from the backbone and other areas Into area 0 (backbone) from area Note : The external routes are flooded through all areas Note 3: Area has two points of exits Internal routers can make intelligent decisions, and load balance between exit points Example: RT uses RT4 to N6, RT3 to N0, and load balance to N!

57 N4 Backbone Database: RFC 3 fig N RT4 N N3 RT3 N3 RT5 7 6 N 6 6 RT6 7 N4 Ib Area N5 5 Ia 6 5 Max of all individual metrics N9-N, H Area 3 3 RT7 RT0 RT N N6 Area N7 9

58 Area 's database: RFC 3 fig 7 N4 LSA Type 5: AS External N3 RT5 LSA Type : Router RT 0 0 N 3 RT RT7 9 N5 N LSA Type 4: ASBR Summary LSA Type : Network N N3 0 Ia Ib RT4 0 0 N6 RT3 N7 N N4 Area N9-N, H LSA Type 3: Network Summary

59 Stub areas A problem with flooding external LSAs: Suppose many external routes are injected into OSPF Maybe the core carries transit traffic (between other AS:s) But large parts of the areas do not High performance routers Simpler routers This will give a high burden on the smaller routers In a stub area, the ABR does not flood external LSAs into the area Instead, one (or many) default route is injected Then all external traffic must use the default route announced by the ABRs But the inter area traffic are still announced by summaries from the ABRs

60 Stub area example N4 N 3 RT N RT5 7 default RT Area RT4 N3 3 N3 N RT6 RT3 N4 N5 6 9 RT7

61 Motivation for NSSA Sometimes, the restrictions on stub areas are too strict: You would like to import a limited number of external routes Example: You want to block large routing tables from transit traffic, but want to import a small number of routes But in stub areas, you cannot import any external routes.

62 Example: NSSA motivation A Peering with other AS C Large amount of transit routes Area Area 0 Want to import routes from C but not from A and B Peering with other AS B

63 Not So Stubby Area (NSSA) RFC 30 NSSA allows to inject external routes into a stub area LSA type 7 are spread through the NSSA At ABRs, the Type 7 LSA are translated to Type 5 (External AS LSA) and spread through the AS But other External AS LSAs are still not inserted in the NSSA

64 Example: NSSA solution A Peering with other AS C Routes from C spread as Type-7 LSA Area Area 0 Routes from C translated to Type-5 LSAs Peering with other AS B

65 Totally stub areas Totally stub area Do not distribute inter area routes into an area Just use default route CISCO specific NSSA totally stub area Combination of NSSA and totally stub area

66 Summary of LSAs: regular areas Regular area Area 0 Regular area ABR > -----> 3* -----> -----> >x ----->x -----> -----> > 5 Note: Area 0 ABR (stub links) 3* <----3 <----3 <----4 <----5 <----4 <----- <---- <---- < < < (*) Only stub links of type translated to type 3 Type 5 passes through but generates a new type 4 (ASBR) Type 3 and 4 from other areas passes through but changes origin (to ABR) Summaries (3 and 4) are not forwarded into backbone

67 Summary of LSAs: stub areas Stub area Area 0 Stub area ABR > -----> 3* -----> -----> >x ----->x ----->x Note: Area 0 ABR (stub links) 3* <----- < <----- < <----- < x< x< /0 <----- All type 5 blocked. Replaced with default route (in a type 3 LSA)

68 Summary of LSAs: not so stubby areas Stub area Area > -----> 3* -----> -----> >x ----->x ----->x -----> -----> > 5 Stub area Area 0 3* <----- < <----- < <----- < x< x< /0 <----x<---- 7

69 Opaque LSA Option RFC 370 For Future extensibility Standard LSA header Followed by application specific information Three new LSA, difference in scope: Type 9 LSA: Link local scope Type 0 LSA: Area local scope Type LSA: AS local scope

70 Summary This was OSPF essentials But there are many more issues, for more reading consult: RFC 3 J Moy, OSPF Anatomy of an Internet Routing Protocol Lots of vendor documentation

71 Traffic Engineering extensions RFC 370 It adds bandwidth and administrative constraints So that a (network) manager can control traffic in more detail Distribute it in an area Uses Type 0 opaque LSA, area scope Call it Traffic Engineering LSA The LSA payload contains nested TLVs, for example: Traffic engineering metric Maximum bandwidth Maximum reservable bandwidth Unreserved bandwidth Administrative group

72 OSPFv3 OSPF for IPv6 is OSPFv3 Unchanged: Flooding, DR election, area support, SPF calculations, etc Authentication removed (use IPSEC) New LSAs for IPv6 addresses Addressing semantics removed from basic LSAs and msgs Avoid IPv4/IPv6 addresses prefer RouterID Network protocol independence Renaming: Type 3 summary LSA > Inter Area prefix LSA Type 4 summary LAS > Inter Area router LSA

DD2490 p Link-state routing and OSPF. Olof Hagsand KTH/CSC

DD2490 p Link-state routing and OSPF. Olof Hagsand KTH/CSC DD2490 p4 200 Link-state routing and OSPF Olof Hagsand KTH/CSC Literature RFC 232: Browse through Section. Section 2 gives a very good understanding of OSPF issues. The example is realistic (complex) and

More information

DD2490 p Link-state routing and OSPF. Olof Hagsand KTH/CSC

DD2490 p Link-state routing and OSPF. Olof Hagsand KTH/CSC DD2490 p4 2009 Link-state routing and OSPF Olof Hagsand KTH/CSC Literature RFC 232: Browse through Section. Section 2 gives a very good understanding of OSPF issues. The example is realistic (complex)

More information

DD2490 p Lecture 4: OSPF. Link-state routing and Open Shortest Path First. Olof Hagsand KTH CSC

DD2490 p Lecture 4: OSPF. Link-state routing and Open Shortest Path First. Olof Hagsand KTH CSC DD2490 p4 20 Lecture 4: OSPF Link-state routing and Open Shortest Path First Olof Hagsand KTH CSC OSPF is the routing protocol that we deal with in most detail in this course. OSPF is a complex protocol,

More information

Link State Routing. Link State Packets. Link State Protocol. Link State Protocols Basic ideas Problems and pitfalls

Link State Routing. Link State Packets. Link State Protocol. Link State Protocols Basic ideas Problems and pitfalls 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 Link State Protocols Basic ideas Problems and

More information

Link State Routing. Link State Packets. Link State Protocol. Link State Protocols Basic ideas Problems and pitfalls

Link State Routing. Link State Packets. Link State Protocol. Link State Protocols Basic ideas Problems and pitfalls 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 Link State Protocols Basic ideas Problems

More information

Introduction to OSPF

Introduction to OSPF Introduction to OSPF 1 OSPF Open Shortest Path First Link state or SPF technology Developed by OSPF working group of IETF (RFC 1247) OSPFv2 standard described in RFC2328 Designed for: TCP/IP environment

More information

OSPF (Open Shortest Path First)

OSPF (Open Shortest Path First) OSPF (Open Shortest Path First) Open : specification publicly available RFC 1247, RFC 2328 Working group formed in 1988 Goals: Large, heterogeneous internetworks Uses the Link State algorithm Topology

More information

OSPF (Open Shortest Path First)

OSPF (Open Shortest Path First) OSPF (Open Shortest Path First) Open : specification publicly available RFC 1247, RFC 2328 Working group formed in 1988 Goals: Large, heterogeneous internetworks Uses the Link State algorithm Topology

More information

Introduction to OSPF

Introduction to OSPF Introduction to OSPF ISP/IXP Workshops ISP/IXP Workshops 1999, Cisco Systems, Inc. 1 OSPF Dynamic Routing Protocol Link State technology Runs over IP, protocol 89 Designed by IETF for TCP/IP Supports VLSM

More information

Table of Contents 1 OSPF Configuration 1-1

Table of Contents 1 OSPF Configuration 1-1 Table of Contents 1 OSPF Configuration 1-1 Introduction to OSPF 1-1 Basic Concepts 1-2 OSPF Area Partition 1-4 Router Types 1-7 Classification of OSPF Networks 1-9 DR and BDR 1-9 OSPF Packet Formats 1-11

More information

OSPF. Unless otherwise noted, OSPF refers to OSPFv2 throughout this document.

OSPF. Unless otherwise noted, OSPF refers to OSPFv2 throughout this document. Open Shortest Path First () is a link state based interior gateway protocol developed by the working group of the Internet Engineering Task Force (IETF). At present, version 2 (RFC2328) is used. Introduction

More information

Configuring OSPF network management 39 Enabling message logging 39 Enabling the advertisement and reception of opaque LSAs 40 Configuring OSPF to

Configuring OSPF network management 39 Enabling message logging 39 Enabling the advertisement and reception of opaque LSAs 40 Configuring OSPF to Contents Configuring OSPF 1 Introduction to OSPF 1 Basic concepts 1 OSPF areas 3 Router types 6 OSPF network classification 7 DR and BDR 8 OSPF packet formats 9 Supported OSPF features 17 Protocols and

More information

Logging neighbor state changes 38 Configuring OSPF network management 39 Enabling message logging 39 Enabling the advertisement and reception of

Logging neighbor state changes 38 Configuring OSPF network management 39 Enabling message logging 39 Enabling the advertisement and reception of Contents Configuring OSPF 1 Introduction to OSPF 1 Basic concepts 1 Area based OSPF network partition 3 Router types 6 OSPF network classification 7 DR and BDR 8 OSPF packet formats 9 Supported features

More information

Introduction to OSPF

Introduction to OSPF Introduction to OSPF ISP/IXP Workshops ISP/IXP Workshops 1999, Cisco Systems, Inc. 1 Agenda OSPF Primer OSPF in Service Provider Networks OSPF BCP - Adding Networks OSPF Command Summary 2 OSPF Primer 3

More information

Network Working Group. Category: Standards Track Juniper Networks J. Moy Sycamore Networks December 1999

Network Working Group. Category: Standards Track Juniper Networks J. Moy Sycamore Networks December 1999 Network Working Group Requests for Comments: 2740 Category: Standards Track R. Coltun Siara Systems D. Ferguson Juniper Networks J. Moy Sycamore Networks December 1999 OSPF for IPv6 Status of this Memo

More information

IPv6 Routing: OSPFv3

IPv6 Routing: OSPFv3 Open Shortest Path First version 3 (OSPFv3) is an IPv4 and IPv6 link-state routing protocol that supports IPv6 and IPv4 unicast address families (AFs). Finding Feature Information, page 1 Prerequisites

More information

Introduction to OSPF OSPF. Link State Routing. Link State. Fast Convergence. Low Bandwidth Utilisation

Introduction to OSPF OSPF. Link State Routing. Link State. Fast Convergence. Low Bandwidth Utilisation Introduction to OSPF ISP/IP Workshops OSPF Open Shortest Path First Link state or SPF technology Developed by OSPF working group of IETF (RFC 47) Designed for TCP/IP Internet environment Fast convergence

More information

OSPF Protocol Overview on page 187. OSPF Standards on page 188. OSPF Area Terminology on page 188. OSPF Routing Algorithm on page 190

OSPF Protocol Overview on page 187. OSPF Standards on page 188. OSPF Area Terminology on page 188. OSPF Routing Algorithm on page 190 Chapter 17 OSPF Protocol Overview The Open Shortest Path First (OSPF) protocol is an interior gateway protocol (IGP) that routes packets within a single autonomous system (AS). OSPF uses link-state information

More information

Table of Contents 1 Static Routing Configuration RIP Configuration 2-1

Table of Contents 1 Static Routing Configuration RIP Configuration 2-1 Table of Contents 1 Static Routing Configuration 1-1 Introduction 1-1 Static Route 1-1 Default Route 1-1 Application Environment of Static Routing 1-1 Configuring a Static Route 1-2 Configuration Prerequisites

More information

OSPF Commands. Cisco IOS IP Command Reference, Volume 2 of 3: Routing Protocols IP2R-61

OSPF Commands. Cisco IOS IP Command Reference, Volume 2 of 3: Routing Protocols IP2R-61 OSPF Commands Use the commands in this chapter to configure and monitor the Open Shortest Path First (OSPF) routing protocol. For OSPF configuration information and examples, refer to the Configuring OSPF

More information

Routing II: Protocols (RIP, EIGRP, OSPF, PNNI, IS-IS): Brief Version

Routing II: Protocols (RIP, EIGRP, OSPF, PNNI, IS-IS): Brief Version Routing II: Protocols (RIP, EIGRP, OSPF, PNNI, IS-IS): Brief Version Rensselaer Polytechnic Institute shivkuma@ecse.rpi.edu Based in part upon slides of Prof. Raj Jain (OSU), S. Keshav (Cornell), J. Kurose

More information

Cabrillo College. Rick Graziani, Instructor

Cabrillo College. Rick Graziani, Instructor Cabrillo College CCNP Advanced Routing Ch. 5 - Multi-areas (Part I) Rick Graziani, Instructor Mar. 4, 2002 1 Multi-Area Part I Areas LSAs show ip ospf database (summary of link state database) show ip

More information

HP Load Balancing Module

HP Load Balancing Module HP Load Balancing Module Appendix Protocol Reference Part number: 5998-4222 Software version: Feature 3221 Document version: 6PW100-20130326 Legal and notice information Copyright 2013 Hewlett-Packard

More information

TDC 363 Introduction to LANs

TDC 363 Introduction to LANs TDC 363 Introduction to LANs OSPF Greg Brewster DePaul University TDC 363 Greg Brewster, DePaul University 1 OSPF Link State Routing Algorithms Open Shortest Path First (OSPF) Message Types Operations

More information

Chapter 8 Configuring OSPF

Chapter 8 Configuring OSPF Chapter 8 Configuring OSPF This chapter describes how to configure OSPF on HP routing switches using the CLI and Web management interface. To display OSPF configuration information and statistics, see

More information

Unit 3: Dynamic Routing

Unit 3: Dynamic Routing Unit 3: Dynamic Routing Basic Routing The term routing refers to taking a packet from one device and sending it through the network to another device on a different network. Routers don t really care about

More information

Operation Manual Routing Protocol. Table of Contents

Operation Manual Routing Protocol. Table of Contents Table of Contents Table of Contents Chapter 1 IP Routing Protocol Overview... 1-1 1.1 Introduction to IP Route and Routing Table... 1-1 1.1.1 IP Route... 1-1 1.1.2 Routing Table... 1-1 1.2 Routing Management

More information

Examination IP routning inom enkla datornät, DD2490 IP routing in simple networks, DD2490 KTH/CSC. Date: 20 May :00 19:00 SOLUTIONS

Examination IP routning inom enkla datornät, DD2490 IP routing in simple networks, DD2490 KTH/CSC. Date: 20 May :00 19:00 SOLUTIONS Examination IP routning inom enkla datornät, DD2490 IP routing in simple networks, DD2490 KTH/CSC Date: 20 May 2009 14:00 19:00 SOLUTIONS a) No help material is allowed - You are not allowed to use books

More information

Operation Manual IPv4 Routing H3C S3610&S5510 Series Ethernet Switches. Table of Contents

Operation Manual IPv4 Routing H3C S3610&S5510 Series Ethernet Switches. Table of Contents Table of Contents Table of Contents Chapter 1 Static Routing Configuration... 1-1 1.1 Introduction... 1-1 1.1.1 Static Route... 1-1 1.1.2 Default Route... 1-1 1.1.3 Application Environment of Static Routing...

More information

OSPF. OSPF processs can be enabled on 2 levels

OSPF. OSPF processs can be enabled on 2 levels OSPF UDP port 89 Metic cost Link state protocol Flood the link state information in the entire topology Builds the topology table Stores in LSDB Runs SPF(Djsktra algorithm) for best path to reach destination

More information

Configuring OSPF. Finding Feature Information

Configuring OSPF. Finding Feature Information This module describes how to configure Open Shortest Path First (OSPF). OSPF is an Interior Gateway Protocol (IGP) developed by the OSPF working group of the Internet Engineering Task Force (IETF). OSPF

More information

Configuring OSPF. Finding Feature Information. Contents

Configuring OSPF. Finding Feature Information. Contents Configuring OSPF First Published: May 5, 2008 Last Updated: March 18 2011 This module describes how to configure Open Shortest Path First (OSPF). OSPF is an Interior Gateway Protocol (IGP) developed by

More information

Configuring OSPF. Finding Feature Information

Configuring OSPF. Finding Feature Information This module describes how to configure Open Shortest Path First (OSPF). OSPF is an Interior Gateway Protocol (IGP) developed by the OSPF working group of the Internet Engineering Task Force (IETF). OSPF

More information

Configuring OSPF. Cisco s OSPF Implementation

Configuring OSPF. Cisco s OSPF Implementation Configuring OSPF This chapter describes how to configure OSPF. For a complete description of the OSPF commands in this chapter, refer to the OSPF s chapter of the Network Protocols Reference, Part 1. To

More information

EECS 122, Lecture 16. Link Costs and Metrics. Traffic-Sensitive Metrics. Traffic-Sensitive Metrics. Static Cost Metrics.

EECS 122, Lecture 16. Link Costs and Metrics. Traffic-Sensitive Metrics. Traffic-Sensitive Metrics. Static Cost Metrics. EECS 122, Lecture 16 Kevin Fall kfall@cs.berkeley.edu edu Link Costs and Metrics Routing protocols compute shortest/cheapest paths using some optimization criteria Choice of criteria has strong effect

More information

CompSci 356: Computer Network Architectures. Lecture 13: Dynamic routing protocols: Link State Chapter 3.3.3, Xiaowei Yang

CompSci 356: Computer Network Architectures. Lecture 13: Dynamic routing protocols: Link State Chapter 3.3.3, Xiaowei Yang CompSci 356: Computer Network Architectures Lecture 13: Dynamic routing protocols: Link State Chapter 3.3.3, 3.2.9 Xiaowei Yang xwy@cs.duke.edu Today Clarification on RIP Link-state routing Algorithm Protocol:

More information

Routing Protocol Type Primarily IGP or EGP RIP Distance-Vector IGP EIGRP OSPF IS-IS BGP

Routing Protocol Type Primarily IGP or EGP RIP Distance-Vector IGP EIGRP OSPF IS-IS BGP Appendix D Memory Tables Chapter 1 Table 1-2 Routing Protocol Characteristics Routing Protocol Type Primarily IGP or EGP RIP Distance-Vector IGP EIGRP OSPF IS-IS BGP Chapter 3 Table 3-2 Hexadecimal/Binary

More information

FiberstoreOS V3.3 IPv6 Routing Command Line Reference

FiberstoreOS V3.3 IPv6 Routing Command Line Reference FiberstoreOS V3.3 IPv6 Routing Command Line Reference Contents 1 OSPFv3 Commands... 4 1.1 area default-cost...4 1.2 area range...5 1.3 area stub... 6 1.4 auto-cost...7 1.5 clear ipv6 ospf...8 1.6 default-information

More information

debug ip ospf database external default-metric subnet area 0 stub distribute-list in Serial0/1

debug ip ospf database external default-metric subnet area 0 stub distribute-list in Serial0/1 Which statement about stateless autoconfiguration is true? A host can autoconfigure itself by appending its MAC address to the local link prefix (64 bits). 2 Autoconfiguration allows devices to connect

More information

Chapter 16 OSPF Version 3 Commands

Chapter 16 OSPF Version 3 Commands Chapter 16 OSPF Version 3 Commands NOTE: The OSPF version 3 configuration level is present only on HP devices that support IPv6. area Assigns OSPF version 3 areas. You can assign an IPv4 address or a number

More information

IP Routing Tecnologie e Protocolli per Internet II rev 1

IP Routing Tecnologie e Protocolli per Internet II rev 1 IP Routing Tecnologie e Protocolli per Internet II rev 1 Andrea Detti Electronic Engineering dept. E-mail: andrea.detti@uniroma2.it Some sources: Cisco CCNA Routing and Switching ICND1 and ICND2 Slide

More information

Vanguard Managed Solutions

Vanguard Managed Solutions Vanguard Managed Solutions Vanguard Applications Ware IP and LAN Feature Protocols Open Shortest Path First (OSPF) Notice 2003 Vanguard Managed Solutions, LLC 575 West Street Mansfield, Massachusetts 02048

More information

FSOS IPv6 Routing Command Line Reference

FSOS IPv6 Routing Command Line Reference FSOS IPv6 Routing Command Line Reference Contents 1 OSPFv3 Commands... 5 1.1 area default-cost...5 1.2 area range...6 1.3 area stub... 7 1.4 auto-cost...8 1.5 clear ipv6 ospf...9 1.6 default-information

More information

FiberstoreOS. IPv6 Routing Command Line Reference

FiberstoreOS. IPv6 Routing Command Line Reference FiberstoreOS IPv6 Routing Command Line Reference 1 Contents 1 OSPFv3 Commands... 6 1.1 area default-cost... 6 1.2 area range...7 1.3 area stub... 7 1.4 auto-cost...8 1.5 clear ipv6 ospf...9 1.6 default-information

More information

Configuring OSPF with CLI

Configuring OSPF with CLI OSPF Configuring OSPF with CLI This section provides information to configure Open Shortest Path First (OSPF) using the command line interface. Topics in this section include: OSPF Configuration Guidelines

More information

Teldat Router. OSPF Protocol

Teldat Router. OSPF Protocol Teldat Router OSPF Protocol Doc. DM714-I Rev. 10.90 November, 2011 INDEX Chapter 1 Introduction... 1 1. The OSPF Protocol... 2 2. The OSPF Routing Protocol... 3 3. Configuring OSPF... 4 3.1. Enabling the

More information

OSPFv2 deep dive. Михайловский Василий Cisco TAC Poland Ноябрь 17, 2015

OSPFv2 deep dive. Михайловский Василий Cisco TAC Poland Ноябрь 17, 2015 OSPFv2 deep dive Михайловский Василий vamikhai@cisco.com Cisco TAC Poland Ноябрь 17, 2015 Содержание TBD OSPFv2 transport Using IP-multicast 224.0.0.5 and 224.0.0.6; Protocol number 89; Unicast for immediate

More information

OSPF Demand Circuit Feature

OSPF Demand Circuit Feature OSPF Demand Circuit Feature Document ID: 5132 Contents Introduction Prerequisites Requirements Components Used Conventions How Is OSPF over Demand Circuit Different from a Normal Circuit? Suppressed Periodic

More information

IT-Operation (2) OSPF. Who am I

IT-Operation (2) OSPF. Who am I IT-Operation (2) OSPF yasu@wide.ad.jp Who am I Name: Yasuhiro Ohara 3rd grade of doctoral course in KEIO Univ. Author of Zebra ospf6d One of WIDE 6Bone operators developer or researcher rather than operator

More information

CCNA 3 (v v6.0) Chapter 5 Exam Answers % Full

CCNA 3 (v v6.0) Chapter 5 Exam Answers % Full CCNA 3 (v5.0.3 + v6.0) Chapter 5 Exam Answers 2017 100% Full ccnav6.com /ccna-3-v5-0-3-v6-0-chapter-5-exam-answers-2017-100-full.html CCNA Exam Answers 2017 CCNA 3 (v5.0.3 + v6.0) Chapter 5 Exam Answers

More information

Routing Protocols. Technology Description BGP CHAPTER

Routing Protocols. Technology Description BGP CHAPTER CHAPTER 11 This chapter describes the level of support that Cisco ANA provides for routing protocols, as follows: Technology Description, page 11-1 Information Model Objects (IMOs), page 11-3 Vendor-Specific

More information

CSCD 433/533 Advanced Networks Spring 2016

CSCD 433/533 Advanced Networks Spring 2016 CSCD 433/533 Advanced Networks Spring 2016 Lecture 13 Router Algorithms and Design Chapter 5 1 Topics Router Algorithms Routing in General Hierarchical routing Interior Gateway Protocols OSPF mention of

More information

Explanation: In order to verify proper route redistribution, use the "show ip route" command on all routers

Explanation: In order to verify proper route redistribution, use the show ip route command on all routers QUESTION 401 The 192.168.0.0/16 network is not being propagated throughout the network via BGP as expected. Observe the BGP configuration commands from the advertising router shown below. Router bgp 65111

More information

OSPFv3 Commands. address-family (OSPFv3), page 4. authentication (OSPFv3), page 7

OSPFv3 Commands. address-family (OSPFv3), page 4. authentication (OSPFv3), page 7 This module describes the commands used to configure and monitor the IP Version 6 (IPv6) Open Shortest Path First Version 3 (OSPFv3) routing protocol. For detailed information about OSPFv3 concepts, configuration

More information

Link State. 1 Flooding of link-state information. 5 Routing Table. 3 SPF Algorithm. 2 Building a Topological Database. 4 SPF Tree

Link State. 1 Flooding of link-state information. 5 Routing Table. 3 SPF Algorithm. 2 Building a Topological Database. 4 SPF Tree Link State 1 Flooding of link-state information 5 Routing Table 2 Building a Topological Database 3 SPF Algorithm 4 SPF Tree OSPF Hello Protocol OSPF routers send Hellos on OSPF enabled interfaces: Default

More information

Network Protocols. Routing. TDC375 Winter 2002 John Kristoff - DePaul University 1

Network Protocols. Routing. TDC375 Winter 2002 John Kristoff - DePaul University 1 Network Protocols Routing TDC375 Winter 2002 John Kristoff - DePaul University 1 IP routing Performed by routers Table (information base) driven Forwarding decision on a hop-by-hop basis Route determined

More information

Internet Routing Protocols Tuba Saltürk

Internet Routing Protocols Tuba Saltürk Internet Routing Protocols 15505068 Tuba Saltürk Outline Internet Routers Routing Protocol Interior Gateway Protocol (IGP) Distance- Vector Routing Protocol Routing Information Protocol (RIP) Interior

More information

ABR (Area Border Router), 206, 216 access, dedicated networks, 23 access layer, three-layer hierarchical design model, 6

ABR (Area Border Router), 206, 216 access, dedicated networks, 23 access layer, three-layer hierarchical design model, 6 1358_fmi.book Page 460 Thursday, May 27, 2004 2:21 PM A ABR (Area Border Router), 206, 216 access, dedicated networks, 23 access layer, three-layer hierarchical design model, 6 access lists, scalable networks,

More information

Chapter 15 OSPF Commands

Chapter 15 OSPF Commands Chapter 15 OSPF Commands NOTE: This chapter contains information about OSPF version 2 commands only. For information about OSPF version 3 commands, see OSPF Version 3 Commands on page 16-1. area Assigns

More information

Basic Idea. Routing. Example. Routing by the Network

Basic Idea. Routing. Example. Routing by the Network Basic Idea Routing Routing table at each router/gateway When IP packet comes, destination address checked with routing table to find next hop address Questions: Route by host or by network? Routing table:

More information

OSPF. About OSPF. CLI Book 1: Cisco ASA Series General Operations CLI Configuration Guide, 9.4 1

OSPF. About OSPF. CLI Book 1: Cisco ASA Series General Operations CLI Configuration Guide, 9.4 1 This chapter describes how to configure the Cisco ASA to route data, perform authentication, and redistribute routing information using the Open Shortest Path First () routing protocol. About, page 1 Guidelines

More information

Routing by the Network

Routing by the Network Routing Basic Idea Routing table at each router/gateway When IP packet comes, destination address checked with routing table to find next hop address Questions: Route by host or by network? Routing table:

More information

Operation Manual OSPF. Table of Contents

Operation Manual OSPF. Table of Contents Table of Contents Table of Contents... 1-1 1.1 OSPF Overview... 1-1 1.1.1 Introduction to OSPF... 1-1 1.1.2 Process of OSPF Route Calculation... 1-2 1.1.3 OSPF Packets... 1-2 1.1.4 LSA Type... 1-3 1.1.5

More information

Vendor: Alcatel-Lucent. Exam Code: 4A Exam Name: Alcatel-Lucent Interior Routing Protocols and High Availability.

Vendor: Alcatel-Lucent. Exam Code: 4A Exam Name: Alcatel-Lucent Interior Routing Protocols and High Availability. Vendor: Alcatel-Lucent Exam Code: 4A0-101 Exam Name: Alcatel-Lucent Interior Routing Protocols and High Availability Version: Demo QUESTION 1 When a router receives an IP packet, but does not find a match

More information

Symbols. Numerics I N D E X

Symbols. Numerics I N D E X I N D E X Symbols? (question mark), CLI help system, 126 Numerics A 2-router BGP topology, configuring, 279 284 4-router BGP topology, configuring, 266, 276 279 ABRs (area border routers), 9, 87, 95, 141

More information

OSPF Commands. adjacency stagger, page 7. authentication-key (OSPF), page 14

OSPF Commands. adjacency stagger, page 7. authentication-key (OSPF), page 14 OSPF Commands This module describes the commands used to configure and monitor the Open Shortest Path First (OSPF) routing protocol. For detailed information about OSPF concepts, configuration tasks, and

More information

CCNP 1: Advanced Routing

CCNP 1: Advanced Routing Scope and Sequence CCNP 1: Advanced Routing Cisco Networking Academy Program Version 3.1 TABLE OF CONTENTS CCNP 1: ADVANCED ROUTING...1 TARGET AUDIENCE...3 PREREQUISITES...3 COURSE DESCRIPTION...3 COURSE

More information

Implementing Cisco IP Routing (ROUTE)

Implementing Cisco IP Routing (ROUTE) Implementing Cisco IP Routing (ROUTE) Foundation Learning Guide Foundation learning for the ROUTE 642-902 Exam Diane Teare Cisco Press 800 East 96th Street Indianapolis, IN 46240 Implementing Cisco IP

More information

IP Routing: OSPF Configuration Guide, Cisco IOS XE Release 3E

IP Routing: OSPF Configuration Guide, Cisco IOS XE Release 3E 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 3 Lab 3-2, Multi-Area OSPFv2 and OSPFv3 with Stub Area

Chapter 3 Lab 3-2, Multi-Area OSPFv2 and OSPFv3 with Stub Area Chapter 3 Topology Objectives Configure multi-area OSPFv2 for IPv4. Configure multi-area OSPFv3 for IPv6 Verify multi-area behavior. Configure stub and totally stubby areas for OSPFv2. Configure stub and

More information

Alcatel-Lucent 7705 SERVICE AGGREGATION ROUTER OS RELEASE 5.0 ROUTING PROTOCOLS GUIDE ROUTING PROTOCOLS GUIDE

Alcatel-Lucent 7705 SERVICE AGGREGATION ROUTER OS RELEASE 5.0 ROUTING PROTOCOLS GUIDE ROUTING PROTOCOLS GUIDE ROUTING PROTOCOLS GUIDE Alcatel-Lucent 7705 SERVICE AGGREGATION ROUTER OS RELEASE 5.0 ROUTING PROTOCOLS GUIDE Alcatel-Lucent Proprietary This document contains proprietary information of Alcatel-Lucent

More information

OSPF Commands on Cisco ASR 9000 Series Router

OSPF Commands on Cisco ASR 9000 Series Router OSPF Commands on Cisco ASR 9000 Series Router This module describes the commands used to configure and monitor the Open Shortest Path First (OSPF) routing protocol. For detailed information about OSPF

More information

A Commands. Send comments to

A Commands. Send comments to This chapter describes the Cisco NX-OS Open Shortest Path First (OSPF) commands that begin with A. UCR-555 area authentication (OSPF) area authentication (OSPF) To enable authentication for an Open Shortest

More information

Passit4Sure.4A Questions 4A Alcatel-Lucent Interior Routing Protocols and High Availability

Passit4Sure.4A Questions 4A Alcatel-Lucent Interior Routing Protocols and High Availability Passit4Sure.4A0-101.300Questions Number: 4A0-101 Passing Score: 800 Time Limit: 120 min File Version: 7.5 http://www.gratisexam.com/ 4A0-101 Alcatel-Lucent Interior Routing Protocols and High Availability

More information

Lab 4: Routing using OSPF

Lab 4: Routing using OSPF Network Topology:- Lab 4: Routing using OSPF Device Interface IP Address Subnet Mask Gateway/Clock Description Rate Fa 0/0 172.16.1.17 255.255.255.240 ----- R1 LAN R1 Se 0/0/0 192.168.10.1 255.255.255.252

More information

OSPF Commands on Cisco IOS XR Software

OSPF Commands on Cisco IOS XR Software This module describes the commands used to configure and monitor the Open Shortest Path First (OSPF) routing protocol. For detailed information about OSPF concepts, configuration tasks, and examples, see

More information

4A Alcatel-Lucent. Alcatel-Lucent Interior Routing Protocols and High Availability

4A Alcatel-Lucent. Alcatel-Lucent Interior Routing Protocols and High Availability Alcatel-Lucent 4A0-101 Alcatel-Lucent Interior Routing Protocols and High Availability Download Full Version : http://killexams.com/pass4sure/exam-detail/4a0-101 QUESTION: 297 Click on the exhibit. In

More information

with

with Version 3 Page Topic/Header ------------------------------------- 2 2.1 3 Ethernet II 4 ARP 5 IP 6 ICMP 7 UDP TCP 9 RIPv1 1 RIPv2 11 RIP authentication 12 EIGRP 13 EIGRP TLVs 14-25 OSPFv2 25-end OSPFv3

More information

CompSci 356: Computer Network Architectures. Lecture 12: Dynamic routing protocols: Link State Chapter Xiaowei Yang

CompSci 356: Computer Network Architectures. Lecture 12: Dynamic routing protocols: Link State Chapter Xiaowei Yang CompSci 356: Computer Network Architectures Lecture 12: Dynamic routing protocols: Link State Chapter 3.3.3 Xiaowei Yang xwy@cs.duke.edu Today Routing Information Protocol Link-state routing Algorithm

More information

Network Working Group. Category: Standards Track Stanford University March 1994

Network Working Group. Category: Standards Track Stanford University March 1994 Network Working Group Request for Comments: 1587 Category: Standards Track R. Coltun RainbowBridge Communications V. Fuller Stanford University March 1994 The OSPF NSSA Option Status of this Memo This

More information

Network Protocols. Routing. TDC375 Autumn 03/04 John Kristoff - DePaul University 1

Network Protocols. Routing. TDC375 Autumn 03/04 John Kristoff - DePaul University 1 Network Protocols Routing TDC375 Autumn 03/04 John Kristoff - DePaul University 1 IPv4 unicast routing All Internet hosts perform basic routing for local net destinations, forward to local host for non-local

More information

OSPF Commands: A through Z

OSPF Commands: A through Z OSPF Commands: A through Z area nssa, page 3 area nssa translate, page 5 area virtual-link, page 9 capability vrf-lite, page 13 capability vrf-lite (OSPFv3), page 15 clear ip ospf, page 17 compatible rfc1587,

More information

Juniper Exam JN0-643 Enterprise Routing and Switching, Professional (JNCIP-ENT) Version: 13.0 [ Total Questions: 221 ]

Juniper Exam JN0-643 Enterprise Routing and Switching, Professional (JNCIP-ENT) Version: 13.0 [ Total Questions: 221 ] s@lm@n Juniper Exam JN0-643 Enterprise Routing and Switching, Professional (JNCIP-ENT) Version: 13.0 [ Total Questions: 221 ] Topic 1, Volume A Question No : 1 - (Topic 1) Which connection method do OSPF

More information

How To Configure Basic OSPFv3 Scenarios

How To Configure Basic OSPFv3 Scenarios How To Configure Basic OSPFv3 Scenarios Contents 1. Contents...... 1 2. Introduction...... 2 3. OSPFv3 Basic Configuration...... 3 Commands for basic OSPFv3 configuration... 4 OSPFv3 basic configuration

More information

PrepAwayExam. High-efficient Exam Materials are the best high pass-rate Exam Dumps

PrepAwayExam.   High-efficient Exam Materials are the best high pass-rate Exam Dumps PrepAwayExam http://www.prepawayexam.com/ High-efficient Exam Materials are the best high pass-rate Exam Dumps Exam : 4A0-101 Title : Alcatel-Lucent Interior Routing Protocols and High Availability Vendor

More information

OSPFv3 Address Families

OSPFv3 Address Families The Open Shortest Path First version 3 (OSPFv3) address families feature enables both IPv4 and IPv6 unicast traffic to be supported. With this feature, users may have two processes per interface, but only

More information

OSPFv3 Address Families

OSPFv3 Address Families The Open Shortest Path First version 3 (OSPFv3) address families feature enables both IPv4 and IPv6 unicast traffic to be supported. With this feature, users may have two processes per interface, but only

More information

Command Manual IPv4 Routing H3C S3610&S5510 Series Ethernet Switches. Table of Contents

Command Manual IPv4 Routing H3C S3610&S5510 Series Ethernet Switches. Table of Contents Table of Contents Table of Contents Chapter 1 Static Routing Configuration Commands... 1-1 1.1 Static Routing Configuration Commands... 1-1 1.1.1 delete static-routes all... 1-1 1.1.2 ip route-static...

More information

OSPFv3 Address Families

OSPFv3 Address Families The Open Shortest Path First version 3 (OSPFv3) address families feature enables both IPv4 and IPv6 unicast traffic to be supported. With this feature, users may have two processes per interface, but only

More information

Creating Multiple OSPF Areas. 2001, Cisco Systems, Inc. 6-1

Creating Multiple OSPF Areas. 2001, Cisco Systems, Inc. 6-1 Creating Multiple OSPF Areas 6-1 Issues with Maintaining a Large OSPF Network I am only receiving LSAs, no data. OSPF The SPF is running too often for me to route. OSPF OSPF OSPF OSPF My routing table

More information

FiberstoreOS IP Routing Configuration Guide

FiberstoreOS IP Routing Configuration Guide FiberstoreOS IP Routing Configuration Guide Contents 1 Configuring IP Unicast-Routing... 6 1.1 Overview...6 1.2 Topology... 6 1.3 Configuration... 6 1.4 Validation... 8 2 Configuring RIP... 10 2.1 Overview...10

More information

COURSE OUTLINE: Course: CCNP Route Duration: 40 Hours

COURSE OUTLINE: Course: CCNP Route Duration: 40 Hours COURSE OUTLINE: Course: CCNP Route 300-101 Duration: 40 Hours CCNP Route Training Day 1: Connecting Remote Locations Principles of Static Routing Configuring an IPv4 Static Route Configuring a Static Default

More information

OSPF Not So Stubby Area (NSSA)

OSPF Not So Stubby Area (NSSA) OSPF Not So Stubby Area (NSSA) Document ID: 6208 Contents Introduction Prerequisites Requirements Components Used Conventions What Is a Type 7 LSA? Configuration Tasks Defining a Not So Stubby Area Defining

More information

Configuring OSPF. Finding Feature Information. Last Updated: June 24, 2011

Configuring OSPF. Finding Feature Information. Last Updated: June 24, 2011 Configuring OSPF Finding Feature Information Configuring OSPF Last Updated: June 24, 2011 This module describes how to configure Open Shortest Path First (OSPF). OSPF is an Interior Gateway Protocol (IGP)

More information

Configuring Networking Protocols

Configuring Networking Protocols 11 CHAPTER This chapter describes how to configure the ML-Series card for supported IP routing protocols. It is intended to provide enough information for a network administrator to get the protocols up

More information

ROUTING CONSORTIUM. Open Shortest Path First (OSPF) Multi-System Interoperability Test Suite. Technical Document. Revision 1.6

ROUTING CONSORTIUM. Open Shortest Path First (OSPF) Multi-System Interoperability Test Suite. Technical Document. Revision 1.6 ROUTING CONSORTIUM Open Shortest Path First (OSPF) Multi-System Interoperability Test Suite Technical Document Revision 1.6 University of New Hampshire 121 Technology Drive, Suite 2 Durham, NH 03824-3525

More information

FiberstoreOS IP Routing Configuration Guide

FiberstoreOS IP Routing Configuration Guide FiberstoreOS IP Routing Configuration Guide Contents 1 Configuring IP Unicast-Routing... 1 1.1 Overview... 1 1.2 Topology...1 1.3 Configuration... 2 1.4 Validation... 3 2 Configuring RIP...5 2.1 Overview...

More information

Introduction to IS-IS

Introduction to IS-IS Introduction to IS-IS ISP Workshops Last updated 28 November 2013 1 IS-IS p Intermediate System to Intermediate System p ISO 10589 specifies OSI IS-IS routing protocol for CLNS traffic n A Link State protocol

More information

FSOS IP Routing Configuration Guide

FSOS IP Routing Configuration Guide FSOS IP Routing Configuration Guide Contents 1 Configuring IP Unicast-Routing... 6 1.1 Overview... 6 1.2 Topology...6 1.3 Configuration... 7 1.4 Validation... 8 2 Configuring RIP...10 2.1 Overview... 10

More information

Architectures and Protocols for Integrated Networks. Intra-domain and Inter-domain Routing Protocols

Architectures and Protocols for Integrated Networks. Intra-domain and Inter-domain Routing Protocols Architectures and Protocols for Integrated Networks Intra-domain and Inter-domain Routing Protocols How is the routing table built? Path finding Paths from a device to any other device. Aggregated according

More information