Presentation is loading. Please wait.

Presentation is loading. Please wait.

BGP Deployment & Scalability

Similar presentations


Presentation on theme: "BGP Deployment & Scalability"โ€” Presentation transcript:

1 BGP Deployment & Scalability
Mike Pennington Network Consulting Engineer Cisco Systems, Denver

2 Basic BGP Review

3 Border Gateway Protocol
Routing Protocol used to exchange routing information between networks exterior gateway protocol RFC1771 work in progress to update draft-ietf-idr-bgp4-17.txt Currently Version 4 Runs over TCP

4 BGP Path Vector Protocol Incremental Updates
Many options for policy enforcement Classless Inter Domain Routing (CIDR) Widely used for Internet backbone Autonomous systems

5 Path Vector Protocol BGP is classified as a path vector routing protocol (see RFC 1322) A path vector protocol defines a route as a pairing between a destination and the attributes of the path to that destination. / i AS Path

6 AS-Path Sequence of ASes a route has traversed Loop detection
Apply policy AS 200 AS 100 /16 /16 / / AS 300 AS 400 /16 / / / AS 500

7 AS-Path loop detection
/16 /16 / / AS 300 /16 /16 is not announced to AS100 as AS500 sees that it is originated from AS100, and that AS100 is the neighbouring AS โ€“ loop detection in action AS 500 / / /16 300

8 Autonomous System (AS)
Collection of networks with same routing policy Single routing protocol Usually under single ownership, trust and administrative control

9 BGP Basics AS 100 AS 101 AS 102 BGP speakers are called peers Peering

10 BGP General Operation Learns multiple paths via internal and external BGP speakers Picks the best path and installs in the forwarding table Policies applied by influencing the best path selection

11 External BGP Peering (eBGP)
AS 100 AS 101 C B Between BGP speakers in different AS Should be directly connected Do not run an IGP between eBGP peers

12 Internal BGP Peering (iBGP)
AS 100 D A B E Topology independent Each iBGP speaker must peer with every other iBGP speaker in the AS

13 Internal BGP (iBGP) BGP peer within the same AS
Not required to be directly connected iBGP speakers need to be fully meshed they originate connected networks they do not pass on prefixes learned from other iBGP speakers

14 BGP Attributes

15 What Is an Attribute? Describes the characteristics of prefix
Next Hop AS Path ... ... ... MED Describes the characteristics of prefix Transitive or non-transitive Some are mandatory

16 AS-Path Sequence of ASes a route has traversed Loop detection
Apply policy AS 200 AS 100 /16 /16 / / AS 300 AS 400 /16 / / / AS 500

17 Next Hop Next hop to reach a network
AS 200 A B AS 300 /16 / / Next hop to reach a network Usually a local network is the next hop in eBGP session AS 100 /16 20

18 Next Hop (continued) IGP should carry route to next hops
Recursive route look-up Unlinks BGP from actual physical topology Allows IGP to make intelligent forwarding decision

19 Local Preference AS 100 AS 200 AS 300 AS 400 160.10.0.0/16 D E A B C
500 800 E A B AS 400 / > / C

20 Local Preference Local to an AS โ€“ non-transitive
local preference set to 100 when heard from neighbouring AS Used to influence BGP path selection determines best path for outbound traffic Path with highest local preference wins

21 Multi-Exit Discriminator (MED)
AS 200 C / / A B /24 AS 201

22 Multi-Exit Discriminator
Inter-AS โ€“ non-transitive metric reset to 0 on announcement to next AS Used to convey the relative preference of entry points determines best path for inbound traffic Comparable if paths are from same AS IGP metric can be conveyed as MED

23 MED & IGP Metric set metric-type internal
enable BGP to advertise a MED which corresponds to the IGP metric values changes are monitored (and re-advertised if needed) every 600s bgp dynamic-med-interval <secs>

24 Community BGP attribute Used to group destinations
Represented as two 16bit integers Each destination could be member of multiple communities Community attribute carried across ASโ€™s Useful in applying policies

25 Community ISP 2 AS 400 ISP 1 AS 300 AS 100 AS 200 X E D C A B
/16 /16 300:1 /16 300:1 E AS 400 /16 300:9 D ISP 1 AS 300 C /16 300:1 / :1 A B AS 100 AS 200 /16 /16

26 BGP Deployment Guidelines

