frr/tests/topotests/bgp_aggregate_address_topo1/r1/bgpd.conf
Daniel Baumann 3124f89aed
Adding upstream version 10.1.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-05 10:03:58 +01:00

30 lines
868 B
Text

! debug bgp updates
!
access-list acl-sup-one seq 5 permit 192.168.2.1/32
access-list acl-sup-one seq 10 deny any
!
access-list acl-sup-two seq 5 permit 192.168.2.2/32
access-list acl-sup-two seq 10 deny any
!
access-list acl-sup-three seq 5 permit 192.168.2.3/32
access-list acl-sup-three seq 10 deny any
!
route-map rm-sup-one permit 10
match ip address acl-sup-one
!
route-map rm-sup-two permit 10
match ip address acl-sup-two
!
router bgp 65000
no bgp ebgp-requires-policy
neighbor 10.0.0.2 remote-as 65001
neighbor 10.0.0.2 timers 3 10
neighbor 10.0.1.2 remote-as internal
neighbor 10.0.1.2 timers 3 10
address-family ipv4 unicast
redistribute connected
aggregate-address 192.168.0.0/24 matching-MED-only
aggregate-address 192.168.1.0/24 matching-MED-only
aggregate-address 192.168.2.0/24 suppress-map rm-sup-one
exit-address-family
!