mininet-sample/experiments/http.py

68 lines
2.6 KiB
Python
Raw Normal View History

2020-06-26 06:52:56 +00:00
from core.experiment import ExperimentParameter, RandomFileExperiment, RandomFileParameter
2020-06-24 14:11:54 +00:00
import os
2020-06-26 06:52:56 +00:00
class HTTP(RandomFileExperiment):
2020-06-24 14:11:54 +00:00
NAME = "http"
SERVER_LOG = "http_server.log"
CLIENT_LOG = "http_client.log"
WGET_BIN = "wget"
PING_OUTPUT = "ping.log"
2020-06-26 06:52:56 +00:00
def __init__(self, experiment_parameter_filename, topo, topo_config):
2020-06-25 12:56:47 +00:00
# Just rely on RandomFileExperiment
2020-06-26 06:52:56 +00:00
super(HTTP, self).__init__(experiment_parameter_filename, topo, topo_config)
2020-06-24 14:11:54 +00:00
def ping(self):
self.topo.command_to(self.topo_config.client, "rm " + \
2020-06-24 14:11:54 +00:00
HTTP.PING_OUTPUT )
2020-06-26 06:52:56 +00:00
count = self.experiment_parameter.get(ExperimentParameter.PING_COUNT)
2020-06-26 09:17:00 +00:00
for i in range(0, self.topo_config.client_interface_count()):
cmd = self.pingCommand(self.topo_config.getClientIP(i),
self.topo_config.getServerIP(), n = count)
self.topo.command_to(self.topo_config.client, cmd)
2020-06-24 14:11:54 +00:00
def pingCommand(self, fromIP, toIP, n=5):
s = "ping -c " + str(n) + " -I " + fromIP + " " + toIP + \
" >> " + HTTP.PING_OUTPUT
print(s)
return s
2020-06-25 12:56:47 +00:00
def load_parameters(self):
# Just rely on RandomFileExperiment
super(HTTP, self).load_parameters()
2020-06-24 14:11:54 +00:00
def prepare(self):
super(HTTP, self).prepare()
self.topo.command_to(self.topo_config.client, "rm " + \
2020-06-24 14:11:54 +00:00
HTTP.CLIENT_LOG )
self.topo.command_to(self.topo_config.server, "rm " + \
2020-06-24 14:11:54 +00:00
HTTP.SERVER_LOG )
def getHTTPServerCmd(self):
2020-06-25 12:56:47 +00:00
s = "/etc/init.d/apache2 restart &> {}&".format(HTTP.SERVER_LOG)
2020-06-24 14:11:54 +00:00
print(s)
return s
def getHTTPClientCmd(self):
2020-06-25 12:56:47 +00:00
s = "(time {} http://{}/{} --no-check-certificate) &> {}".format(HTTP.WGET_BIN,
self.topo_config.getServerIP(), self.file, HTTP.CLIENT_LOG)
2020-06-24 14:11:54 +00:00
print(s)
return s
def clean(self):
super(HTTP, self).clean()
def run(self):
cmd = self.getHTTPServerCmd()
self.topo.command_to(self.topo_config.server, "netstat -sn > netstat_server_before")
self.topo.command_to(self.topo_config.server, cmd)
2020-06-24 14:11:54 +00:00
self.topo.command_to(self.topo_config.client, "sleep 2")
2020-06-24 14:11:54 +00:00
cmd = self.getHTTPClientCmd()
self.topo.command_to(self.topo_config.client, "netstat -sn > netstat_client_before")
self.topo.command_to(self.topo_config.client, cmd)
self.topo.command_to(self.topo_config.server, "netstat -sn > netstat_server_after")
self.topo.command_to(self.topo_config.client, "netstat -sn > netstat_client_after")
self.topo.command_to(self.topo_config.client, "sleep 2")