frr/tests/topotests/bgp_conditional_advertisement/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

31 lines
807 B
Text

!
ip prefix-list CUST seq 5 permit 10.139.224.0/20
ip prefix-list DEFAULT seq 5 permit 0.0.0.0/0
ip prefix-list PL1 seq 5 permit 192.0.2.1/32
!
route-map CUST permit 10
match ip address prefix-list CUST
set community 64671:501
!
route-map RM1 permit 10
match ip address prefix-list PL1
set community 64952:3008
!
route-map DEF permit 10
match ip address prefix-list DEFAULT
set community 64848:3011 65011:200 65013:200
!
router bgp 1
bgp log-neighbor-changes
bgp conditional-advertisement timer 5
no bgp ebgp-requires-policy
neighbor 10.10.10.2 remote-as 2
!
address-family ipv4 unicast
network 0.0.0.0/0 route-map DEF
network 192.0.2.1/32 route-map RM1
network 192.0.2.5/32
redistribute connected route-map CUST
neighbor 10.10.10.2 soft-reconfiguration inbound
exit-address-family
!