05-18-2011 05:48 AM - edited 03-04-2019 12:26 PM
Hello,
How do you stop the BGP peer from sending you his complete routing table?
Also, what is the command to see how many routing entries there is related to BGP?
Solved! Go to Solution.
05-18-2011 06:17 AM
Hello Nelson,
1)
you can use a form of input filter if you want to receive only a default route or only a default route + some specific routes
ip prefix-list only-default permit 0.0.0.0/0
route-map REC_DEF_ONLY permit 10
match ip address prefix only-default
router bgp XX
neighbor y.y.y.y route-map REC_DEF_ONLY in
2)
show ip bgp summary
show ip route summary
Hope to help
Giuseppe
05-18-2011 06:17 AM
Hello Nelson,
1)
you can use a form of input filter if you want to receive only a default route or only a default route + some specific routes
ip prefix-list only-default permit 0.0.0.0/0
route-map REC_DEF_ONLY permit 10
match ip address prefix only-default
router bgp XX
neighbor y.y.y.y route-map REC_DEF_ONLY in
2)
show ip bgp summary
show ip route summary
Hope to help
Giuseppe
05-18-2011 06:48 AM
thanks
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide