File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -7035,14 +7035,13 @@ def verify_protected_connectivity(self):
7035
7035
self .verify_one_broadcast (int_host , ext_hosts )
7036
7036
7037
7037
for ext_host in ext_hosts :
7038
- # All external hosts cannot flood to each other.
7039
- for other_ext_host in ext_hosts - {ext_host }:
7040
- self .verify_broadcast (hosts = (ext_host , other_ext_host ), broadcast_expected = False )
7041
-
7042
7038
# All external hosts can reach internal hosts.
7043
7039
for int_host in int_hosts :
7044
7040
self .verify_broadcast (hosts = (ext_host , int_host ), broadcast_expected = True )
7045
7041
self .one_ipv4_ping (ext_host , int_host .IP ())
7042
+ # All external hosts cannot flood to each other.
7043
+ for other_ext_host in ext_hosts - {ext_host }:
7044
+ self .verify_broadcast (hosts = (ext_host , other_ext_host ), broadcast_expected = False )
7046
7045
7047
7046
def set_externals_state (self , dp_name , externals_up ):
7048
7047
"""Set the port up/down state of all external ports on a switch"""
You can’t perform that action at this time.
0 commit comments