Router Labs Home
Home

Tutorials

BGP4 - Aggreagation

BGP4 - Aggreagation with Options

OSPF - First Steps

OSPF - 2 Areas

OSPF - Area Range Command

OSPF - Default Originate Always

OSPF - Redistribution

RIPv2 - First Steps

RIPv2 - Authentication

RIPv2 - Offset List   NEW

PPP - Authentication CHAP 1

Routing Documentation

Cisco Adminstrative Distance

Juniper Protocol Preference

Well Known Multicast Groups

RFC Overview

BGP - Route Aggreagation with Options - Part 4

4 Routers in star topology for BGP, IPV4, Aggregation
The BGP table of R3 has the same prefixes as the table of R4. This is because the "suppress-map" command is valid for all neighbors, not just one neighbor. To individually change the BGP tables on a per neighbor basis you have to suppress all prefixes you want to remove from any neighbor table and unsuppress on a per neighbor basis.

In this turorial R3 should see the 10.10.40.0/24 prefix, but not the prefixes with an odd 3rd octet. The prefix-list for the unsuppress-map is the same prerix-list we used in the last example, where the routes where suppressed.

ip prefix-list SUPP seq 5 permit 10.10.40.0/24

R2(config)#route-map UNSUPP permit 10
R2(config-route-map)#match ip address prefix-list SUPP
R2(config-route-map)#end
The new route-map is applied to the neighbor 192.168.100.6 (R3).
R2#configure terminal
R2(config)#router bgp 100
R2(config-router)#neighbor 192.168.100.6 unsuppress-map UNSUPP
R2(config-router)#end
R2#clear ip bgp *


R3#show ip bgp
BGP table version is 19, local router ID is 172.17.0.3
Status codes: s suppressed, d damped, h history, * valid, > best, i - internal,
              r RIB-failure, S Stale
Origin codes: i - IGP, e - EGP, ? - incomplete

   Network          Next Hop            Metric LocPrf Weight Path
*> 10.10.0.0/16     192.168.100.5            0             0 100 i
*> 10.10.10.0/24    192.168.100.5                          0 100 80 1000 2000 3000 i
*> 10.10.20.0/24    192.168.100.5                          0 100 80 777 888 999 i
*> 10.10.30.0/24    192.168.100.5                          0 100 80 i
*> 10.10.40.0/24    192.168.100.5                          0 100 80 i
*> 10.10.50.0/24    192.168.100.5                          0 100 80 i
The 10.10.40.0/24 is in the BGP table of R3, but not in the BGP table of R4.
R4#show ip bgp
BGP table version is 16, local router ID is 172.17.0.4
Status codes: s suppressed, d damped, h history, * valid, > best, i - internal,
              r RIB-failure, S Stale
Origin codes: i - IGP, e - EGP, ? - incomplete

   Network          Next Hop            Metric LocPrf Weight Path
*> 10.10.0.0/16     192.168.100.9            0             0 100 i
*> 10.10.10.0/24    192.168.100.9                          0 100 80 1000 2000 3000 i
*> 10.10.20.0/24    192.168.100.9                          0 100 80 777 888 999 i
*> 10.10.30.0/24    192.168.100.9                          0 100 80 i
*> 10.10.50.0/24    192.168.100.9                          0 100 80 i
Part 1, Setup
Part 2, Setting the Aggregate
Part 3, Component Routes
Part 5, Modification of Attributes
Part 6, Playing with the AS-SET

Contact


Routerlabs.de is not sponsored by, endorsed by or affiliated with Cisco Systems, Inc. Cisco©, Cisco Systems©, CCNA©, CCDA©, CCDP©, CCNP©, CCVP©, CCSP©, CCIE©, CCDE©, CCSI© and the Cisco Systems logo and the CCIE logo are trademarks or registered trademarks of Cisco Systems, Inc. in the United States and certain other countries. All other trademarks are trademarks of their respective owners.
Bookmark and Share