June 2017
Intermediate to advanced
446 pages
10h 10m
English
The Mininet setup is pretty simple and straight forward, which is the beauty of OpenFlow and SDN. The intelligence is in the controller application. We have already seen most of the setup steps in Chapter 11, OpenFlow Advance Topics. I will just quickly show the steps that were taken.
For good measure, we will clean up the Mininet topology:
$ sudo mn --clean
The Mininet topology is located under chapter13_mininet_2.py, where we build the network with one controller and two hosts. Note that we change the default port of the controller to port 5555:
...net = Mininet( controller=RemoteController, switch=OVSKernelSwitch )c1 = net.addController('c2', controller=RemoteController, ip='127.0.0.1', port=5555)h1 = net.addHost( ...
Read now
Unlock full access