diff --git a/test_bgp_as_wide_bgp_identifier.py b/test_bgp_as_wide_bgp_identifier.py index af92e26..36335e8 100644 --- a/test_bgp_as_wide_bgp_identifier.py +++ b/test_bgp_as_wide_bgp_identifier.py @@ -57,15 +57,20 @@ class Configs(FRRConfigs): no bgp ebgp-requires-policy neighbor 192.168.255.1 remote-as 65002 neighbor 192.168.255.1 timers 3 10 + neighbor 192.168.255.1 timers connect 1 ! #% elif router.name == 'r2' router bgp 65002 bgp router-id 10.10.10.10 no bgp ebgp-requires-policy neighbor 192.168.255.2 remote-as 65001 + neighbor 192.168.255.2 passive neighbor 192.168.255.2 timers 3 10 + neighbor 192.168.255.2 timers connect 1 neighbor 192.168.255.3 remote-as 65002 + neighbor 192.168.255.3 passive neighbor 192.168.255.3 timers 3 10 + neighbor 192.168.255.3 timers connect 1 ! #% elif router.name == 'r3' router bgp 65002 @@ -73,6 +78,7 @@ class Configs(FRRConfigs): no bgp ebgp-requires-policy neighbor 192.168.255.1 remote-as 65002 neighbor 192.168.255.1 timers 3 10 + neighbor 192.168.255.1 timers connect 1 ! #% endif #% endblock diff --git a/test_bgp_default_originate_route_map_match_set.py b/test_bgp_default_originate_route_map_match_set.py index 2ba207a..0236c15 100644 --- a/test_bgp_default_originate_route_map_match_set.py +++ b/test_bgp_default_originate_route_map_match_set.py @@ -57,6 +57,7 @@ class Configs(FRRConfigs): router bgp 65001 no bgp ebgp-requires-policy neighbor {{ routers.r1.ifaces[0].ip4[0].ip }} remote-as 65000 + neighbor {{ routers.r1.ifaces[0].ip4[0].ip }} passive neighbor {{ routers.r1.ifaces[0].ip4[0].ip }} timers 3 10 address-family ipv4 unicast redistribute connected @@ -65,6 +66,7 @@ class Configs(FRRConfigs): router bgp 65000 no bgp ebgp-requires-policy neighbor {{ routers.r2.ifaces[0].ip4[0].ip }} remote-as 65001 + neighbor {{ routers.r2.ifaces[0].ip4[0].ip }} timers connect 1 neighbor {{ routers.r2.ifaces[0].ip4[0].ip }} timers 3 10 address-family ipv4 unicast redistribute connected diff --git a/test_bgp_minimum_holdtime.py b/test_bgp_minimum_holdtime.py index a83faca..7ad9fae 100644 --- a/test_bgp_minimum_holdtime.py +++ b/test_bgp_minimum_holdtime.py @@ -57,13 +57,15 @@ class Configs(FRRConfigs): no bgp ebgp-requires-policy neighbor 192.168.255.1 remote-as 65000 neighbor 192.168.255.1 timers 3 10 + neighbor 192.168.255.1 passive ! #% elif router.name == 'r1' router bgp 65000 bgp minimum-holdtime 20 neighbor 192.168.255.2 remote-as 65001 neighbor 192.168.255.2 timers 3 10 - neighbor 192.168.255.2 timers connect 10 + neighbor 192.168.255.2 timers connect 1 + ## this test will fail if r1 is passive! ! #% endif #% endblock