What does this flow mean? (SDN)

openflowsdn

mininet> dpctl dump-flows -O OpenFlow13
*** s1 ----------------------------------------------------------------
OFPST_FLOW reply (OF1.3) (xid=0x2):
cookie=0x0, duration=106.605s, table=0, n_packets=6, n_bytes=420, priority=0
actions=CONTROLLER:65509
mininet>

So this is the flow in an SDN switch (s1) after initially starting the controller and switch, but what is the prupose of this flow exactly? I don't quite understand it

Best Answer

It is the default flow that sends all packets to the controller. The controller can then install new flows, or process the packets via PACKET_OUT messages.

I believe that if you use the -m or --more argument it will show you that it is actually a flow that matches all fields wildcarded. This is omitted by default.

Related Topic