27 Recommended BGP commands for everyone
ip bgp-community new-format no auto-summary no synchronization bgp deterministic-med Whatever you do, use of deterministic-med MUST be consistent in your Autonomous System.

28 Other serious considerations
For public peering: filter EBGP routes inbound and outbound Block your own address space inbound Block RFC 1918 space (inbound and outbound) Block DSUA space (inbound and outbound): Use prefix-lists for route-filtering when possible (easier to read than ACLs)

29 Other serious considerations
If you carry a default in the IGP, your BGP next-hops ALWAYS resolve (generally not good) bgp bestpath compare-routerid Restores RFC-compliant path selection; OFF by default to reduce update churn, use with discretion If you have a large BGP network, consider techniques in the next section

30 BGP Scaling Techniques

31 BGP Scaling Techniques
How to scale iBGP mesh beyond a few peers? How to implement new policy without causing flaps and route churning? How to reduce the overhead on the routers?

32 BGP Scaling Techniques
Dynamic reconfiguration Peer groups Route flap damping Route reflectors

33 Soft Reconfiguration Problem:
Hard BGP peer clear required after every policy change because the router does not store prefixes that are denied by a filter Hard BGP peer clearing consumes CPU and affects connectivity for all networks Solution: Soft-reconfiguration

34 Soft Reconfiguration discarded peer normal BGP in process accepted
table received and used BGP table received peer BGP out process

35 Soft Reconfiguration New policy is activated without tearing down and restarting the peering session Per-neighbour basis Use more memory to keep prefixes whose attributes have been changed or have not been accepted

36 Configuring Soft reconfiguration
router bgp 100 neighbor remote-as 101 neighbor route-map infilter in neighbor soft-reconfiguration inbound ! Outbound does not need to be configured ! Then when we change the policy, we issue an exec command clear ip bgp soft [in | out]

37 Managing Policy Changes
clear ip bgp <addr> [soft] [in|out] <addr> may be any of the following x.x.x.x IP address of a peer * all peers ASN all peers in an AS external all external peers peer-group <name> all peers in a peer-group

38 Route Refresh Capability
Facilitates non-disruptive policy changes No configuration is needed No additional memory is used Requires peering routers to support โ€œroute refresh capabilityโ€ โ€“ RFC2918 clear ip bgp x.x.x.x in tells peer to resend full BGP announcement

39 Soft Reconfiguration vs Route Refresh
Use Route Refresh capability if supported find out from โ€œshow ip bgp neighborโ€ uses much less memory Otherwise use Soft Reconfiguration

40 Peer Groups Without peer groups iBGP neighbours receive same update
Large iBGP mesh slow to build Router CPU wasted on repeat calculations Solution โ€“ peer groups! Group peers with same outbound policy Updates are generated once per group

41 Peer Groups - Advantages
Makes configuration easier Makes configuration less prone to error Makes configuration more readable Lower router CPU load iBGP mesh builds more quickly Members can have different inbound policy Can be used for eBGP neighbours too!

42 Configuring Peer Group
router bgp 100 neighbor ibgp-peer peer-group neighbor ibgp-peer remote-as 100 neighbor ibgp-peer update-source loopback 0 neighbor ibgp-peer send-community neighbor ibgp-peer route-map outfilter out neighbor peer-group ibgp-peer neighbor peer-group ibgp-peer neighbor route-map infilter in neighbor peer-group ibgp-peer ! note how has different inbound filter from peer-group !

43 Route Flap Damping Route flap
Going up and down of path or change in attribute BGP WITHDRAW followed by UPDATE = 1 flap eBGP neighbour going down/up is NOT a flap Ripples through the entire Internet Wastes CPU Damping aims to reduce scope of route flap propagation

44 Route Flap Damping (Continued)
Requirements Fast convergence for normal route changes History predicts future behaviour Suppress oscillating routes Advertise stable routes Implementation described in RFC2439

45 Operation Add penalty (1000) for each flap Exponentially decay penalty
Change in attribute gets penalty of 500 Exponentially decay penalty half life determines decay rate Penalty above suppress-limit do not advertise route to BGP peers Penalty decayed below reuse-limit re-advertise route to BGP peers penalty reset to zero when it is half of reuse-limit

46 Operation Penalty Time 4000 Suppress limit 3000 2000 Reuse limit 1000
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1000 2000 3000 4000 Time Penalty Suppress limit Network Announced Re-announced Not Announced

