FC LS Slovakia Expo Cisco Systems, Inc. All rights reserved. Cisco Public

Size: px
Start display at page:

Download "FC LS Slovakia Expo Cisco Systems, Inc. All rights reserved. Cisco Public"

Transcription

1 1

2 Fast Convergence for Link State Protocols Scott Sturgess 2

3 FAST CONVERGENCE: Concept and Types of Failure 3

4 FC Concept Convergence is the ability of the network to restore from a link or node failure by finding and installing for each known IP prefix an alternate path in the forwarding table Fast convergence is the ability to do this within one second 4

5 FC Concept Fast Convergence is not all about the IGP Other components need to react fast as well: Hardware/software for link failure detection Hardware/software for installing prefixes in RIB/FIB and distributed FIB Faster hardware results in faster convergence Lots of optimizations are system specific 5

6 Example ISP Core Site A R1 R2 R4 Site B R6 R3 R5 Metric 200 Metric 3 Metric 2 R7 Site C Traffic flows (TF) AB (Single Path) BC (Load balanced path) AC (Single Path) 6

7 ISP Core: Link Failure R5-R7 A R1 R2 R4 B R6 R3 R5 X Metric 200 Metric 3 Metric 2 R7 C Impact on traffic flows AB: R1R3R5R6 NO CHANGE BC: LB(R6R4R7:R6R5R7) SP(R6R4R7) AC: R1R3R5R7 R1R2R4R7 One link failure might completely change the path for a given src/dst pair 7

8 ISP Core: Link Failure R5-R7 A R1 R2 R4 B R6 R3 R5 X Metric 200 Metric 3 Metric 2 R7 C Impacted routers (routers that have changed their FIB for TF) R1, R5: FIB change for destination C (R3 only changes metric in RIB!) R6: Change for C (LB SP) R7: Change for A and B (LB SP) Not every router is updating the same amount of prefixes in its RIB 8

9 Rerouting Node and Failure Node A failure node is the node directly connected to the link failure A rerouting node is a node that can direct traffic to an alternate path without causing a temporary routing loop (micro-loop) There might be several different rerouting nodes for a certain destination. 9

10 Remote and Local Failure For a local failure, the first rerouting node is the node directly connected to the link failure. For a remote failure, the first rerouting node is not directly connected to the link failure. 10

11 Rerouting Node and Failure Node A R1 R2 R4 R6 B R3 R5 X Metric 200 Metric 3 Metric 2 R7 C failure nodes = first rerouting node = R5, R7 Other nodes (R1,R6) could be potential first rerouting nodes as well due to different factors (processing delay, RIB order not same, ), however in lab testing it is advised to exclude such scenarios in order to ease troubleshooting. 11

12 Rerouting Node and Failure Node A We ve removed link R4R5 R1 R2 R4 R6 B R3 R5 X Metric 200 Metric 3 Metric 2 R7 C failure nodes = R5, R7 First rerouting nodes = R3, R7, R6 For src/dst AC, if R5 converges dest C before R3, then a temp. loop occurs and traffic will still drop until R3 or R1 have converged. 12

13 Recursive Prefixes: BGP IPv4 or VPNv4 AS1 R1 R2 AS2 R4 AS3 R6 R3 R5 Metric 200 Metric 3 Metric 2 R7 AS4 How does convergence work for prefixes that are not known by the IGP? Example BGP IPv4 or VPNv4 BGP prefixes are recursive prefixes: they use the forwarding information of their BGP next-hop CRR = CEF Recursion Resolution = a process that needs to assure that BGP prefixes use the forwarding information of their BGP next-hop CRR = 0 means that traffic loss to BGP prefixes is same as traffic loss for their BGP next-hop on which these prefixes recurse 13

14 Recursive Prefixes: BGP IPv4 AS1 ibgp ebgp R1 R2 AS2 R4 R6 ebgp AS3 R3 R5 Metric 200 Metric 3 Metric 2 ibgp R7 ebgp AS4 R6,R7 learn about IPv4 BGP prefixes in AS1 via ibgp session with R1: By default BGP-NH for these prefixes is link R1-AS1. This link is advertised in the IGP as passive-interface R1 could be configured with next-hop self (loop0) When R5R7 fails, R7 will find out that path to BGP-NH changes and updates the FIB. However BGP IPv4 table does not change (BGP prefixes are stable and BGP-NH doesn t change). How does R7 change path for BGP prefixes? CRR process will change the FIB for all BGP prefixes as it knows that their next-hop has changed. 14

15 Recursive Prefixes: BGP VPNv4 VPN1 ibgp ebgp, OSPF, R1 R2 R3 AS2 R4 R5 R6eBGP, OSPF, VPN3 Metric 200 Metric 3 Metric 2 ibgp R6,R7 learn about VPNv4 BGP prefixes in VPN1 via ibgp session with R1: By default BGP-NH for these prefixes is loop0. R7 ebgp, OSPF, When R5R7 fails, R7 will find out that path to BGP-NH changes and updates the FIB. How does R7 change path for VPNv4 prefixes? VPN4 CRR process will change the FIB for all VPNv4 prefixes as it knows that their next-hop has changed. 15

16 FAST CONVERGENCE: Shortest Path First Algorithm 16

17 Shortest Path First Algorithm Also known as Dijkstra Computes the shortest path to all reachable nodes We maintain three lists UNKNOWN list: All nodes start on this list TENTative list: PATHS list: All nodes to which a path has been found which is not yet known to be minimum cost Also called the candidate list All nodes to which we have calculated final paths with definitive cost Also called the known list 17

18 Shortest Path First Algorithm We execute N steps Typically N is the number of nodes in the network; during each step we find the path(s) to one node from root At each step: Find the node amongst all nodes on TENT that has the lowest cost, and move it from TENT into PATHS Find all neighbours reachable from that node and move them into TENT Find all prefixes advertised by the node that was moved to PATHS and install them in the RIB 18

19 Shortest Path First Calculation (How It Works) R1 10 R R R6 100 R3 R2 5 R4 100 R5 TENT_LIST: R3(15),R4(15),R5(15), R2(10), R3(100), R6(25), R1 R6 PATH_LIST: R1(0), R2(10), R3(15), R4(15), R5(15), R6(25), R3 R5 19

20 SPF and PRC Basic Implementation Any change (link, node, leave) Recompute the whole SPT and the whole RIB Decouple SPT and RIB Called SPF Called PRC If any topology change (node, link) Recompute SPT and the RIB If only an IP prefix changes Keep the SPT, just update the RIB for the nodes whose prefixes have changed 20

21 SPF, PRC & LSP/LSA Generation Initial wait before SPF, PRC and LSP/LSA generation 5.5 seconds for SPF & PRC 50 msec for LSP/LSA generation Configurable minimum interval between consecutive events By default is 5 seconds for LSP/LSA generation 10 seconds for SPF & PRC calculation 21

22 Exponential Backoff Timer IS-IS and OSPF throttle their main events SPF computation PRC computation LSP/LSA generation Throttling slows down convergence Not throttling can cause melt-downs Find a compromise The goal is to react fast to changes but then to backoff under constant churn to avoid network meltdown 22

23 Exponential Backoff Timer Extended syntax spf-interval <a> [<b> <c>] <a> seconds between SPF runs (seconds) <b> milliseconds between first trigger and SPF <c> milliseconds between first and second SPF Same syntax for prc-interval lsp-gen-interval 23

24 Exponential Backoff Timer Example: spf-interval We decide to run an SPF (a) (b) (c) Wait 100 msecs, then run SPF (b=100) Wait at least 1 second before running a second SPF if needed (c = 1000) If we need to run a 3rd SPF, right after, wait at least 2 seconds (c = 2c) Wait at least 4 sec before next SPF, then 8 sec, then 10 sec, 10 sec, (c= MIN(2c, a)) When the network calms down, and there were no triggers for at least twice the minimum interval (20 secs in this example), then go back to fast behavior (after 100 msecs initial wait) 24

25 Incremental SPF (i-spf) Basic Operation We keep the unchanged part of the tree We rebuild only the affected parts of the tree Re-attach affected parts of the tree to the unchanged part of the tree More information is kept in the SPT Have to store and compare current and new information The primary lists we maintain are: Parents List Neighbour List Memory impact for using i-spf (but not significant) Based on the changed information, the SPT is modified in order to reflect the changes 25

26 Incremental SPF R R3 R2 5 R R4 5 R R5 R6 NEW_LSP_LIST: R4-LSA, R6-LSA, ORPHAN_LIST: R6, TENT_LIST: R3(15),R4(15),R5(15), R6(115), R2(10), R3(100), R6(25), R1 R6 PATH_LIST: R1(0), R2(10), R3(15), R4(15), R5(15), R6(25), R6(115), R3 R5 26

27 Incremental (ispf) Gain of incremental SPF depends on how far (topologically) the change happens from the calculating node If the change affects only a small part of the topology, gain is significant we were able to run SPF and update the RT for the 1000 node network in less then 10 ms If the change is close to the calculating node and affect almost the whole topology, there will be no gain in ispf 27

28 FAST CONVERGENCE: Measuring Convergence Time 28

29 Convergence Time Defined T1 Convergence T2 T3 A R1 R2 R3 R4 R5 L R6 B Metric 200 Metric 3 Metric 2 Assume a flow from Src A to Dest C T1: when L dies, the best path is impacted: loss of traffic T2: when the network converges, traffic reaches the destination again Loss of Connectivity for flow AC: T2 T1, called convergence hereafter R7 C 29

30 Prefix Distribution with LoC Convergence time R5 Tmax Ti T Prefix As prefixes are updated in a sequential order, convergence time will be different for each destination that needs a RIB change. LoC for prefix 2000 might be much higher than for prefix 1. 30

