summaryrefslogtreecommitdiff
path: root/tests/topotests/bgp_oad/r3/frr.conf
diff options
context:
space:
mode:
authorRuss White <russ@riw.us>2025-02-04 11:45:36 -0500
committerGitHub <noreply@github.com>2025-02-04 11:45:36 -0500
commit18201a2c3bf9c69624d9fd1693c42537fe06a297 (patch)
tree836ea45bec540fb86f54df5032b63bd71713f175 /tests/topotests/bgp_oad/r3/frr.conf
parentc28079c9db210e69cb39d083a4f0f87ba5ed7628 (diff)
parentfa438172d868b0da4c99cd972356dc8ed9f1f016 (diff)
Merge pull request #18012 from FRRouting/mergify/bp/stable/10.0/pr-17896
bgpd: Send non-transitive extended communities from/to OAD peers (backport #17896)
Diffstat (limited to 'tests/topotests/bgp_oad/r3/frr.conf')
-rw-r--r--tests/topotests/bgp_oad/r3/frr.conf6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/topotests/bgp_oad/r3/frr.conf b/tests/topotests/bgp_oad/r3/frr.conf
index 02dd5adfe1..164267d74d 100644
--- a/tests/topotests/bgp_oad/r3/frr.conf
+++ b/tests/topotests/bgp_oad/r3/frr.conf
@@ -7,12 +7,14 @@ int r3-eth0
!
router bgp 65003
no bgp ebgp-requires-policy
+ no bgp network import-check
neighbor 192.168.2.2 remote-as external
neighbor 192.168.2.2 timers 1 3
neighbor 192.168.2.2 timers connect 1
neighbor 192.168.2.2 oad
!
address-family ipv4 unicast
+ network 10.10.10.20/32 route-map static
redistribute connected route-map connected
exit-address-family
!
@@ -20,3 +22,7 @@ route-map connected permit 10
set local-preference 123
set metric 123
!
+route-map static permit 10
+ set extcommunity bandwidth 100 non-transitive
+exit
+!