Routers in AS 100 w/ peer groups configured on R1 |
R1#show run | section router bgpThis example does not achieve much in the form of easing configuration burden, however, the CPU and memory loads on R1 is somewhat reduced due to it having to process outbound policies only once for all three peers.
router bgp 100
bgp log-neighbor-changes
neighbor PGROUP peer-group
neighbor PGROUP remote-as 100
neighbor 10.0.12.2 peer-group PGROUP
neighbor 10.0.13.3 peer-group PGROUP
neighbor 10.0.14.4 peer-group PGROUP
Imagine the same scenario without peer groups configured and a task to apply an outbound distribute list for all peers landed on your desk. The distribute list would be exactly the same, so you could reuse some of the configuration, but you would still have to apply the distribute list on each neighbor individually - and the router would process them each individually. With peer groups, this would be done once for the configuration and the router would process the outbound policy once and apply it to all peer group members in the update message.
No comments:
Post a Comment