{% for switch in switches %}
Switch {{ switch.id }}
| MATCH
|
|
|
Table |
Prio |
Alive |
Timeout (hard|idle) |
Processed packets |
in_port |
mac_src |
mac_dst |
ip_src |
ip_dst |
tcp_src |
tcp_dst |
ACTION
|
{% for flow in switch.flows %}
#{{ flow.id }} |
{{ flow.table }} |
{{ flow.priority }} |
{{ flow.duration }} |
{{ flow.idle_timeout }}|{{ flow.hard_timeout }} |
{{ flow.n_packets }} |
{{ flow.in_port }} |
{{ flow.dl_src }} |
{{ flow.dl_dst }} |
{{ flow.nw_src }} |
{{ flow.nw_dst }} |
{{ flow.tp_src }} |
{{ flow.tp_dst }} |
{{ flow.actions }} |
{% endfor %}
{% endfor %}
ATTENTION: Klicking any of the buttons will delete your code!!!