diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2021-11-23 20:19:05 -0500 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2021-11-23 20:24:08 -0500 |
| commit | bdd3a3ccc864162cd685f9eaf9386e31f2f91f1c (patch) | |
| tree | 7c8f7d455e8b4b56a74f566d6f8c2519d5cd003e | |
| parent | 6e5532187f9e11d10f364fdac9f8e4efb16ff9be (diff) | |
tests: Add aggressive timers to the new route server client test
The new bgp_route_server_client test is not setting the
timers for peers to be fast enough to have the ability
to converge in under 60 seconds if a packet is dropped/missed
at startup. Make the test have the ability to converge
under load
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
| -rw-r--r-- | tests/topotests/bgp_route_server_client/r1/bgpd.conf | 1 | ||||
| -rw-r--r-- | tests/topotests/bgp_route_server_client/r2/bgpd.conf | 2 | ||||
| -rw-r--r-- | tests/topotests/bgp_route_server_client/r3/bgpd.conf | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/tests/topotests/bgp_route_server_client/r1/bgpd.conf b/tests/topotests/bgp_route_server_client/r1/bgpd.conf index af05e49bfa..d6c83079f7 100644 --- a/tests/topotests/bgp_route_server_client/r1/bgpd.conf +++ b/tests/topotests/bgp_route_server_client/r1/bgpd.conf @@ -3,6 +3,7 @@ router bgp 65001 bgp router-id 10.10.10.1 no bgp ebgp-requires-policy neighbor 2001:db8:1::1 remote-as external + neighbor 2001:db8:1::1 timers 3 10 address-family ipv6 unicast redistribute connected neighbor 2001:db8:1::1 activate diff --git a/tests/topotests/bgp_route_server_client/r2/bgpd.conf b/tests/topotests/bgp_route_server_client/r2/bgpd.conf index 6ad7fdf06c..bdcae4a996 100644 --- a/tests/topotests/bgp_route_server_client/r2/bgpd.conf +++ b/tests/topotests/bgp_route_server_client/r2/bgpd.conf @@ -2,7 +2,9 @@ router bgp 65000 view RS bgp router-id 10.10.10.2 no bgp ebgp-requires-policy neighbor 2001:db8:1::2 remote-as external + neighbor 2001:db8:1::2 timers 3 10 neighbor 2001:db8:3::2 remote-as external + neighbor 2001:db8:3::2 timers 3 10 address-family ipv6 unicast redistribute connected neighbor 2001:db8:1::2 activate diff --git a/tests/topotests/bgp_route_server_client/r3/bgpd.conf b/tests/topotests/bgp_route_server_client/r3/bgpd.conf index ea1f73a5dc..4b565e7b77 100644 --- a/tests/topotests/bgp_route_server_client/r3/bgpd.conf +++ b/tests/topotests/bgp_route_server_client/r3/bgpd.conf @@ -3,6 +3,7 @@ router bgp 65003 bgp router-id 10.10.10.3 no bgp ebgp-requires-policy neighbor 2001:db8:3::1 remote-as external + neighbor 2001:db8:3::1 timers 3 10 address-family ipv6 unicast redistribute connected neighbor 2001:db8:3::1 activate |
