ping between all pairs of client/server IP addresses

This commit is contained in:
Quentin De Coninck 2020-07-03 15:38:13 +02:00
parent e93b95cdd4
commit 014ce441c4

View File

@ -362,11 +362,12 @@ class Experiment(object):
self.topo.command_to(self.topo_config.client,
"rm {}".format(Experiment.PING_OUTPUT))
count = self.experiment_parameter.get(ExperimentParameter.PING_COUNT)
for i in range(0, self.topo_config.client_interface_count()):
cmd = self.ping_command(self.topo_config.get_client_ip(i),
self.topo_config.get_server_ip(interface_index=0), n=count)
logging.info(cmd)
self.topo.command_to(self.topo_config.client, cmd)
for j in range(0, self.topo_config.server_interface_count()):
for i in range(0, self.topo_config.client_interface_count()):
cmd = self.ping_command(self.topo_config.get_client_ip(i),
self.topo_config.get_server_ip(interface_index=j), n=count)
logging.info(cmd)
self.topo.command_to(self.topo_config.client, cmd)
def ping_command(self, from_ip, to_ip, n=5):
return "ping -c {} -I {} {} >> {}".format(n, from_ip, to_ip, Experiment.PING_OUTPUT)