-
Notifications
You must be signed in to change notification settings - Fork 2
/
spineleaf9.py
160 lines (134 loc) · 5.66 KB
/
spineleaf9.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
#!/usr/bin/python
from mininet.topo import Topo
from mininet.net import Mininet, Host
from mininet.node import OVSKernelSwitch, UserSwitch
from mininet.log import setLogLevel
from mininet.cli import CLI
from mininet.node import OVSSwitch, Controller, RemoteController
from mininet.link import TCLink
from time import sleep
import random
'''
s9
s7 s8
s1 s2 s3 s4 s5 s6
h1 h2 h3 h4 h5 h6 h7 h8 h9 h10 h11 h12
'''
TEST_TIME = 30 #seconds
TEST_TYPE = "manual"
#normal, attack, manual
class datacentertopo(Topo):
"Single switch connected to 10 hosts."
def build(net):
s1 = net.addSwitch('s1', cls=OVSKernelSwitch, protocols='OpenFlow13')
s2 = net.addSwitch('s2', cls=OVSKernelSwitch, protocols='OpenFlow13')
s3 = net.addSwitch('s3', cls=OVSKernelSwitch, protocols='OpenFlow13')
s4 = net.addSwitch('s4', cls=OVSKernelSwitch, protocols='OpenFlow13')
s5 = net.addSwitch('s5', cls=OVSKernelSwitch, protocols='OpenFlow13')
s6 = net.addSwitch('s6', cls=OVSKernelSwitch, protocols='OpenFlow13')
s7 = net.addSwitch('s7', cls=OVSKernelSwitch, protocols='OpenFlow13')
s8 = net.addSwitch('s8', cls=OVSKernelSwitch, protocols='OpenFlow13')
s9 = net.addSwitch('s9', cls=OVSKernelSwitch, protocols='OpenFlow13')
# s1 = net.addSwitch('s1')
# s2 = net.addSwitch('s2')
# s3 = net.addSwitch('s3')
# s4 = net.addSwitch('s4')
# s5 = net.addSwitch('s5')
# s6 = net.addSwitch('s6')
# s7 = net.addSwitch('s7')
h1 = net.addHost('h1', cls=Host, ip='10.0.0.2', defaultRoute=None)
h2 = net.addHost('h2', cls=Host, ip='10.0.0.3', defaultRoute=None)
h3 = net.addHost('h3', cls=Host, ip='10.0.1.2', defaultRoute=None)
h4 = net.addHost('h4', cls=Host, ip='10.0.1.3', defaultRoute=None)
h5 = net.addHost('h5', cls=Host, ip='10.1.0.2', defaultRoute=None)
h6 = net.addHost('h6', cls=Host, ip='10.1.0.3', defaultRoute=None)
h7 = net.addHost('h7', cls=Host, ip='10.1.1.2', defaultRoute=None)
h8 = net.addHost('h8', cls=Host, ip='10.1.1.3', defaultRoute=None)
h9 = net.addHost('h9', cls=Host, ip='10.2.0.2', defaultRoute="via 10.2.0.2")
h10 = net.addHost('h10', cls=Host, ip='10.2.0.3', defaultRoute="via 10.2.0.2")
h11 = net.addHost('h11', cls=Host, ip='10.2.1.2', defaultRoute="via 10.2.1.2")
h12 = net.addHost('h12', cls=Host, ip='10.2.1.3', defaultRoute="via 10.2.1.2")
net.addLink(h1, s1 ,cls = TCLink,bw=40)
net.addLink(h2, s1 ,cls = TCLink,bw=40)
net.addLink(h3, s2 ,cls = TCLink,bw=40)
net.addLink(h4, s2 ,cls = TCLink,bw=40)
net.addLink(h5, s3 ,cls = TCLink,bw=40)
net.addLink(h6, s3 ,cls = TCLink,bw=40)
net.addLink(h7, s4 ,cls = TCLink,bw=40)
net.addLink(h8, s4 ,cls = TCLink,bw=40)
net.addLink(h9, s5 ,cls = TCLink,bw=40)
net.addLink(h10, s5 ,cls = TCLink,bw=40)
net.addLink(h11, s6 ,cls = TCLink,bw=40)
net.addLink(h12, s6 ,cls = TCLink,bw=40)
# net.addLink(h16, s4, cls=TCLink, bw=5)
#net.addLink(s4, s1, cls=TCLink, bw=5)
#add links s1--All Switches
net.addLink(s7, s3 ,cls = TCLink,bw=80)
net.addLink(s7, s4 ,cls = TCLink,bw=80)
net.addLink(s7, s1 ,cls = TCLink,bw=80)
net.addLink(s7, s2 ,cls = TCLink,bw=80)
net.addLink(s7, s5 ,cls = TCLink,bw=80)
net.addLink(s7, s6 ,cls = TCLink,bw=80)
#addlinks s2--All Switches
net.addLink(s8, s1 ,cls = TCLink,bw=80)
net.addLink(s8, s2 ,cls = TCLink,bw=80)
net.addLink(s8, s3 ,cls = TCLink,bw=80)
net.addLink(s8, s4 ,cls = TCLink,bw=80)
net.addLink(s8, s5 ,cls = TCLink,bw=80)
net.addLink(s8, s6 ,cls = TCLink,bw=80)
#addlinks s7--All Switches
net.addLink(s9, s1 ,cls = TCLink,bw=80)
net.addLink(s9, s2, cls = TCLink,bw=80)
net.addLink(s9, s3 ,cls = TCLink,bw=80)
net.addLink(s9, s4, cls = TCLink,bw=80)
net.addLink(s9, s5 ,cls = TCLink,bw=80)
net.addLink(s9, s6 ,cls = TCLink,bw=80)
if __name__ == '__main__':
setLogLevel('info')
topo = datacentertopo()
c1 = RemoteController('c1', ip='192.168.1.107')
# c1 = RemoteController('c1', ip='127.0.0.1')
net = Mininet(topo=topo, controller=c1)
net.start()
if TEST_TYPE == "normal":
print "Generating NORMAL Traffic......."
h1 = net.get('h1')
cmd1 = "bash normal.sh &"
h1.cmd(cmd1)
h2 = net.get('h2')
cmd1 = "bash normal.sh &"
h2.cmd(cmd1)
h3 = net.get('h3')
cmd1 = "bash normal.sh &"
h3.cmd(cmd1)
h4 = net.get('h4')
cmd1 = "bash normal.sh &"
h4.cmd(cmd1)
h5 = net.get('h5')
cmd1 = "bash normal.sh &"
h5.cmd(cmd1)
h6 = net.get('h6')
cmd1 = "bash normal.sh &"
h6.cmd(cmd1)
h7 = net.get('h7')
cmd1 = "bash normal.sh &"
h7.cmd(cmd1)
h8 = net.get('h8')
cmd1 = "bash normal.sh &"
h8.cmd(cmd1)
sleep(TEST_TIME)
net.stop()
elif TEST_TYPE == "attack":
print "Generating ATTACK Traffic......."
h1 = net.get('h1')
cmd1 = "bash attack.sh &"
h1.cmd(cmd1)
sleep(TEST_TIME)
net.stop()
elif TEST_TYPE == "manual":
CLI(net)
net.stop()
# CLI.do_mycmd = addh3s1
# if Mininet == "py net.addHost('h3s1')":
# "py net.addLink(s1, net.get('h3s1'))"
# "py s1.attach('s1-eth8')"