I created a software defined network in Mininet (1 controller, 1 switch and 4 hosts) and I want to know in most SDNs (OpenFlow), how often the flow tables get updated or changed (adding, modifying, or deleting a flow entry)?
Also, Where are the flow table entries stored and saved? Is there a file that stores such information? What is the path or the location of that file? For example, I get the flow entries when I type the following command:
sudo ovs-ofctl -O OpenFlow13 dump-flows s1
OFPST_FLOW reply (OF1.3) (xid=0x2): cookie=0x0, duration=367.032s, table=0, n_packets=10, n_bytes=756, priority=1,in_port=2,dl_dst=00:00:00:00:00:01 actions=output:1 cookie=0x0, duration=367.028s, table=0, n_packets=9, n_bytes=714, priority=1,in_port=1,dl_dst=00:00:00:00:00:02 actions=output:2 cookie=0x0, duration=357.348s, table=0, n_packets=13, n_bytes=1106, priority=1,in_port=3,dl_dst=00:00:00:00:00:01 actions=output:1 cookie=0x0, duration=357.346s, table=0, n_packets=12, n_bytes=1064, priority=1,in_port=1,dl_dst=00:00:00:00:00:03 actions=output:3 cookie=0x0, duration=346.450s, table=0, n_packets=11, n_bytes=854, priority=1,in_port=3,dl_dst=00:00:00:00:00:02 actions=output:2 cookie=0x0, duration=346.442s, table=0, n_packets=10, n_bytes=812, priority=1,in_port=2,dl_dst=00:00:00:00:00:03 actions=output:3 cookie=0x0, duration=383.349s, table=0, n_packets=30, n_bytes=2220, priority=0 actions=CONTROLLER:65535
So, where did these information came from? which file?
Thanks