Category Archives: CCIE R&S

Border Gateway Protocol (BGP) – Advertising NLRI is Complete!

BGP

I have completed the final videos and quizzes for the latest module on BGP I am recording at CBT Nuggets. Here is a recap of the videos so far!

Border Gateway Protocol (BGP) – Basic Operations (Released Jan 2018)

https://www.cbtnuggets.com/it-training/border-gateway-protocol-basic

  1. An Overview of BGP
  2. BGP Message Types
  3. BGP Message Formats
  4. BGP Neighbor States
  5. BGP Path Attributes
  6. The Origin Attribute
  7. The AS_PATH Attribute
  8. The NEXT_HOP Attribute
  9. BGP Weight
  10. BGP Best Path Selection

Border Gateway Protocol (BGP) – Peerings (Released Feb 2018)

https://www.cbtnuggets.com/it-training/border-gateway-protocol-peerings

  1. eBGP Peerings
  2. Cisco eBGP Peering Example
  3. Juniper eBGP Peering Example
  4. iBGP Peerings
  5. Cisco iBGP Peering Example
  6. Juniper iBGP Peering Example
  7. eBGP Multihop
  8. Using BGP Authentication
  9. Misc. Neighbor Options

Border Gateway Protocol (BGP) – Advertising NLRI (Released June 2018)

https://www.cbtnuggets.com/it-training/border-gateway-protocol-advertising-nlri

  1. The Cisco Network Command
  2. Cisco Troubleshooting for NLRI Reachability
  3. Redistributing NLRI in Cisco BGP
  4. Cisco BGP RIB Failures
  5. BGP Synchronization
  6. Juniper NLRI Advertisement
  7. Static Routes with Multihoming
  8. Redistributing NLRI into IGPs
  9. Using iBGP with a Stub AS
  10. Advertising a Default Route
  11. BGP Aggregation

Border Gateway Protocol (BGP) – Cisco Routing Policy Mechanisms (Releasing July 2018)

  1. An Overview of BGP Routing Policy
  2. The BGP Decision Process
  3. A Routing Policy Example
  4. InQ and OutQ
  5. Cisco IOS BGP Processes
  6. Next Hop Tracker, Event, and the Open Processes
  7. Table Versions
  8. Clearing BGP Sessions
  9. Soft Reconfiguration
  10. Route Refresh

Manual Summarization with BGP on Cisco Routers

BGP

One of the topics that will be featured in my upcoming CBT Nuggets module, Border Gateway Protocol (BGP) – Advertising NLRI, manual route summarization in BGP. This post serves (as well as more to follow) cover the highlights of the video coverage.

There are two methods of performing aggregation with BGP on a Cisco router. You can create a static route that represents the aggregate and then advertise that route using the network command. Or, you can use the aggregate-address command.

Here is an example of the static route approach:

router bgp 65100
   network 192.168.192.0 mask 255.255.248.0
   neighbor 192.168.1.220 remote-as 65200
!
ip classless
ip route 192.168.192.0 255.255.248.0 Null0

Notice how the static route directs to the bit bucket (Null0). This is because it is not an actual network destination. It is an artificial construct to permit the route in the routing table so we can use the network command in BGP. There will be more specific entries in the routing table covered by this advertised summary and the router can follow those instructions. Should all the more specific entries be removed, then the static route has traffic discarded for the summary (this is the desired behavior, typically).

With the aggregate-address command approach, you ensure component routes of the summary exist in the BGP table (thanks to the network statement or redistribution), and the summary address is advertised via BGP. Here is an example:

router bgp 65100
 aggregate-address 192.168.192.0 255.255.248.0 summary-only
 redistribute eigrp 100
 neighbor 192.168.1.220 remote-as 65200

Note that if you forget the summary-only keyword with the aggregate-address command, you will advertise the summary as well as the specific routes. A future post will demonstrate when this approach might be useful.