forked from bocon13/mptcp_setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_mptcp.py
executable file
·170 lines (136 loc) · 5.15 KB
/
test_mptcp.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
#!/usr/bin/python
"""
Test to validate MPTCP operation across at least two links.
"""
import sys
from subprocess import Popen, PIPE
from time import sleep
import termcolor as T
import argparse
from mininet.net import Mininet
from mininet.log import lg
from mininet.node import OVSKernelSwitch as Switch
from mininet.link import Link, TCLink
from mininet.util import makeNumeric, custom
from topo import TwoHostNInterfaceTopo
# TODO: move to common location; code shared with DCTCP.
def progress(t):
while t > 0:
print T.colored(' %3d seconds left \r' % (t), 'cyan'),
t -= 1
sys.stdout.flush()
sleep(1)
print '\r\n'
def sysctl_set(key, value):
"""Issue systcl for given param to given value and check for error."""
p = Popen("sysctl -w %s=%s" % (key, value), shell=True, stdout=PIPE,
stderr=PIPE)
# Output should be empty; otherwise, we have an issue.
stdout, stderr = p.communicate()
stdout_expected = "%s = %s\n" % (key, value)
if stdout != stdout_expected:
raise Exception("Popen returned unexpected stdout: %s != %s" %
(stdout, stdout_expected))
if stderr:
raise Exception("Popen returned unexpected stderr: %s" % stderr)
def set_mptcp_enabled(enabled):
"""Enable MPTCP if true, disable if false"""
e = 1 if enabled else 0
lg.info("setting MPTCP enabled to %s\n" % e)
sysctl_set('net.mptcp.mptcp_enabled', e)
def set_mptcp_ndiffports(ports):
"""Set ndiffports, the number of subflows to instantiate"""
lg.info("setting MPTCP ndiffports to %s\n" % ports)
sysctl_set("net.mptcp.mptcp_ndiffports", ports)
def parse_args():
parser = argparse.ArgumentParser(description="MPTCP 2-host n-switch test")
parser.add_argument('--bw', '-B',
action="store",
help="Bandwidth of links",
required=True)
parser.add_argument('-n',
action="store",
help="Number of switches. Must be >= 2",
default=2)
parser.add_argument('-t',
action="store",
help="Seconds to run the experiment",
default=2)
parser.add_argument('--mptcp',
action="store_true",
help="Enable MPTCP (net.mptcp.mptcp_enabled)",
default=False)
parser.add_argument('--pause',
action="store_true",
help="Pause before test start & end (to use wireshark)",
default=False)
parser.add_argument('--ndiffports',
action="store",
help="Set # subflows (net.mptcp.mptcp_ndiffports)",
default=1)
args = parser.parse_args()
args.bw = float(args.bw)
args.n = int(args.n)
args.ndiffports = int(args.ndiffports)
return args
def setup(args):
set_mptcp_enabled(args.mptcp)
set_mptcp_ndiffports(args.ndiffports)
def run(args, net):
seconds = int(args.t)
h1 = net.getNodeByName('h1')
h2 = net.getNodeByName('h2')
for i in range(args.n):
# Setup IPs:
h1.cmdPrint('ifconfig h1-eth%i 10.0.%i.3 netmask 255.255.255.0' % (i, i))
h2.cmdPrint('ifconfig h2-eth%i 10.0.%i.4 netmask 255.255.255.0' % (i, i))
if args.mptcp:
lg.info("configuring source-specific routing tables for MPTCP\n")
# This creates two different routing tables, that we use based on the
# source-address.
dev = 'h1-eth%i' % i
table = '%s' % (i + 1)
h1.cmdPrint('ip rule add from 10.0.%i.3 table %s' % (i, table))
h1.cmdPrint('ip route add 10.0.%i.0/24 dev %s scope link table %s' % (i, dev, table))
h1.cmdPrint('ip route add default via 10.0.%i.1 dev %s table %s' % (i, dev, table))
# TODO: expand this to verify connectivity with a ping test.
lg.info("pinging each destination interface\n")
for i in range(args.n):
h2_out = h2.cmd('ping -c 1 10.0.%i.3' % i)
lg.info("ping test output: %s\n" % h2_out)
lg.info("iperfing")
h2.sendCmd('iperf -s -i 1')
cmd = 'iperf -c 10.0.0.4 -t %d -i 1' % seconds
h1.sendCmd(cmd)
progress(seconds + 1)
h1_out = h1.waitOutput()
lg.info("client output:\n%s\n" % h1_out)
sleep(0.1) # hack to wait for iperf server output.
out = h2.read(10000)
lg.info("server output: %s\n" % out)
return None
def end(args):
set_mptcp_enabled(False)
set_mptcp_ndiffports(1)
def genericTest(args, topo, setup, run, end):
link = custom(TCLink, bw=args.bw)
net = Mininet(topo=topo, switch=Switch, link=link)
setup(args)
net.start()
if args.pause:
print "press enter to run test"
raw_input()
data = run(args, net)
if args.pause:
print "press enter to finish test"
raw_input()
net.stop()
end(args)
return data
def main():
args = parse_args()
lg.setLogLevel('info')
topo = TwoHostNInterfaceTopo(n=args.n)
genericTest(args, topo, setup, run, end)
if __name__ == '__main__':
main()