mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-05-28 09:16:34 +00:00
bgp_direct_to_bgp_vpn: scripts - avoid race condition, and test for predicable results
Signed-off-by: Lou Berger <lberger@labn.net>
This commit is contained in:
parent
ffdac4dbd8
commit
bd15005d3a
@ -1,13 +1,19 @@
|
||||
from lutil import luCommand
|
||||
luCommand('r1','vtysh -c "add vrf cust1 prefix 99.0.0.1/32"','.','none','IP Address')
|
||||
luCommand('r3','vtysh -c "show bgp ipv4 vpn"','i99.0.0.1/32','wait','See R1s address')
|
||||
luCommand('r4','vtysh -c "show bgp ipv4 vpn"','i99.0.0.1/32','wait','See R1s address')
|
||||
luCommand('r3','vtysh -c "add vrf cust1 prefix 99.0.0.2/32"','.','none','IP Address')
|
||||
luCommand('r1','vtysh -c "show bgp ipv4 vpn"','i99.0.0.2/32','wait','See R3s address')
|
||||
luCommand('r4','vtysh -c "show bgp ipv4 vpn"','i99.0.0.2/32','wait','See R3s address')
|
||||
luCommand('r4','vtysh -c "add vrf cust1 prefix 99.0.0.3/32"','.','none','IP Address')
|
||||
luCommand('r1','vtysh -c "show bgp ipv4 vpn"','i99.0.0.3/32','wait','See R4s address')
|
||||
luCommand('r3','vtysh -c "show bgp ipv4 vpn"','i99.0.0.3/32','wait','See R4s address')
|
||||
luCommand('r1','vtysh -c "show vnc registrations local"','99.0.0.1','pass','Local Registration')
|
||||
luCommand('r3','vtysh -c "show vnc registrations local"','99.0.0.2','pass','Local Registration')
|
||||
luCommand('r4','vtysh -c "show vnc registrations local"','99.0.0.3','pass','Local Registration')
|
||||
luCommand('r1','vtysh -c "show vnc registrations remote"','6 out of 6','wait','Remote Registration')
|
||||
luCommand('r1','vtysh -c "show vnc registrations remote"','4 out of 4','wait','Remote Registration')
|
||||
luCommand('r3','vtysh -c "show vnc registrations remote"','6 out of 6','wait','Remote Registration')
|
||||
luCommand('r4','vtysh -c "show vnc registrations remote"','6 out of 6','wait','Remote Registration')
|
||||
luCommand('r4','vtysh -c "show vnc registrations remote"','4 out of 4','wait','Remote Registration')
|
||||
luCommand('r1','vtysh -c "show vnc registrations"','.','none')
|
||||
luCommand('r3','vtysh -c "show vnc registrations"','.','none')
|
||||
luCommand('r4','vtysh -c "show vnc registrations"','.','none')
|
||||
|
@ -1,13 +1,12 @@
|
||||
from lutil import luCommand
|
||||
luCommand('ce1','vtysh -c "show bgp ipv4 uni"','7 routes and 7','wait','Local and remote routes')
|
||||
luCommand('ce2','vtysh -c "show bgp ipv4 uni"','7 routes and 7','wait','Local and remote routes')
|
||||
luCommand('ce2','vtysh -c "show bgp ipv4 uni"','7 routes and 9','wait','Local and remote routes')
|
||||
luCommand('ce3','vtysh -c "show bgp ipv4 uni"','7 routes and 7','wait','Local and remote routes')
|
||||
luCommand('r1','vtysh -c "show bgp ipv4 uni"','7 routes and 9','pass','Unicast SAFI')
|
||||
luCommand('r2','vtysh -c "show bgp ipv4 uni"','No BGP prefixes displayed','pass','Unicast SAFI')
|
||||
luCommand('r3','vtysh -c "show bgp ipv4 uni"','7 routes and 9','pass','Unicast SAFI')
|
||||
luCommand('r4','vtysh -c "show bgp ipv4 uni"','7 routes and 9','pass','Unicast SAFI')
|
||||
luCommand('r1','vtysh -c "show bgp ipv4 vpn"','9 routes and 9','pass','VPN SAFI')
|
||||
luCommand('r2','vtysh -c "show bgp ipv4 vpn"','9 routes and 9','pass','VPN SAFI')
|
||||
luCommand('r3','vtysh -c "show bgp ipv4 vpn"','9 routes and 9','pass','VPN SAFI')
|
||||
luCommand('r4','vtysh -c "show bgp ipv4 vpn"','9 routes and 9','pass','VPN SAFI')
|
||||
|
||||
luCommand('r1','vtysh -c "show bgp ipv4 vpn"','7 routes and 7','pass','VPN SAFI')
|
||||
luCommand('r2','vtysh -c "show bgp ipv4 vpn"','7 routes and 7','pass','VPN SAFI')
|
||||
luCommand('r3','vtysh -c "show bgp ipv4 vpn"','7 routes and 7','pass','VPN SAFI')
|
||||
luCommand('r4','vtysh -c "show bgp ipv4 vpn"','7 routes and 7','pass','VPN SAFI')
|
||||
|
Loading…
Reference in New Issue
Block a user