-
Notifications
You must be signed in to change notification settings - Fork 0
/
bcube.py
134 lines (114 loc) · 4.76 KB
/
bcube.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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from mininet.net import Mininet
from mininet.topo import Topo
from mininet.node import Controller, RemoteController, OVSController
from mininet.node import CPULimitedHost, Host, Node
from mininet.node import OVSKernelSwitch, UserSwitch
from mininet.node import IVSSwitch
from mininet.cli import CLI
from mininet.log import setLogLevel, info
from mininet.link import TCLink, Intf
from subprocess import call
def _init(topo):
info('*** Adding switches\n')
s1 = topo.addSwitch('s1', cls=OVSKernelSwitch)
s2 = topo.addSwitch('s2', cls=OVSKernelSwitch)
s3 = topo.addSwitch('s3', cls=OVSKernelSwitch)
s4 = topo.addSwitch('s4', cls=OVSKernelSwitch)
s5 = topo.addSwitch('s5', cls=OVSKernelSwitch)
s6 = topo.addSwitch('s6', cls=OVSKernelSwitch)
s7 = topo.addSwitch('s7', cls=OVSKernelSwitch)
s8 = topo.addSwitch('s8', cls=OVSKernelSwitch)
info('*** Adding hosts\n')
h1 = topo.addHost('h1', cls=Host, ip='10.0.0.1', defaultRoute=None)
h2 = topo.addHost('h2', cls=Host, ip='10.0.0.2', defaultRoute=None)
h3 = topo.addHost('h3', cls=Host, ip='10.0.0.3', defaultRoute=None)
h4 = topo.addHost('h4', cls=Host, ip='10.0.0.4', defaultRoute=None)
h5 = topo.addHost('h5', cls=Host, ip='10.0.0.5', defaultRoute=None)
h6 = topo.addHost('h6', cls=Host, ip='10.0.0.6', defaultRoute=None)
h7 = topo.addHost('h7', cls=Host, ip='10.0.0.7', defaultRoute=None)
h8 = topo.addHost('h8', cls=Host, ip='10.0.0.8', defaultRoute=None)
h9 = topo.addHost('h9', cls=Host, ip='10.0.0.9', defaultRoute=None)
h10 = topo.addHost('h10', cls=Host, ip='10.0.0.10', defaultRoute=None)
h11 = topo.addHost('h11', cls=Host, ip='10.0.0.11', defaultRoute=None)
h12 = topo.addHost('h12', cls=Host, ip='10.0.0.12', defaultRoute=None)
h13 = topo.addHost('h13', cls=Host, ip='10.0.0.13', defaultRoute=None)
h14 = topo.addHost('h14', cls=Host, ip='10.0.0.14', defaultRoute=None)
h15 = topo.addHost('h15', cls=Host, ip='10.0.0.15', defaultRoute=None)
h16 = topo.addHost('h16', cls=Host, ip='10.0.0.16', defaultRoute=None)
info('*** Adding links\n')
topo.addLink(s5, h1, 1, 1, cls=TCLink, bw=1)
topo.addLink(s5, h2, 2, 2, cls=TCLink, bw=1)
topo.addLink(s5, h3, 3, 3, cls=TCLink, bw=1)
topo.addLink(s5, h4, 4, 4, cls=TCLink, bw=1)
topo.addLink(s6, h5, 5, 5, cls=TCLink, bw=1)
topo.addLink(s6, h6, 6, 6, cls=TCLink, bw=1)
topo.addLink(s6, h7, 7, 7, cls=TCLink, bw=1)
topo.addLink(s6, h8, 8, 8, cls=TCLink, bw=1)
topo.addLink(s7, h9, 9, 9, cls=TCLink, bw=1)
topo.addLink(s7, h10, 10, 10, cls=TCLink, bw=1)
topo.addLink(s7, h11, 11, 11, cls=TCLink, bw=1)
topo.addLink(s7, h12, 12, 12, cls=TCLink, bw=1)
topo.addLink(s8, h13, 13, 13, cls=TCLink, bw=1)
topo.addLink(s8, h14, 14, 14, cls=TCLink, bw=1)
topo.addLink(s8, h15, 15, 15, cls=TCLink, bw=1)
topo.addLink(s8, h16, 16, 16, cls=TCLink, bw=1)
topo.addLink(s1, h1, 17, 17, cls=TCLink, bw=1)
topo.addLink(s2, h2, 18, 18, cls=TCLink, bw=1)
topo.addLink(s3, h3, 19, 19, cls=TCLink, bw=1)
topo.addLink(s4, h4, 20, 20, cls=TCLink, bw=1)
topo.addLink(s1, h5, 21, 21, cls=TCLink, bw=1)
topo.addLink(s2, h6, 22, 22, cls=TCLink, bw=1)
topo.addLink(s3, h7, 23, 23, cls=TCLink, bw=1)
topo.addLink(s4, h8, 24, 24, cls=TCLink, bw=1)
topo.addLink(s1, h9, 25, 25, cls=TCLink, bw=1)
topo.addLink(s2, h10, 26, 26, cls=TCLink, bw=1)
topo.addLink(s3, h11, 27, 27, cls=TCLink, bw=1)
topo.addLink(s4, h12, 28, 28, cls=TCLink, bw=1)
topo.addLink(s1, h13, 29, 29, cls=TCLink, bw=1)
topo.addLink(s2, h14, 30, 30, cls=TCLink, bw=1)
topo.addLink(s3, h15, 31, 31, cls=TCLink, bw=1)
topo.addLink(s4, h16, 32, 32, cls=TCLink, bw=1)
class MyTopo(Topo):
def __init__(self):
Topo.__init__(self)
_init(self)
def myNetwork(standalone = False):
net = Mininet(
topo=None,
build=False,
ipBase="10.0.0.0/8"
)
info('*** Adding controller\n')
c0=net.addController(
name='c0',
controller=RemoteController,
ip='127.0.0.1',
protocol='tcp',
port=6633
)
_init(net)
info('*** Starting network\n')
net.build()
info('*** Starting controllers\n')
for controller in net.controllers:
controller.start()
info('*** Starting switches\n')
net.get('s1').start([c0])
net.get('s2').start([c0])
net.get('s3').start([c0])
net.get('s4').start([c0])
net.get('s5').start([c0])
net.get('s6').start([c0])
net.get('s7').start([c0])
net.get('s8').start([c0])
if standalone:
info('*** Post configure switches and hosts\n')
CLI(net)
net.stop()
return net
topos = {'mytopo': MyTopo}
if __name__ == "__main__":
setLogLevel("info")
myNetwork(True)