31 What Makes This Graph? Convergence time R5 Tmax Ti T Prefix Initial delay (Ti-T1) = Link detection << 10ms (POS p2p) LSP/LSA gen << 10 ms Flooding + propagation = fn (#hops, fiber distance) SPF = f(#nodes, Topology) Slope = (distributed) FIB update time 31

32 LoC-ked in a Formula LoC= Ax+B B = Initial delay A = Rewrite/prefix x = number of (important) prefixes that need to reroute To construct the graph Ax+B, one needs to send traffic to multiple destinations When sending 1000 pps to each src/dst, count the number of lost packets to know the convergence time in milliseconds. 32

33 Reducing Convergence Time Following factors have an impact on Ax + B (example Cisco 12000): PRP better than GRP PRP2 is 2.6x faster than GRP (E3, E4p, E6) better than E2 IP better than MPLS ispf better than full SPF Use latest code 33

34 !Only in ISIS! Reducing Convergence Time with CSCdy18429 Tmax(voip) Ti T1 Tmax(voip) Ti T Before After Voip gateways Loopbacks p2p links (config)# interface e0 (config-if)# isis tag 17 (config-if)# router isis (config-router)# ip route priority high tag 17 Prefix ordering is an important feature to reduce convergence time: Use ISIS tagging to bring a prefix to the beginning of the curve Loopbacks (/32) are automatically ordered after tagged prefixes Without prefix ordering feature, traffic to important destinations could see the worst-case convergence time. Using prefix ordering traffic loss to these prefixes will be significantly reduced because the router will rewrite the FIB entries for these destinations first. 34

35 FAST CONVERGENCE: Design and Configuration 35

36 Components Contributing to Loss of Connectivity (LoC) Connectivity is Lost Whilst: Failure is detected New LSP is originated, propagated, and received SPF is run Routing table/fib is updated LCs are updated BGP recursion is fixed LoC(p) = D + O + QSP + (h * F) + SPF(n) + RIB(p) + DD + CRR 36

37 Design Fundamentals Things to know about your network Total number of nodes, total number of prefixes Link types: Fast link detection on POS, GE p2p Other GE or multi-access needs BFD for fast detection Do we care for loopbacks (/32) and other important traffic? Do we care for node failures or SRLG? Redundancy within areas Reduce number of prefixes: Configure point-to-point for GE Advertise passive only (new design) 37

38 Infrastructure CRS/12k: Full Isolation Control vs Data Plane RP CPU dedicated to IGP/BGP PRP2 is 2.5 faster than GRP LC CPU dedicated to control of the forwarding HW LC CPU protected against any through traffic Optimization of the download to linecards 12.0S/12k: ip cef linecard ipc service-timer 50 IOS-XR, 12k/CRS: optimized by default IOS-XR offers massive control plane scaling distributed processing (drp) 38

39 Infrastructure OS scheduling priority-aware: IOS and IOS-XR low granularity: IOS-XR by default (4ms) IOS: process-max-time 50 (default = 200ms) 39

40 Failure Detection How Fast? POS or DPT or GE with LoS sonet/sdh HW failure detection < 10ms SW time to notify ISIS 31S1: P90 < 10ms, P100 = 50ms Otherwise: BFD 12k/31S1: max 100 session per LC, minimum transmit interval of 50ms and minimum holdtime = 150ms Fast Hello s NOT recommended minimum hold time is 1 second Use BFD instead! 40

41 Failure Detection How Much Control? POS UP=>DN: pos delay trigger line/path <ms> 0m or 60/110ms depending on sonet/sdh protection DN=>UP: 10sec fixed confirmation Carrier-Delay delay between the failure detection/clearance and the interface status change redundant for PoS IOS: default value = 2sec, suggested tuning (0, 10 s of ms) IOS-XR: default = 0ms 41

42 POS: Link Failure Detection t 0 : defect occurs t 2 -t 3 : hold-off for any pos delay triggers t 3 -t 4 : carrier delay t 0 t 1 t 2 t 3 t 4 t 5 t 1 : hardware detects the defect t 4 : int down in IOS t 2 : driver registers defect as a failure t 5 : adjacency down 42

43 Failure Detection - Further Stability IP Event Dampening int foo x/y dampening Immediate signalling of link DOWN information Controlled signalling of link UP information control = if the link status changed frequently in the recent past, even if the lower layers report the link as up, the IP event dampening layer will report the link as down to the L3 clients. This stabilizes the network. Same algorithm as BGP route flap dampening 43

44 IP Event Dampening Algorithm Illustration Actual interface state Maximum penalty Accumulated penalty Suppress threshold Reuse threshold Interface state seen by routing protocols 44

45 Link Failure Detection Assure fast link failure detection while preserving stability: POS: Fast detection, native dampening GE ptp: Fast detection, no native dampening Multi-access: Use BFD! In all cases, configure: Fast hellos not recommended if BFD available Dead interval is 1 second for IS-IS and OSPF (config-if)# ip dampening (config-if)# carrier-delay msec 0 45

46 Point-to-Point GE Back-to-back configuration direct fiber connection with or without optical/dwdm isis network point-to-point command stops DIS election ip ospf network point-to-point command stops DR election Fiber cut => speedy LoS detection no need for fast hellos auto-negotiation ON unidir failure is advertised in the other direction int gig 1/0 carrier-delay msec 0 ip dampening negotiation auto isis network point-to-point ip ospf network point-to-point 46

47 ISIS FC and NSF/SSO When NSF/SSO is included in the design, a good objective is to avoid losing the hello adjacency during a valid switch-over. Testing has indicated that the hold time should not be configured to less than 4 seconds to achieve this (ie. interval 1sec and multiplier 4) This applies to both IS-IS and OSPF 47

48 Advertisement of the Failure How Fast? ISIS/OSPF must regenerate its LSP/LSA and must flood it upon Local changes of adjacency status, prefix connectivity, or redistribution How fast is a regeneration? Under stress, 31S1: P100 < 12ms 48

49 Flooding Does Geography Matter? Number of hops between the failure and the rerouting node is small very rarely larger than 5 Structured Network design leads to failure containment into limited region of the network very rarely larger than 30ms of light propagation Reference: ICI research project - study of a WW SP Ex: SP in UK should account for 5 hops and 15ms of propagation CPU computation is small 31S1: P90 < 2ms per hop, P100 < 50ms per hop Source of flooding delay: Pacing 49

50 LSP/LSA Generation Interval Per node, capture all link failures in one new LSP/LSA Uses exponential back-off timers (IW, max, increment) When one link failure happens at a time, use min IW value When multiple link failures could occur at the same time (SRLG), use time as high as duration to detect all link failures, example 50 ms Increment, guideline is to use 20 ms Max wait: default 5 seconds is ok (config-router)# router isis (config-router)# lsp-gen interval (config-router)# router ospf (config-router)# timers throttle lsa all

51 Flooding When pacing is applied flooding time increases Default pacing is 33 ms Objective is to flood all important LSP/LSAs without delay, hence without pacing. Works different for ISIS vs OSPF ISIS: Pacing is applied on a per LSP basis Pacing timer can be tuned but not recommended because of fast-flood command OSPF: Pacing is applied on a per Update packet basis One update packet may contain multiple LSAs (config-router)# router isis (config-router)# fast-flood <value> (config-router)# router ospf (config-router)# timers pacing flood <ms> 51

52 SPF How Fast? SPT = shortest-path tree the set of the shortest paths from the local node to any remote node Incremental-SPF offers the most optimum computation if leaf change: SPT(new)=SPT(old) if link failure not on the previous SPT: SPT(new)=SPT(old) if link failure on the previous SPT if not local link: we only recompute the part of the old SPT that has been impacted if local link: we recompute the whole SPT router isis ispf level-2 52

53 Measurement: Full SPT Computation PRP1 - wide metric full SPT [ms] y = x R 2 = GRP: ~ 100us / node PRP1: ~ 59us / node PRP2: ~ 45us / node nodes Full SPT computation (wide metric) with Local RIB update 600 nodes => 35 ms i-spf will most of the time be much smaller than this 53

54 Network Convergence Incremental SPF Time it takes to run the SPF with the transit link flap Link flap SPF Time in msec ispf Number of nodes X

55 (i)spf: InitWait, Increment, MaxWait Enable ispf to reduce calculation time Init-wait: When only considering link failures init-wait can be set to min 1 msec When considering node failure, init-wait should be tuned to allow time to receive all LSPs/LSAs from neighbors within init-wait interval: msec Increment, MaxWait: Conservative 50ms, 1000ms (config-router)# router isis (config-router)# ispf (config-router)# spf-interval (config-router)# prc-interval (config-router)# router ospf (config-router)# ispf (config-router)# timers throttle spf

56 RIB/FIB How Fast? The more prefixes in the IGP, the more RIB/FIB updates may be necessary RIB/FIB update is measured on a per entry change and depends on RP cpu speed (PRP2 is 2.5 faster than GRP) IP vs MPLS (MPLS requires more update time per entry) A rule of thumb PRP2, IP2IP: 66 us per entry PRP2, IP2MPLS: 150us per entry 56

57 RIB/FIB How Fast? By default, RIB process (called by IS-IS and OSPF) is responsible for updating the RIB when prefixes are changing Better if ISIS and OSPF update the RIB prefixes directly themselves when their local oif goes down: ip routing protocol purge interface Default behaviour for IOS-XR 57

58 RIB/FIB How Much Control? Prioritization (IS-IS only): 3 priority levels: H, M, L: the most important ( H ) prefixes are updated first, then the important ( M ) prefixes then the rest ( L ) By default, the /32 s are in M and the rest are L Classification based on tags to customize whether a prefix is in H or M or L ISIS: 12.0(27)S and IOS-XR 3.2 interface foo ;; VoIP gateway ip router isis isis tag 17 router isis ip route priority high tag 17 58

59 System Optimizations Lower process-max-time Reduce distribution delay Bring CRR to 0 Other Check memory constraint LCs (config)# service internal (config)# process-max-time 60 (config)# ip cef linecard ipc service-timer 50 (config)# ip cef table loadinfo force (config)# ip routing protocol purge interface 59

60 Optimised OSPF Configuration Example service internal int pos carrier-delay msec 0 ip dampening int gig 1/0 carrier-delay msec 0 ip dampening ospf network point-to-point negotiation auto router ospf 1 ispf timers throttle lsa all timers lsa arrival 20 timers pacing flood 15 timers throttle spf ip routing protocol purge interface process-max-time 60 ip cef linecard ipc service-timer 50 ip cef table loadinfo force ip 60

61 Optimised IS-IS Configuration Example service internal int pos carrier-delay msec 0 ip dampening int gig 1/0 carrier-delay msec 0 ip dampening isis network point-to-point negotiation auto isis tag 17 router isis ip route priority high tag 17 fast-flood ispf prc-interval spf-interval lsp-gen-interval ip routing protocol purge interface process-max-time 60 ip cef linecard ipc service-timer 50 ip cef table loadinfo force 61

62 Conclusion traffic loss (msec) c12k-prp1-eng4p-pre28s-isis-ipip-cpuload-1mppspr60-ipcs50-bgp160-ip2ip-remote-nolb Agilent measurements % % % 300 average % prefix nr 62

63 Conclusion Sub-1s is Conservatively met 500 pref, IP2IP, PRP1/Eng4+ P50 = 200ms and P100 = 350ms IOS-XR has leveraged the FC research project and took the optimized behaviours as default 63

64 Q and A 64

MPLS Core Networks Николай Милованов/Nikolay Milovanov

MPLS Core Networks Николай Милованов/Nikolay Milovanov Tuning Core Routing Protocols Николай Милованов/Nikolay Milovanov Contents ISIS overview ISIS tuning http://niau.org 2 ISIS overview 3 IP routing design requirements Requirements towards the IGP protocols:

More information

Fast IP Convergence. Section 4. Period from when a topology change occurs, to the moment when all the routers have a consistent view of the network.

Fast IP Convergence. Section 4. Period from when a topology change occurs, to the moment when all the routers have a consistent view of the network. Fast IP Convergence Section 4 2899_05_2001_c1 2001, Cisco Systems, Inc. All rights reserved. 1 IP Convergence Convergence Time Period from when a topology change occurs, to the moment when all the routers

More information

RFC2547 Convergence Characterization and Optimization

RFC2547 Convergence Characterization and Optimization RFC2547 Convergence Characterization and Optimization Clarence Filsfils cf@cisco.com Session Number 1 RFC2547 Convergence - Requirement 90%: Typical requirement:

More information

OSPF Convergence Details

OSPF Convergence Details OSPF Convergence Details (C) Herbert Haas 2009/05/02 Introduction In this section we analyze all the more or less "hidden" delays that are required by the OSPF RFCs Our results will be, That standard OSPF

More information

BGP Convergence in much less than a second

BGP Convergence in much less than a second BGP Convergence in much less than a second Clarence Filsfils - cf@cisco.com Presented by Martin Winter - mwinter@cisco.com 1 Down Convergence T1 Down Convergence T2 Default metric = 1 Src R R 20 F Dst

More information

Optimizations for Routing Protocol Stability and Convergence

Optimizations for Routing Protocol Stability and Convergence Optimizations for Routing Protocol Stability and Convergence Brian Daugherty, CSE, CCIE #5879 Higher Education and Research Network Initiatives bdaugher@cisco.com 1 Convergence? con ver gence (k?n-vûr

More information

Routed Fast Convergence and High Availability

Routed Fast Convergence and High Availability Routed Fast Convergence and High Availability Denise Fishburne Abstract This session discusses various mechanisms network engineers can use to improve their network's convergence time and availability,

More information

Routed Fast Convergence and High Availability

Routed Fast Convergence and High Availability Routed Fast Convergence and High Availability Dennis Leung AS Technical Advisor Abstract This session discusses various mechanisms network engineers can use to improve their network's convergence time

More information

MPLS VPN--Inter-AS Option AB

MPLS VPN--Inter-AS Option AB The feature combines the best functionality of an Inter-AS Option (10) A and Inter-AS Option (10) B network to allow a Multiprotocol Label Switching (MPLS) Virtual Private Network (VPN) service provider

More information

Advanced Network Design

Advanced Network Design Advanced Network Design Eugene Odnoralets Routing Protocols Team 23.11.15 2015 Cisco and/or its affiliates. All rights reserved. Introduction 2 23.11.15 2015 Cisco and/or its affiliates. All rights reserved.

More information

IS-IS for ISPs. ISP Workshops. Last updated 25 th August 2015

IS-IS for ISPs. ISP Workshops. Last updated 25 th August 2015 IS-IS for ISPs ISP Workshops Last updated 25 th August 2015 1 Configuring IS-IS in Cisco IOS p Starting IS-IS in Cisco IOS router isis [name] n Where the optional name can specify the name of the ISIS

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

Scaling IGPs in ISP Networks. Philip Smith SANOG 8, Karachi 3rd August 2006

Scaling IGPs in ISP Networks. Philip Smith SANOG 8, Karachi 3rd August 2006 Scaling IGPs in ISP Networks Philip Smith SANOG 8, Karachi 3rd August 2006 Agenda Definition of Scaling IGP Design Tuning OSPF What Does Scaling a Network Mean? Scaling is very important for an SP network

More information

MPLS VPN Inter-AS Option AB

MPLS VPN Inter-AS Option AB First Published: December 17, 2007 Last Updated: September 21, 2011 The feature combines the best functionality of an Inter-AS Option (10) A and Inter-AS Option (10) B network to allow a Multiprotocol

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

Cisco.Actualtests v by.DD.70q

Cisco.Actualtests v by.DD.70q Cisco.Actualtests.642-775.v2012-09-17.by.DD.70q Number: Cisco 642-775 Passing Score: 800 Time Limit: 120 min File Version: Version: 4.1 http://www.gratisexam.com/ Maintaining Cisco Service Provider Routing

More information

Fast convergence project

Fast convergence project Fast convergence project Nicolas DUBOIS FTR&D/DAC nicolas.dubois@francetelecom.com Benoît FONDEVIOLE FTR&D/DAC benoit.fondeviole@francetelecom.com Nicolas MICHEL FTR&D/DAC nicolas.michel@francetelecom.com

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

UNDERSTANDING CONVERGENCE IN MPLS VPN NETWORKS. Mukhtiar A. Shaikh Moiz Moizuddin

UNDERSTANDING CONVERGENCE IN MPLS VPN NETWORKS. Mukhtiar A. Shaikh Moiz Moizuddin UNDERSTANDING CONVERGENCE IN MPLS VPN NETWORKS Mukhtiar A. Shaikh (mshaikh@cisco.com) Moiz Moizuddin (mmoizudd@cisco.com) 1 Agenda Introduction Convergence Definition Expected (Theoretical) Convergence

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

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

IS-IS Commands. distribute-list in (IS-IS), on page 25 fast-reroute per-prefix (IS-IS), on page 29

IS-IS Commands. distribute-list in (IS-IS), on page 25 fast-reroute per-prefix (IS-IS), on page 29 This module describes the commands used to configure and monitor the Intermediate System-to-Intermediate System (IS-IS). For detailed information about IS-IS concepts, configuration tasks, and examples,

More information

IS-IS Configuration Commands. Generic Commands. shutdown IS-IS XRS Routing Protocols Guide Page 533. Syntax [no] shutdown

IS-IS Configuration Commands. Generic Commands. shutdown IS-IS XRS Routing Protocols Guide Page 533. Syntax [no] shutdown IS-IS IS-IS Configuration Commands Generic Commands shutdown Syntax [no] shutdown config>router>isis>interface ip-int-name config>router>isis>if>level level-number config>router>isis>if>segment-routing

More information

Multi Topology Routing Truman Boyes

Multi Topology Routing Truman Boyes Multi Topology Routing Truman Boyes truman@juniper.net Copyright 2008 Juniper Networks, Inc. 1 Traffic Engineering Choices Today: IGP Metric Costing RSVP TE end to end Policy based routing EROs, Offline

More information

Detailed Analysis of ISIS Routing Protocol on the Qwest Backbone:

Detailed Analysis of ISIS Routing Protocol on the Qwest Backbone: Detailed Analysis of ISIS Routing Protocol on the Qwest Backbone: A recipe for subsecond ISIS convergence Cengiz Alaettinoglu cengiz@packetdesign.com Stephen Casner casner@packetdesign.com Packet Design

More information

Connecting to a Service Provider Using External BGP

Connecting to a Service Provider Using External BGP Connecting to a Service Provider Using External BGP First Published: May 2, 2005 Last Updated: August 21, 2007 This module describes configuration tasks that will enable your Border Gateway Protocol (BGP)

More information

HP 5920 & 5900 Switch Series

HP 5920 & 5900 Switch Series HP 5920 & 5900 Switch Series Layer 3 IP Routing Configuration Guide Part number: 5998-5307a Software version: Release 23xx Document version: 6W101-20150320 Legal and notice information Copyright 2015 Hewlett-Packard

More information

Configuring Internal BGP Features

Configuring Internal BGP Features This module describes how to configure internal Border Gateway Protocol (BGP) features. Internal BGP (ibgp) refers to running BGP on networking devices within one autonomous system. BGP is an interdomain

More information

Introduction. Keith Barker, CCIE #6783. YouTube - Keith6783.

Introduction. Keith Barker, CCIE #6783. YouTube - Keith6783. Understanding, Implementing and troubleshooting BGP 01 Introduction http:// Instructor Introduction Keith Barker, CCIE #6783 CCIE Routing and Switching 2001 CCIE Security 2003 kbarker@ine.com YouTube -

More information

Configuring BGP community 43 Configuring a BGP route reflector 44 Configuring a BGP confederation 44 Configuring BGP GR 45 Enabling Guard route

Configuring BGP community 43 Configuring a BGP route reflector 44 Configuring a BGP confederation 44 Configuring BGP GR 45 Enabling Guard route Contents Configuring BGP 1 Overview 1 BGP speaker and BGP peer 1 BGP message types 1 BGP path attributes 2 BGP route selection 6 BGP route advertisement rules 6 BGP load balancing 6 Settlements for problems

More information

OSPF Sham-Link Support for MPLS VPN

OSPF Sham-Link Support for MPLS VPN Feature History Release Modification 12.2(8)T This feature was introduced. This module describes how to configure and use a sham-link to connect Virtual Private Network (VPN) client sites that run the

More information

Protecting an EBGP peer when memory usage reaches level 2 threshold 66 Configuring a large-scale BGP network 67 Configuring BGP community 67

Protecting an EBGP peer when memory usage reaches level 2 threshold 66 Configuring a large-scale BGP network 67 Configuring BGP community 67 Contents Configuring BGP 1 Overview 1 BGP speaker and BGP peer 1 BGP message types 1 BGP path attributes 2 BGP route selection 6 BGP route advertisement rules 6 BGP load balancing 6 Settlements for problems

More information

IPv6 Commands: sn to v

IPv6 Commands: sn to v IPv6 Commands: sn to v sntp address, page 3 spd extended-headroom, page 5 spd headroom, page 7 spf-interval (IPv6), page 9 split-horizon (IPv6 RIP), page 11 standby ipv6, page 13 summary-prefix (IPv6 IS-IS),

More information

Configuration prerequisites 45 Configuring BGP community 45 Configuring a BGP route reflector 46 Configuring a BGP confederation 46 Configuring BGP

Configuration prerequisites 45 Configuring BGP community 45 Configuring a BGP route reflector 46 Configuring a BGP confederation 46 Configuring BGP Contents Configuring BGP 1 Overview 1 BGP speaker and BGP peer 1 BGP message types 1 BGP path attributes 2 BGP route selection 6 BGP route advertisement rules 6 BGP load balancing 6 Settlements for problems

More information

Configuring BGP. Cisco s BGP Implementation

Configuring BGP. Cisco s BGP Implementation Configuring BGP This chapter describes how to configure Border Gateway Protocol (BGP). For a complete description of the BGP commands in this chapter, refer to the BGP s chapter of the Network Protocols

More information

IS-IS Operation. SANOG July, 2017 Gurgaon, INDIA

IS-IS Operation. SANOG July, 2017 Gurgaon, INDIA IS-IS Operation SANOG 30 14-18 July, 2017 Gurgaon, INDIA IS-IS Intermediate System to Intermediate System Designed for OSI networks to carry CLNS traffic (RFC1142 - ISO 10859) CLNP was to OSI, what IPv4/IPv6

More information

MPLS VPN Carrier Supporting Carrier Using LDP and an IGP

MPLS VPN Carrier Supporting Carrier Using LDP and an IGP MPLS VPN Carrier Supporting Carrier Using LDP and an IGP Multiprotocol Label Switching (MPLS) Virtual Private Network (VPN) Carrier Supporting Carrier (CSC) enables one MPLS VPN-based service provider

More information

HPE FlexNetwork 5510 HI Switch Series

HPE FlexNetwork 5510 HI Switch Series HPE FlexNetwork 5510 HI Switch Series Layer 3 IP Routing Configuration Guide Part number: 5200-0077a Software version: Release 11xx Document version: 6W101-20161221 Copyright 2015, 2016 Hewlett Packard

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

BGP Commands on Cisco ASR 9000 Series Router

BGP Commands on Cisco ASR 9000 Series Router This module describes the commands used to configure and monitor Border Gateway Protocol (BGP) on Cisco ASR 9000 Series Aggregation Services Routers using Cisco IOS XR software. The commands in this module

More information

MPLS VPN Carrier Supporting Carrier IPv4 BGP Label Distribution

MPLS VPN Carrier Supporting Carrier IPv4 BGP Label Distribution MPLS VPN Carrier Supporting Carrier IPv4 BGP Label Distribution This feature lets you configure your carrier supporting carrier network to enable Border Gateway Protocol (BGP) to transport routes and Multiprotocol

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

Configuring Cisco NSF with SSO Supervisor Engine Redundancy

Configuring Cisco NSF with SSO Supervisor Engine Redundancy CHAPTER 9 Configuring Cisco NSF with SSO Supervisor Engine Redundancy This chapter describes how to configure supervisor engine redundancy using Cisco nonstop forwarding (NSF) with stateful switchover

More information

MPLS VPN Carrier Supporting Carrier IPv4 BGP Label Distribution

MPLS VPN Carrier Supporting Carrier IPv4 BGP Label Distribution MPLS VPN Carrier Supporting Carrier IPv4 BGP Label Distribution This feature enables you to configure your carrier supporting carrier network to enable Border Gateway Protocol (BGP) to transport routes

More information

Reducing Failure Detection Times in IS-IS Networks

Reducing Failure Detection Times in IS-IS Networks Reducing Failure Detection Times in IS-IS Networks This module describes how to customize IS-IS configuration to help you achieve fast convergence in your network. This module describes how to configure

More information

ECMP Load Balancing. MPLS: Layer 3 VPNs Configuration Guide, Cisco IOS XE Release 3S (Cisco ASR 900 Series) 1

ECMP Load Balancing. MPLS: Layer 3 VPNs Configuration Guide, Cisco IOS XE Release 3S (Cisco ASR 900 Series) 1 Equal-cost multi-path routing (ECMP) is a routing strategy where next-hop packet forwarding to a single destination can occur over multiple "best paths" which tie for top place in routing metric calculations.

More information

Implementing MPLS Label Distribution Protocol

Implementing MPLS Label Distribution Protocol The Multiprotocol Label Switching (MPLS) is a standards-based solution driven by the Internet Engineering Task Force (IETF) that was devised to convert the Internet and IP backbones from best-effort networks

More information

MPLS VPN Inter-AS IPv4 BGP Label Distribution

MPLS VPN Inter-AS IPv4 BGP Label Distribution MPLS VPN Inter-AS IPv4 BGP Label Distribution This feature enables you to set up a Virtual Private Network (VPN) service provider network so that the autonomous system boundary routers (ASBRs) exchange

More information

log-adjacency-changes (IS-IS), on page 3 lsp-full suppress, on page 4 lsp-refresh-interval (IS-IS), on page 9

log-adjacency-changes (IS-IS), on page 3 lsp-full suppress, on page 4 lsp-refresh-interval (IS-IS), on page 9 log-adjacency-changes (IS-IS), on page 3 lsp-full suppress, on page 4 lsp-gen-interval (IPX), on page 6 lsp-gen-interval (IS-IS), on page 7 lsp-refresh-interval (IS-IS), on page 9 max-area-addresses, on

More information

Ch. 5 Maintaining and Troubleshooting Routing Solutions. Net412- Network troubleshooting

Ch. 5 Maintaining and Troubleshooting Routing Solutions. Net412- Network troubleshooting Ch. 5 Maintaining and Troubleshooting Routing Solutions Net412- Network troubleshooting Troubleshooting Routing Network Layer Connectivity EIGRP OSPF 2 Network Connectivity Just like we did when we looked

More information

BRKRST Cisco and/or its affiliates. All rights reserved. Cisco Public

BRKRST Cisco and/or its affiliates. All rights reserved. Cisco Public Deploying OSPF in a Large-Scale Networks 2 Agenda Market Segments Service Provider Deployments Enterprise Deployments Design Best Practices Fast Convergence 3 Market Segments Market Segments Service Providers

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

Bidirectional Forwarding Detection

Bidirectional Forwarding Detection Bidirectional Forwarding Detection This document describes how to enable the Bidirectional Forwarding Detection (BFD) protocol. BFD is a detection protocol designed to provide fast forwarding path failure

More information

BGP Support for Next-Hop Address Tracking

BGP Support for Next-Hop Address Tracking The feature is enabled by default when a supporting Cisco software image is installed. BGP next-hop address tracking is event driven. BGP prefixes are automatically tracked as peering sessions are established.

More information

Back to basics J. Addressing is the key! Application (HTTP, DNS, FTP) Application (HTTP, DNS, FTP) Transport. Transport (TCP/UDP) Internet (IPv4/IPv6)

Back to basics J. Addressing is the key! Application (HTTP, DNS, FTP) Application (HTTP, DNS, FTP) Transport. Transport (TCP/UDP) Internet (IPv4/IPv6) Routing Basics Back to basics J Application Presentation Application (HTTP, DNS, FTP) Data Application (HTTP, DNS, FTP) Session Transport Transport (TCP/UDP) E2E connectivity (app-to-app) Port numbers

More information

Cisco CISCO Configuring BGP on Cisco Routers Exam. Practice Test. Version

Cisco CISCO Configuring BGP on Cisco Routers Exam. Practice Test. Version Cisco 642-661 CISCO 642-661 Configuring BGP on Cisco Routers Exam Practice Test Version 3.3 QUESTION NO: 1 Why can using the ip tcp path-mtu-discovery command improve BGP convergence? A. Smaller MSS sizes

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

Real4Test. Real IT Certification Exam Study materials/braindumps

Real4Test.   Real IT Certification Exam Study materials/braindumps Real4Test http://www.real4test.com Real IT Certification Exam Study materials/braindumps Exam : 400-101 Title : CCIE Routing and Switching Written Exam v5.1 Vendor : Cisco Version : DEMO Get Latest & Valid

More information

MPLS VPN Carrier Supporting Carrier Using LDP and an IGP

MPLS VPN Carrier Supporting Carrier Using LDP and an IGP MPLS VPN Carrier Supporting Carrier Using LDP and an IGP Last Updated: December 14, 2011 Multiprotocol Label Switching (MPLS) Virtual Private Network (VPN) Carrier Supporting Carrier (CSC) enables one

More information

RFC2547 Convergence: Characterization and Optimization

RFC2547 Convergence: Characterization and Optimization RFC2547 Convergence: Characterization and Optimization Clarence Filsfils cf@cisco.com Session Number 1 RFC2547 Convergence - Requirement < 10s < 5s < 3s < 1s < 250ms < 50ms 2 RFC2547 what is possible Once

More information

BGP Best External. Finding Feature Information

BGP Best External. Finding Feature Information The feature provides the network with a backup external route to avoid loss of connectivity of the primary external route. The feature advertises the most preferred route among those received from external

More information

Chapter 7: Routing Dynamically. Routing & Switching

Chapter 7: Routing Dynamically. Routing & Switching Chapter 7: Routing Dynamically Routing & Switching The Evolution of Dynamic Routing Protocols Dynamic routing protocols used in networks since the late 1980s Newer versions support the communication based

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

BGP Commands: M through N

BGP Commands: M through N match additional-paths advertise-set, on page 3 match as-path, on page 6 match community, on page 8 match extcommunity, on page 10 match local-preference, on page 12 match policy-list, on page 14 match

More information

Alcatel-lucent EXAM - 4A Alcatel-Lucent Interior Routing Protocols and High Availability. Buy Full Product.

Alcatel-lucent EXAM - 4A Alcatel-Lucent Interior Routing Protocols and High Availability. Buy Full Product. Alcatel-lucent EXAM - 4A0-101 Alcatel-Lucent Interior Routing Protocols and High Availability Buy Full Product http://www.examskey.com/4a0-101.html Examskey Alcatel-lucent 4A0-101 exam demo product is

More information

IP Fast Reroute Applicability. Pierre Francois Institute IMDEA Networks

IP Fast Reroute Applicability. Pierre Francois Institute IMDEA Networks IP Fast Reroute Applicability Pierre Francois Institute IMDEA Networks Pierre.Francois@imdea.org Agenda IGP (Fast) Convergence IGP Fast Reroute (Hitless maintenance operations) IGP Fast convergence Pushing

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

ISIS - SR: uloop Avoidance

ISIS - SR: uloop Avoidance The feature extends the ISIS Local Microloop Protection feature thereby preventing the occurrences of microloops during network convergence after a link-down event or link-up event. Prerequisites for,

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

Routing Basics. SANOG July, 2017 Gurgaon, INDIA

Routing Basics. SANOG July, 2017 Gurgaon, INDIA Routing Basics SANOG 30 14-18 July, 2017 Gurgaon, INDIA Back to basics J Application Presentation Application (HTTP, DNS, FTP) Data Application (HTTP, DNS, FTP) Session Transport Transport (TCP/UDP) E2E

More information

Internet Routing Basics

Internet Routing Basics Internet Routing Basics Back to basics J Application Presentation Application (HTTP, DNS, FTP) Data Application (HTTP, DNS, FTP) Session Transport Transport (TCP/UDP) E2E connectivity (app-to-app) Port

More information

Configuring MPLS, MPLS VPN, MPLS OAM, and EoMPLS

Configuring MPLS, MPLS VPN, MPLS OAM, and EoMPLS CHAPTER 43 Configuring MPLS, MPLS VPN, MPLS OAM, and EoMPLS This chapter describes how to configure multiprotocol label switching (MPLS) and Ethernet over MPLS (EoMPLS) on the Cisco ME 3800X and ME 3600X

More information

Techniques and Protocols for Improving Network Availability

Techniques and Protocols for Improving Network Availability Techniques and Protocols for Improving Network Availability Don Troshynski dtroshynski@avici.com February 26th, 2004 Outline of Talk The Problem Common Convergence Solutions An Advanced Solution: RAPID

More information

Exam Questions 4A0-101

Exam Questions 4A0-101 Exam Questions 4A0-101 Alcatel-Lucent Interior Routing Protocols and High Availability https://www.2passeasy.com/dumps/4a0-101/ 1.When a router receives an IP packet, but does not find a match in the routing

More information

Why dynamic route? (1)

Why dynamic route? (1) Routing Why dynamic route? (1) Static route is ok only when Network is small There is a single connection point to other network No redundant route 2 Why dynamic route? (2) Dynamic Routing Routers update

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

mpls ldp atm vc-merge through mpls static binding ipv4

mpls ldp atm vc-merge through mpls static binding ipv4 mpls ldp atm vc-merge through mpls static binding ipv4 mpls ldp atm vc-merge, page 3 mpls ldp autoconfig, page 5 mpls ldp backoff, page 7 mpls ldp discovery, page 9 mpls ldp discovery transport-address,

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

CHAPTER 4: ROUTING DYNAMIC. Routing & Switching

CHAPTER 4: ROUTING DYNAMIC. Routing & Switching CHAPTER 4: ROUTING DYNAMIC Routing & Switching CHAPTER4 4.1 Dynamic Routing Protocols 4.2 Distance Vector Dynamic Routing 4.3 RIP and RIPng Routing 4.4 Link-State Dynamic Routing 4.5 The Routing Table

More information

JN0-343 Q&As. Juniper Networks Certified Internet Specialist (JNCIS-ENT) Pass Juniper JN0-343 Exam with 100% Guarantee

JN0-343 Q&As. Juniper Networks Certified Internet Specialist (JNCIS-ENT) Pass Juniper JN0-343 Exam with 100% Guarantee JN0-343 Q&As Juniper Networks Certified Internet Specialist (JNCIS-ENT) Pass Juniper JN0-343 Exam with 100% Guarantee Free Download Real Questions & Answers PDF and VCE file from: 100% Passing Guarantee

More information

Configuring Advanced BGP

Configuring Advanced BGP CHAPTER 6 This chapter describes how to configure advanced features of the Border Gateway Protocol (BGP) on the Cisco NX-OS switch. This chapter includes the following sections: Information About Advanced

More information

Juniper JN0-647 Exam. Volume: 65 Questions. Question: 1 Which protocol is a multicast routing protocol? A. OSPF B. BGP C. PIM D. IS-IS.

Juniper JN0-647 Exam. Volume: 65 Questions. Question: 1 Which protocol is a multicast routing protocol? A. OSPF B. BGP C. PIM D. IS-IS. Volume: 65 Questions Question: 1 Which protocol is a multicast routing protocol? A. OSPF B. BGP C. PIM D. IS-IS Answer: C Question: 2 Referring to the exhibit, how is R1 learning the route from R2? A.

More information

HP A5820X & A5800 Switch Series MPLS. Configuration Guide. Abstract

HP A5820X & A5800 Switch Series MPLS. Configuration Guide. Abstract HP A5820X & A5800 Switch Series MPLS Configuration Guide Abstract This document describes the software features for the HP 5820X & 5800 Series products and guides you through the software configuration

More information

Routing Configuration Guide, Cisco IOS XE Everest a (Catalyst 9300 Switches)

Routing Configuration Guide, Cisco IOS XE Everest a (Catalyst 9300 Switches) Routing Configuration Guide, Cisco IOS XE Everest 16.5.1a (Catalyst 9300 Switches) First Published: 2017-06-20 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA

More information

Ravi Chandra cisco Systems Cisco Systems Confidential

Ravi Chandra cisco Systems Cisco Systems Confidential BGP4 1 Ravi Chandra cisco Systems 0799_04F7_c2 Cisco Systems Confidential 2 Border Gateway Protocol (BGP) Introduction to BGP BGP Peer Relationship BGP Attributes Applying Policy with BGP Putting it all

More information

internet technologies and standards

internet technologies and standards Institute of Telecommunications Warsaw University of Technology internet technologies and standards Piotr Gajowniczek BGP (Border Gateway Protocol) structure of the Internet Tier 1 ISP Tier 1 ISP Google

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

Configuring CRS-1 Series Virtual Interfaces

Configuring CRS-1 Series Virtual Interfaces Configuring CRS-1 Series Virtual Interfaces A virtual interface is defined as representing a logical packet switching entity within the Cisco CRS-1 Series router. Virtual Interfaces have a global scope

More information

BGP Route Reflector Commands

BGP Route Reflector Commands This chapter provides details of the commands used for configuring Border Gateway Protocol (BGP) Route Reflector (RR). address-family (BGP), on page 2 keychain, on page 5 neighbor (BGP), on page 7 remote-as

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

Nexus 9000/3000 Graceful Insertion and Removal (GIR)

Nexus 9000/3000 Graceful Insertion and Removal (GIR) White Paper Nexus 9000/3000 Graceful Insertion and Removal (GIR) White Paper September 2016 2016 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public Information. Page 1 of 21

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

IPv6 Switching: Provider Edge Router over MPLS

IPv6 Switching: Provider Edge Router over MPLS Multiprotocol Label Switching (MPLS) is deployed by many service providers in their IPv4 networks. Service providers want to introduce IPv6 services to their customers, but changes to their existing IPv4

More information

Configure SR-TE Policies

Configure SR-TE Policies This module provides information about segment routing for traffic engineering (SR-TE) policies, how to configure SR-TE policies, and how to steer traffic into an SR-TE policy. About SR-TE Policies, page

More information

Segment Routing On Demand Next Hop for L3/L3VPN

Segment Routing On Demand Next Hop for L3/L3VPN Segment Routing On Demand Next Hop for L3/L3VPN When redistributing routing information across domains, provisioning of multi-domain services (L2VPN & L3VPN) has its own complexity and scalability issues.

More information

MPLS VPN Carrier Supporting Carrier

MPLS VPN Carrier Supporting Carrier MPLS VPN Carrier Supporting Carrier Feature History Release 12.0(14)ST 12.0(16)ST 12.2(8)T 12.0(21)ST 12.0(22)S 12.0(23)S Modification This feature was introduced in Cisco IOS Release 12.0(14)ST. Support

More information

Introduction to Segment Routing

Introduction to Segment Routing Segment Routing (SR) is a flexible, scalable way of doing source routing. Overview of Segment Routing, page 1 How Segment Routing Works, page 2 Examples for Segment Routing, page 3 Benefits of Segment

More information

MPLS VPN Architecture Scaling

MPLS VPN Architecture Scaling MPLS VPN Architecture Scaling Section 2 2001, Cisco Systems, Inc. All rights reserved. 1 Agenda MPLS VPN Single Backbone Architecture MPLS VPN Scalability Elements Sizing Provider Edge () Routers Memory

More information

Examination. ANSWERS IP routning på Internet och andra sammansatta nät, DD2491 IP routing in the Internet and other complex networks, DD2491

Examination. ANSWERS IP routning på Internet och andra sammansatta nät, DD2491 IP routing in the Internet and other complex networks, DD2491 Examination ANSWERS IP routning på Internet och andra sammansatta nät, DD2491 IP routing in the Internet and other complex networks, DD2491 Date: October 21st 2008 10:00 13:00 a) No help material is allowed

More information