I run the mininet with:
sudo mn --topo single,3 --controller remote,ip=... port=6653 --switch ovsk, protocols=OpenFlow13
Then I run the controller OpenDaylight(Helium,Karaf). I installed features:
odl-openflowplugin-all , odl-dlux-core, odl-restconf, odl-mdsal-apidocs, odl-openflowplugin-flow-services-ui, odl-openflowplugin-flow-services-rest
Then I add the flow from the computer which mininet runs, manually by
sudo ovs-ofctl -O OpenFlow13 add-flow "s1" in_port=1,actions=output:2
sudo ovs-ofctl -O OpenFlow13 add-flow "s1" in_port=2, actions=output:1
Then I use "pingall" command at mininet promt. As it is expected h1 and h2 can ping each other while they couldn't ping h3.
Finally, I tried to check the flow from Dlux GUI, however what I saw was the only switch. Then I tried to look at flows, and again couldn't see anything.
What is the problem? If anyone can helps I would be gratefull
Thanks in advance