f0c726a42f
This helps with virtualenv although it can open up another security hole if you end up using an unexpected python interpreter. Overall it seems to make sense to err on the side of usability but it's good to be aware of security. However, for the remaining utility scripts that require python 2, we explicitly note this with #!/usr/bin/python2.
71 lines
2.0 KiB
Python
Executable File
71 lines
2.0 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
"""
|
|
Build a simple network from scratch, using mininet primitives.
|
|
This is more complicated than using the higher-level classes,
|
|
but it exposes the configuration details and allows customization.
|
|
|
|
For most tasks, the higher-level API will be preferable.
|
|
"""
|
|
|
|
from time import sleep
|
|
|
|
from mininet.net import Mininet
|
|
from mininet.node import Node
|
|
from mininet.link import Link
|
|
from mininet.log import setLogLevel, info
|
|
from mininet.util import quietRun
|
|
|
|
|
|
def scratchNet( cname='controller', cargs='-v ptcp:' ):
|
|
"Create network from scratch using Open vSwitch."
|
|
|
|
info( "*** Creating nodes\n" )
|
|
controller = Node( 'c0', inNamespace=False )
|
|
switch = Node( 's0', inNamespace=False )
|
|
h0 = Node( 'h0' )
|
|
h1 = Node( 'h1' )
|
|
|
|
info( "*** Creating links\n" )
|
|
Link( h0, switch )
|
|
Link( h1, switch )
|
|
|
|
info( "*** Configuring hosts\n" )
|
|
h0.setIP( '192.168.123.1/24' )
|
|
h1.setIP( '192.168.123.2/24' )
|
|
info( str( h0 ) + '\n' )
|
|
info( str( h1 ) + '\n' )
|
|
|
|
info( "*** Starting network using Open vSwitch\n" )
|
|
controller.cmd( cname + ' ' + cargs + '&' )
|
|
switch.cmd( 'ovs-vsctl del-br dp0' )
|
|
switch.cmd( 'ovs-vsctl add-br dp0' )
|
|
for intf in switch.intfs.values():
|
|
switch.cmd( 'ovs-vsctl add-port dp0 %s\n' % intf )
|
|
|
|
# Note: controller and switch are in root namespace, and we
|
|
# can connect via loopback interface
|
|
switch.cmd( 'ovs-vsctl set-controller dp0 tcp:127.0.0.1:6633' )
|
|
|
|
info( '*** Waiting for switch to connect to controller' )
|
|
while 'is_connected' not in quietRun( 'ovs-vsctl show' ):
|
|
sleep( 1 )
|
|
info( '.' )
|
|
info( '\n' )
|
|
|
|
info( "*** Running test\n" )
|
|
h0.cmdPrint( 'ping -c1 ' + h1.IP() )
|
|
|
|
info( "*** Stopping network\n" )
|
|
controller.cmd( 'kill %' + cname )
|
|
switch.cmd( 'ovs-vsctl del-br dp0' )
|
|
switch.deleteIntfs()
|
|
info( '\n' )
|
|
|
|
|
|
if __name__ == '__main__':
|
|
setLogLevel( 'info' )
|
|
info( '*** Scratch network demo (kernel datapath)\n' )
|
|
Mininet.init()
|
|
scratchNet()
|