Skip to content

Instantly share code, notes, and snippets.

@Yi-Tseng
Last active August 29, 2015 14:25
Show Gist options
  • Select an option

  • Save Yi-Tseng/e6864a824f9af08ecbea to your computer and use it in GitHub Desktop.

Select an option

Save Yi-Tseng/e6864a824f9af08ecbea to your computer and use it in GitHub Desktop.
#!/usr/bin/python
from mininet.net import Mininet
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 myNetwork():
net = Mininet( topo=None,
build=False,
ipBase='10.0.0.0/8')
info( '*** Adding controller\n' )
c0=net.addController(name='c0',
controller=Controller,
protocol='tcp',
ip='10.10.10.10',
port=6633)
info( '*** Add switches\n')
s1 = net.addSwitch('s1', cls=OVSKernelSwitch)
s2 = net.addSwitch('s2', cls=OVSKernelSwitch)
# this is legacy switch
ls = net.addSwitch('s3', cls=OVSLegacyKernelSwitch, failMode='standalone')
info( '*** Add hosts\n')
h1 = net.addHost('h1', cls=Host, ip='10.0.0.1', defaultRoute=None)
h2 = net.addHost('h2', cls=Host, ip='10.0.0.2', defaultRoute=None)
info( '*** Add links\n')
# h1 - s1 - ls - s2 - h2
net.addLink(s1, ls)
net.addLink(ls, s2)
net.addLink(h1, s1)
net.addLink(h2, s2)
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([])
info( '*** Post configure switches and hosts\n')
CLI(net)
net.stop()
if __name__ == '__main__':
setLogLevel( 'info' )
myNetwork()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment