-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdn.py
50 lines (34 loc) · 1.46 KB
/
sdn.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
"""Custom topology example
Two directly connected switches plus a host for each switch:
host --- switch --- switch --- host
Adding the 'topos' dict with a key/value pair to generate our newly defined
topology enables one to pass in '--topo=mytopo' from the command line.
"""
from mininet.topo import Topo
from mininet.link import TCLink
class MyTopo( Topo ):
"Simple topology example."
def __init__( self ):
"Create custom topo."
# Initialize topology
Topo.__init__( self )
# Add hosts and switches
h1 = self.addHost( 'h1' )
h2 = self.addHost( 'h2' )
h3 = self.addHost( 'h3' )
h4 = self.addHost( 'h4' )
s1 = self.addSwitch( 's1' )
s2 = self.addSwitch( 's2' )
s3 = self.addSwitch( 's3' )
s4 = self.addSwitch( 's4' )
# Add links
self.addLink( s1, s2, cls=TCLink, bw=1000, delay='1ms' )
self.addLink( s1, s4, cls=TCLink, bw=1000, delay='1ms' )
self.addLink( s1, h1, cls=TCLink, bw=100, delay='10ms' )
self.addLink( s2, s4, cls=TCLink, bw=100, delay='5ms' )
self.addLink( s2, s3, cls=TCLink, bw=1000, delay='1ms' )
self.addLink( s2, h2, cls=TCLink, bw=100, delay='10ms' )
self.addLink( s3, s4, cls=TCLink, bw=1000, delay='1ms' )
self.addLink( s3, h3, cls=TCLink, bw=100, delay='10ms' )
self.addLink( s4, h4, cls=TCLink, bw=100, delay='10ms' )
topos = { 'mytopo': ( lambda: MyTopo() ) }