sdn - Opendaylight Dlux how to make flow table? -


i downloaded mininet, opendaylight, etc.. , wanted add flow table switches.i used dpctl , sh ovs-ofctl command. hard add flow tables each switches.

i want add flow table on dlux ui. don't know how fill in blank. made topology by:

sudo mn --controller=remote,ip=127.0.0.1,port=6633 --switch ovsk --topo tree,2,2

i see node id of switches. "openflow:1","openflow:2","openflow:3"

so input openflow:1.. occured error! don't know how fill blank

enter image description here

you need add flow manually through mininet terminal :

ovs-ofctl add-flow [switch_name] ip,nw_dst=192.168.0.1,actions=drop 
  • note : try typing sh before command if not work.

that example flow. see this link whole ovs commands reference.


Comments

Popular posts from this blog

What is happening when Matlab is starting a "parallel pool"? -

php - Cannot override Laravel Spark authentication with own implementation -

Qt QGraphicsScene is not accessable from QGraphicsView (on Qt 5.6.1) -