diff options
| author | Donald Sharp <donaldsharp72@gmail.com> | 2023-08-04 15:44:10 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-04 15:44:10 -0400 |
| commit | d65249aa659966a64f9519bf6e8ddb3e5971e99d (patch) | |
| tree | b10e51b7f79d99d7bef841154bbf485cafc7a16f | |
| parent | a593a319f564c732316e6cc28642e0781e545834 (diff) | |
| parent | 40558baf47ecf7d7253d9c6ba001f6cc5697a4c2 (diff) | |
Merge pull request #14148 from opensourcerouting/fix/tests_bgp_addpath_failing_sometimes
tests: Use a correct syntax for defining keepalive/hold timers
5 files changed, 5 insertions, 5 deletions
diff --git a/tests/topotests/bgp_addpath_best_selected/r5/bgpd.conf b/tests/topotests/bgp_addpath_best_selected/r5/bgpd.conf index 0396cc07b4..f36e2bddd7 100644 --- a/tests/topotests/bgp_addpath_best_selected/r5/bgpd.conf +++ b/tests/topotests/bgp_addpath_best_selected/r5/bgpd.conf @@ -1,5 +1,5 @@ router bgp 65005 - timers 3 10 + timers bgp 3 10 no bgp ebgp-requires-policy neighbor 192.168.2.2 remote-as external neighbor 192.168.2.2 timers connect 5 diff --git a/tests/topotests/bgp_addpath_best_selected/r6/bgpd.conf b/tests/topotests/bgp_addpath_best_selected/r6/bgpd.conf index d9e77b66d6..0d83ef868a 100644 --- a/tests/topotests/bgp_addpath_best_selected/r6/bgpd.conf +++ b/tests/topotests/bgp_addpath_best_selected/r6/bgpd.conf @@ -1,5 +1,5 @@ router bgp 65006 - timers 3 10 + timers bgp 3 10 no bgp ebgp-requires-policy neighbor 192.168.2.2 remote-as external neighbor 192.168.2.2 timers connect 5 diff --git a/tests/topotests/bgp_evpn_vxlan_macvrf_soo_topo1/PE1/bgpd.conf b/tests/topotests/bgp_evpn_vxlan_macvrf_soo_topo1/PE1/bgpd.conf index f839443025..e4d20b9a50 100644 --- a/tests/topotests/bgp_evpn_vxlan_macvrf_soo_topo1/PE1/bgpd.conf +++ b/tests/topotests/bgp_evpn_vxlan_macvrf_soo_topo1/PE1/bgpd.conf @@ -1,5 +1,5 @@ router bgp 65000 - timers 3 9 + timers bgp 3 9 bgp router-id 10.10.10.10 no bgp default ipv4-unicast neighbor 10.30.30.30 remote-as 65000 diff --git a/tests/topotests/bgp_evpn_vxlan_svd_topo1/PE1/bgpd.conf b/tests/topotests/bgp_evpn_vxlan_svd_topo1/PE1/bgpd.conf index 39ac8ca69c..9fb2bd6835 100644 --- a/tests/topotests/bgp_evpn_vxlan_svd_topo1/PE1/bgpd.conf +++ b/tests/topotests/bgp_evpn_vxlan_svd_topo1/PE1/bgpd.conf @@ -1,5 +1,5 @@ router bgp 65000 - timers 3 9 + timers bgp 3 9 bgp router-id 10.10.10.10 no bgp default ipv4-unicast neighbor 10.30.30.30 remote-as 65000 diff --git a/tests/topotests/bgp_evpn_vxlan_topo1/PE1/bgpd.conf b/tests/topotests/bgp_evpn_vxlan_topo1/PE1/bgpd.conf index 991a1e7e56..dbbfc82db9 100644 --- a/tests/topotests/bgp_evpn_vxlan_topo1/PE1/bgpd.conf +++ b/tests/topotests/bgp_evpn_vxlan_topo1/PE1/bgpd.conf @@ -1,5 +1,5 @@ router bgp 65000 - timers 3 9 + timers bgp 3 9 bgp router-id 10.10.10.10 no bgp default ipv4-unicast neighbor 10.30.30.30 remote-as 65000 |
