This tutorial helps to learn on writing mininet custom topology.
mininet exposes the python API. We can create a custom topologies using the python API with few lines of code.
Steps are below.
from mininet.topo import Topo
from mininet.net import Mininet
class CustomTopo(Topo):
def build(self):
s1 = self.addSwitch('s1')
h1 = self.addHost('h1')
h2 = self.addHost('h2')
self.addLink(h1, s1)
self.addLink(h2, s2)
Important Topology definition APIs:
a. addSwitch,
b. addHost,
c. addLink
a. Create the Topology object
b. Create the Mininet with Topology object
c. Start the Mininet
if __name__ == '__main__':
topo = SingleSwitchTopo()
net = Mininet(topo)
net.start()
# To read 4. https://kiranvemuri.info/dynamic-topology-changes-in-mininet-advanced-users-5c452f7f302a