netdev-dpdk: fix mbuf leaks
[cascardo/ovs.git] / tutorial / t-stage1
1 #! /bin/sh -ve
2
3 ovs-ofctl add-flow br0 "table=1, priority=0, actions=drop"
4
5 ovs-ofctl add-flow br0 \
6     "table=1, priority=99, in_port=1, actions=resubmit(,2)"
7
8 ovs-ofctl add-flows br0 - <<'EOF'
9     table=1, priority=99, in_port=2, vlan_tci=0, actions=mod_vlan_vid:20, resubmit(,2)
10     table=1, priority=99, in_port=3, vlan_tci=0, actions=mod_vlan_vid:30, resubmit(,2)
11     table=1, priority=99, in_port=4, vlan_tci=0, actions=mod_vlan_vid:30, resubmit(,2)
12 EOF