-
Notifications
You must be signed in to change notification settings - Fork 2
/
ThreePktTopo_with_Taps.py
77 lines (61 loc) · 2.24 KB
/
ThreePktTopo_with_Taps.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
from mininet.topo import Topo
from mininet.net import Mininet
from mininet.log import setLogLevel, info
from mininet.node import RemoteController
from mininet.link import Link, Intf
from mininet.cli import CLI
class NullIntf( Intf ):
"A dummy interface with a blank name that doesn't do any configuration"
def __init__( self, name, **params ):
self.name = ''
self.node ="alaki"
class NullLink( Link ):
"A dummy link that doesn't touch either interface"
def makeIntfPair( cls, intf1, intf2, *args, **kwargs ):
pass
def delete( self ):
pass
class ThreePktTopoScratch(Topo):
def addIntf( self, switch, intfName ):
"Add intf intfName to switch"
self.addLink( switch, switch, cls=NullLink,
intfName1=intfName, cls2=NullIntf )
def __init__(self):
self.NUM_OF_HOSTS = 3 # number of hosts
self.NUM_OF_PKT_SW = 3 # number of packet swiches
self.NUM_OF_OPT_SW = 3 # number of optical swiches
# Initialize topology
Topo.__init__(self)
h1 = self.addHost('h1')
h2 = self.addHost('h2')
h3 = self.addHost('h3')
opts =dict(protocols='OpenFlow13')
# Adding switches
p1 = self.addSwitch('p1', dpid="0000ffff00000001",opts=opts)
p2 = self.addSwitch('p2', dpid="0000ffff00000002",opts=opts)
p3 = self.addSwitch('p3', dpid="0000ffff00000003",opts=opts)
# Add links from hosts to OVS
self.addLink(p1, h1)
self.addLink(p2, h2)
self.addLink(p3, h3)
# addding switches to gether
self.addLink(p2,p3)
self.addLink(p2,p1)
# add links from ovs to linc-oe
self.addIntf(p1,'tap1')
self.addIntf(p2,'tap2')
self.addIntf(p3,'tap3')
# if you use, sudo mn --custom custom/optical.py, then register the topo:
topos = {'optical': ( lambda: ThreePktTopoScratch() )}
def run():
c = RemoteController('c','0.0.0.0',6633)
net = Mininet( topo=ThreePktTopoScratch(),controller=None,autoSetMacs=True)
net.addController(c)
net.start()
#installStaticFlows( net )
CLI( net )
net.stop()
# if the script is run directly (sudo custom/optical.py):
if __name__ == '__main__':
setLogLevel('info')
run()