Hi Arslan,
Oops, sorry, I didn't answer your question.
#modified
net = Mininet(topo=topo, switch=SliceableSwitch, build=False)
#added controller
c0 = RemoteController( 'c0', ip='127.0.0.1', port=6633 )
net.addController(c0)
net.build()
On your script, controller does not se
Hi Arslan,
Sorry, the script on Ryu-Book does not create the topology correctly...
(Some options seems to be missing.)
Could you try the following script?
qos_sample_topology.py
#!/usr/bin/env python
from mininet.cli import CLI
from mininet.net import Mininet
from mininet.node import
Dear All,
I almost followed the same procedure as explained in the Ryu book for
Example of the operation of QoS by using Meter Table but I made a little
modification in the mininet topology file where I added the controller
address. However, the controller is not joining the switch. I am
atta