47 Operation Only applied to inbound announcements from eBGP peers
Alternate paths still usable Controlled by: Half-life (default 15 minutes) reuse-limit (default 750) suppress-limit (default 2000) maximum suppress time (default 60 minutes)

48 Configuration Fixed damping Selective and variable damping
router bgp 100 bgp dampening [<half-life> <reuse-value> <suppress-penalty> <maximum suppress time>] Selective and variable damping bgp dampening [route-map <name>] route-map <name> permit 10 match ip address prefix-list FLAP-LIST set dampening [<half-life> <reuse-value> <suppress-penalty> <maximum suppress time>] ip prefix-list FLAP-LIST permit /24 le 32

49 Operation Care required when setting parameters
Penalty must be less than reuse-limit at the maximum suppress time Maximum suppress time and half life must allow penalty to be larger than suppress limit

50 Configuration Examples - ๏ƒป Examples - ๏ƒผ bgp dampening 30 750 3000 60
reuse-limit of 750 means maximum possible penalty is 3000 โ€“ no prefixes suppressed as penalty cannot exceed suppress-limit Examples - ๏ƒผ bgp dampening reuse-limit of 2000 means maximum possible penalty is 8000 โ€“ suppress limit is easily reached

51 Configuration Examples - ๏ƒป Examples - ๏ƒผ bgp dampening 15 500 2500 30
reuse-limit of 500 means maximum possible penalty is 2000 โ€“ no prefixes suppressed as penalty cannot exceed suppress-limit Examples - ๏ƒผ bgp dampening reuse-limit of 750 means maximum possible penalty is 6000 โ€“ suppress limit is easily reached

52 Maths! Maximum value of penalty is
Always make sure that suppress-limit is LESS than max-penalty otherwise there will be no route damping

53 Selective damping based on Variable damping
Enhancements Selective damping based on AS-path, Community, Prefix Variable damping recommendations for ISPs Flap statistics show ip bgp neighbor <x.x.x.x> [dampened-routes | flap-statistics]

54 Scaling iBGP mesh n=1000 ๏ƒž nearly half a million ibgp sessions!
13 Routers ๏ƒž 78 iBGP Sessions! Avoid n(n-1)/2 iBGP mesh n=1000 ๏ƒž nearly half a million ibgp sessions! Two solutions Route reflector โ€“ simpler to deploy and run Confederation โ€“ more complex, corner case benefits

55 Route Reflector: Principle
A AS 100 B C

56 Route Reflector AS 100 Clients Reflectors
Reflector receives path from clients and non-clients Selects best path If best path is from client, reflect to other clients and non-clients If best path is from non-client, reflect to clients only Non-meshed clients Described in RFC2796 Clients Reflectors A B C AS 100

57 Route Reflector Topology
Divide the backbone into multiple clusters At least one route reflector and few clients per cluster Route reflectors are fully meshed Clients in a cluster could be fully meshed Single IGP to carry next hop and local routes

58 Route Reflectors: Loop Avoidance
Originator_ID attribute Carries the RID of the originator of the route in the local AS (created by the RR) Cluster_list attribute The local cluster-id is added when the update is sent by the RR Cluster-id is router-id (address of loopback) Do NOT use bgp cluster-id x.x.x.x

59 Route Reflectors: Redundancy
Multiple RRs can be configured in the same cluster โ€“ not advised! All RRs in the cluster must have the same cluster-id (otherwise it is a different cluster) A router may be a client of RRs in different clusters Common today in ISP networks to overlay two clusters โ€“ redundancy achieved that way ๏‚ฎ Each client has two RRs = redundancy Now weโ€™re recommending against putting redundant RRs in the same cluster, what is the new strategy? Simple leave the Cluster Ids as assigned by the router, and choose the best RR to provide redundancy for a client, as long as you following the โ€œphysical topologyโ€ rule.

60 Route Reflector: Benefits
Solves iBGP mesh problem Packet forwarding is not affected Normal BGP speakers co-exist Multiple reflectors for redundancy Easy migration Multiple levels of route reflectors

61 Configuring a Route Reflector
router bgp 100 neighbor remote-as 100 neighbor route-reflector-client neighbor remote-as 100 neighbor route-reflector-client neighbor remote-as 100 neighbor route-reflector-client

62 62


Download ppt "BGP Deployment & Scalability"

Similar presentations


Ads by Google