]> git.proxmox.com Git - ovs.git/blame - tests/nsh.at
netlink linux: enable listening to all nsids
[ovs.git] / tests / nsh.at
CommitLineData
e3981271
JS
1AT_BANNER([network service header (NSH)])
2
cc6902fe
JS
3### -----------------------------------------------------------------
4### Simple NSH matching test case
5### -----------------------------------------------------------------
6
e3981271
JS
7AT_SETUP([nsh - matching])
8
9OVS_VSWITCHD_START([dnl
10 set bridge br0 datapath_type=dummy \
11 protocols=OpenFlow10,OpenFlow13,OpenFlow14,OpenFlow15 -- \
12 add-port br0 p1 -- set Interface p1 type=dummy ofport_request=1 -- \
13 add-port br0 p2 -- set Interface p2 type=dummy ofport_request=2])
14
15AT_DATA([flows.txt], [dnl
17553f27 16 table=0,in_port=1,dl_type=0x894f,nsh_ttl=63,nsh_mdtype=1,nsh_np=3,nsh_spi=0x123456,nsh_si=255,nsh_c1=0x11223344,actions=set_field:0x2->nsh_flags,set_field:254->nsh_si,set_field:0x44332211->nsh_c1,2
e3981271
JS
17])
18
19AT_CHECK([
20 ovs-ofctl del-flows br0
21 ovs-ofctl -Oopenflow13 add-flows br0 flows.txt
22 ovs-ofctl -Oopenflow13 dump-flows br0 | ofctl_strip | sort | grep actions
23], [0], [dnl
17553f27 24 in_port=1,dl_type=0x894f,nsh_ttl=63,nsh_mdtype=1,nsh_np=3,nsh_spi=0x123456,nsh_si=255,nsh_c1=0x11223344 actions=set_field:2->nsh_flags,set_field:254->nsh_si,set_field:0x44332211->nsh_c1,output:2
e3981271
JS
25])
26
27AT_CHECK([
17553f27 28 ovs-appctl ofproto/trace br0 'in_port=1,dl_type=0x894f,nsh_ttl=63,nsh_mdtype=1,nsh_np=3,nsh_spi=0x123456,nsh_si=255,nsh_c1=0x11223344,nsh_c2=0x55667788,nsh_c3=0x99aabbcc,nsh_c4=0xddeeff00'
e3981271 29], [0], [dnl
17553f27 30Flow: in_port=1,vlan_tci=0x0000,dl_src=00:00:00:00:00:00,dl_dst=00:00:00:00:00:00,dl_type=0x894f,nsh_flags=0,nsh_ttl=63,nsh_mdtype=1,nsh_np=3,nsh_spi=0x123456,nsh_si=255,nsh_c1=0x11223344,nsh_c2=0x55667788,nsh_c3=0x99aabbcc,nsh_c4=0xddeeff00,nw_proto=0,nw_tos=0,nw_ecn=0,nw_ttl=0
e3981271
JS
31
32bridge("br0")
33-------------
17553f27
YY
34 0. in_port=1,dl_type=0x894f,nsh_ttl=63,nsh_mdtype=1,nsh_np=3,nsh_spi=0x123456,nsh_si=255,nsh_c1=0x11223344, priority 32768
35 set_field:2->nsh_flags
e3981271
JS
36 set_field:254->nsh_si
37 set_field:0x44332211->nsh_c1
38 output:2
39
17553f27
YY
40Final flow: in_port=1,vlan_tci=0x0000,dl_src=00:00:00:00:00:00,dl_dst=00:00:00:00:00:00,dl_type=0x894f,nsh_flags=2,nsh_ttl=63,nsh_mdtype=1,nsh_np=3,nsh_spi=0x123456,nsh_si=254,nsh_c1=0x44332211,nsh_c2=0x55667788,nsh_c3=0x99aabbcc,nsh_c4=0xddeeff00,nw_proto=0,nw_tos=0,nw_ecn=0,nw_ttl=0
41Megaflow: recirc_id=0,eth,in_port=1,dl_type=0x894f,nsh_flags=0,nsh_ttl=63,nsh_mdtype=1,nsh_np=3,nsh_spi=0x123456,nsh_si=255,nsh_c1=0x11223344
42Datapath actions: set(nsh(flags=2,ttl=63,spi=0x123456,si=254,c1=0x44332211)),2
e3981271
JS
43])
44
45OVS_VSWITCHD_STOP
46AT_CLEANUP
cc6902fe
JS
47
48
49### -----------------------------------------------------------------
50### NSH MD1 on Ethernet encapsulation over veth link
51### -----------------------------------------------------------------
52
53AT_SETUP([nsh - md1 encap over a veth link])
54
55OVS_VSWITCHD_START([])
56
57AT_CHECK([
58ovs-vsctl set bridge br0 datapath_type=dummy \
59 protocols=OpenFlow10,OpenFlow13,OpenFlow14,OpenFlow15 -- \
60 add-port br0 p1 -- set Interface p1 type=dummy ofport_request=1 -- \
61 add-port br0 p2 -- set Interface p2 type=dummy ofport_request=2 -- \
62 add-port br0 v3 -- set Interface v3 type=patch options:peer=v4 ofport_request=3 -- \
63 add-port br0 v4 -- set Interface v4 type=patch options:peer=v3 ofport_request=4])
64
65AT_DATA([flows.txt], [dnl
66 table=0,in_port=1,ip,actions=encap(nsh(md_type=1)),set_field:0x1234->nsh_spi,set_field:0x11223344->nsh_c1,encap(ethernet),set_field:11:22:33:44:55:66->dl_dst,3
67 table=0,in_port=4,dl_type=0x894f,nsh_mdtype=1,nsh_spi=0x1234,nsh_c1=0x11223344,actions=decap(),decap(),2
68])
69
70AT_CHECK([
71 ovs-ofctl del-flows br0
72 ovs-ofctl -Oopenflow13 add-flows br0 flows.txt
73 ovs-ofctl -Oopenflow13 dump-flows br0 | ofctl_strip | sort | grep actions
74], [0], [dnl
75 in_port=4,dl_type=0x894f,nsh_mdtype=1,nsh_spi=0x1234,nsh_c1=0x11223344 actions=decap(),decap(),output:2
76 ip,in_port=1 actions=encap(nsh(md_type=1)),set_field:0x1234->nsh_spi,set_field:0x11223344->nsh_c1,encap(ethernet),set_field:11:22:33:44:55:66->eth_dst,output:3
77])
78
79# TODO:
80# The fields nw_proto, nw_tos, nw_ecn, nw_ttl in final flow seem unnecessary. Can they be avoided?
81# The match on dl_dst=66:77:88:99:aa:bb in the Megaflow is a side effect of setting the dl_dst in the pushed outer
82# Ethernet header. It is a consequence of using wc->masks both for tracking matched and set bits and seems hard to
83# avoid except by using separate masks for both purposes.
84
85AT_CHECK([
86 ovs-appctl ofproto/trace br0 'in_port=1,icmp,dl_src=00:11:22:33:44:55,dl_dst=66:77:88:99:aa:bb,nw_dst=10.10.10.10,nw_src=20.20.20.20'
87], [0], [dnl
88Flow: icmp,in_port=1,vlan_tci=0x0000,dl_src=00:11:22:33:44:55,dl_dst=66:77:88:99:aa:bb,nw_src=20.20.20.20,nw_dst=10.10.10.10,nw_tos=0,nw_ecn=0,nw_ttl=0,icmp_type=0,icmp_code=0
89
90bridge("br0")
91-------------
92 0. ip,in_port=1, priority 32768
93 encap(nsh(md_type=1))
94 set_field:0x1234->nsh_spi
95 set_field:0x11223344->nsh_c1
96 encap(ethernet)
97 set_field:11:22:33:44:55:66->eth_dst
98 output:3
99
100bridge("br0")
101-------------
102 0. in_port=4,dl_type=0x894f,nsh_mdtype=1,nsh_spi=0x1234,nsh_c1=0x11223344, priority 32768
103 decap()
104 decap()
105
17553f27 106Final flow: in_port=1,vlan_tci=0x0000,dl_src=00:00:00:00:00:00,dl_dst=11:22:33:44:55:66,dl_type=0x894f,nsh_flags=0,nsh_ttl=63,nsh_mdtype=1,nsh_np=3,nsh_spi=0x1234,nsh_si=255,nsh_c1=0x11223344,nsh_c2=0x0,nsh_c3=0x0,nsh_c4=0x0,nw_proto=0,nw_tos=0,nw_ecn=0,nw_ttl=0
cc6902fe 107Megaflow: recirc_id=0,eth,ip,in_port=1,dl_dst=66:77:88:99:aa:bb,nw_frag=no
17553f27 108Datapath actions: push_nsh(flags=0,ttl=63,mdtype=1,np=3,spi=0x1234,si=255,c1=0x11223344,c2=0x0,c3=0x0,c4=0x0),push_eth(src=00:00:00:00:00:00,dst=11:22:33:44:55:66),pop_eth,pop_nsh(),set(eth(dst=11:22:33:44:55:66)),recirc(0x1)
cc6902fe
JS
109])
110
111AT_CHECK([
112 ovs-appctl ofproto/trace br0 'in_port=4,dl_type=0x894f,nsh_mdtype=1,nsh_np=3,nsh_spi=0x1234,nsh_c1=0x11223344'
113], [0], [dnl
17553f27 114Flow: in_port=4,vlan_tci=0x0000,dl_src=00:00:00:00:00:00,dl_dst=00:00:00:00:00:00,dl_type=0x894f,nsh_flags=0,nsh_ttl=0,nsh_mdtype=1,nsh_np=3,nsh_spi=0x1234,nsh_si=0,nsh_c1=0x11223344,nsh_c2=0x0,nsh_c3=0x0,nsh_c4=0x0,nw_proto=0,nw_tos=0,nw_ecn=0,nw_ttl=0
cc6902fe
JS
115
116bridge("br0")
117-------------
118 0. in_port=4,dl_type=0x894f,nsh_mdtype=1,nsh_spi=0x1234,nsh_c1=0x11223344, priority 32768
119 decap()
120 decap()
121
122Final flow: unchanged
123Megaflow: recirc_id=0,eth,in_port=4,dl_type=0x894f,nsh_mdtype=1,nsh_np=3,nsh_spi=0x1234,nsh_c1=0x11223344
f59cb331 124Datapath actions: pop_eth,pop_nsh(),recirc(0x2)
cc6902fe
JS
125])
126
127# Now send two real ICMP echo request packets in on port p1
128
129AT_CHECK([
130 ovs-appctl netdev-dummy/receive p1 1e2ce92a669e3a6dd2099cab0800450000548a53400040011addc0a80a0ac0a80a1e08006f200a4d0001fc509a58000000002715020000000000101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f3031323334353637
131 ovs-appctl netdev-dummy/receive p1 1e2ce92a669e3a6dd2099cab0800450000548a83400040011aadc0a80a0ac0a80a1e0800b7170a4d0002fd509a5800000000de1c020000000000101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f3031323334353637
132], [0], [ignore])
133
134ovs-appctl time/warp 1000
135
136# A packet count of 1 in the megaflow entries means the first packet was processed by
137# the ofproto slow path and the second successfully by the datapath flow entry.
138
139AT_CHECK([
140 ovs-appctl dpctl/dump-flows dummy@ovs-dummy | strip_used | grep -v ipv6 | sort
141], [0], [flow-dump from non-dpdk interfaces:
17553f27 142recirc_id(0),in_port(1),packet_type(ns=0,id=0),eth(dst=1e:2c:e9:2a:66:9e),eth_type(0x0800),ipv4(frag=no), packets:1, bytes:98, used:0.0s, actions:push_nsh(flags=0,ttl=63,mdtype=1,np=3,spi=0x1234,si=255,c1=0x11223344,c2=0x0,c3=0x0,c4=0x0),push_eth(src=00:00:00:00:00:00,dst=11:22:33:44:55:66),pop_eth,pop_nsh(),set(eth(dst=11:22:33:44:55:66)),recirc(0x3)
cc6902fe
JS
143recirc_id(0x3),in_port(1),packet_type(ns=0,id=0),eth_type(0x0800),ipv4(frag=no), packets:1, bytes:98, used:0.0s, actions:2
144])
145
146# Verify, that VLAN tagged packets can be encapsulated by NSH header.
147ovs-appctl time/warp 10000
148
149AT_DATA([flows.txt], [dnl
150 table=0,in_port=1,actions=push_vlan:0x8100,mod_vlan_vid:100,3
151 table=0,in_port=4,actions=encap(nsh),decap(),2
152])
153
154AT_CHECK([
155 ovs-ofctl del-flows br0
156 ovs-ofctl -Oopenflow13 add-flows br0 flows.txt
157 ovs-ofctl -Oopenflow13 dump-flows br0 | ofctl_strip | sort | grep actions
158], [0], [dnl
159 in_port=1 actions=push_vlan:0x8100,set_field:4196->vlan_vid,output:3
160 in_port=4 actions=encap(nsh),decap(),output:2
161])
162
163AT_CHECK([
164 ovs-appctl netdev-dummy/receive p1 1e2ce92a669e3a6dd2099cab0800450000548a53400040011addc0a80a0ac0a80a1e08006f200a4d0001fc509a58000000002715020000000000101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f3031323334353637
165 ovs-appctl netdev-dummy/receive p1 1e2ce92a669e3a6dd2099cab0800450000548a83400040011aadc0a80a0ac0a80a1e0800b7170a4d0002fd509a5800000000de1c020000000000101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f3031323334353637
166], [0], [ignore])
167
f59cb331
YY
168ovs-appctl time/warp 1000
169ovs-appctl time/warp 1000
cc6902fe
JS
170ovs-appctl time/warp 1000
171
172AT_CHECK([
173 ovs-appctl dpctl/dump-flows dummy@ovs-dummy | strip_used | grep -v ipv6 | sort
174], [0], [flow-dump from non-dpdk interfaces:
17553f27 175recirc_id(0),in_port(1),packet_type(ns=0,id=0),eth_type(0x0800),ipv4(frag=no), packets:1, bytes:98, used:0.0s, actions:push_vlan(vid=100,pcp=0),push_nsh(flags=0,ttl=63,mdtype=1,np=3,spi=0x0,si=255,c1=0x0,c2=0x0,c3=0x0,c4=0x0),pop_nsh(),recirc(0x4)
cc6902fe
JS
176recirc_id(0x4),in_port(1),packet_type(ns=0,id=0),eth_type(0x8100),vlan(vid=100,pcp=0),encap(eth_type(0x0800),ipv4(frag=no)), packets:1, bytes:102, used:0.0s, actions:2
177])
178
179OVS_VSWITCHD_STOP
180AT_CLEANUP
181
182
183### -----------------------------------------------------------------
184### NSH MD2 on Ethernet encapsulation over veth link
185### -----------------------------------------------------------------
186
187AT_SETUP([nsh - md2 encap over a veth link])
188
189OVS_VSWITCHD_START([])
190
191AT_CHECK([
192ovs-vsctl set bridge br0 datapath_type=dummy \
193 protocols=OpenFlow10,OpenFlow13,OpenFlow14,OpenFlow15 -- \
194 add-port br0 p1 -- set Interface p1 type=dummy ofport_request=1 -- \
195 add-port br0 p2 -- set Interface p2 type=dummy ofport_request=2 -- \
196 add-port br0 v3 -- set Interface v3 type=patch options:peer=v4 ofport_request=3 -- \
197 add-port br0 v4 -- set Interface v4 type=patch options:peer=v3 ofport_request=4])
198
199AT_DATA([flows.txt], [dnl
f59cb331 200 table=0,in_port=1,ip,actions=encap(nsh(md_type=2,tlv(0x1000,10,0x12345678),tlv(0x2000,20,0xfedcba9876543210))),set_field:0x1234->nsh_spi,encap(ethernet),set_field:11:22:33:44:55:66->dl_dst,3
cc6902fe
JS
201 table=0,in_port=4,dl_type=0x894f,nsh_mdtype=2,nsh_spi=0x1234,actions=decap(),decap(),2
202])
203
204AT_CHECK([
205 ovs-ofctl del-flows br0
206 ovs-ofctl -Oopenflow13 add-flows br0 flows.txt
207 ovs-ofctl -Oopenflow13 dump-flows br0 | ofctl_strip | sort | grep actions
208], [0], [dnl
209 in_port=4,dl_type=0x894f,nsh_mdtype=2,nsh_spi=0x1234 actions=decap(),decap(),output:2
f59cb331 210 ip,in_port=1 actions=encap(nsh(md_type=2,tlv(0x1000,10,0x12345678),tlv(0x2000,20,0xfedcba9876543210))),set_field:0x1234->nsh_spi,encap(ethernet),set_field:11:22:33:44:55:66->eth_dst,output:3
cc6902fe
JS
211])
212
213AT_CHECK([
214 ovs-appctl ofproto/trace br0 'in_port=1,icmp,dl_src=00:11:22:33:44:55,dl_dst=66:77:88:99:aa:bb,nw_dst=10.10.10.10,nw_src=20.20.20.20'
215], [0], [dnl
216Flow: icmp,in_port=1,vlan_tci=0x0000,dl_src=00:11:22:33:44:55,dl_dst=66:77:88:99:aa:bb,nw_src=20.20.20.20,nw_dst=10.10.10.10,nw_tos=0,nw_ecn=0,nw_ttl=0,icmp_type=0,icmp_code=0
217
218bridge("br0")
219-------------
220 0. ip,in_port=1, priority 32768
f59cb331 221 encap(nsh(md_type=2,tlv(0x1000,10,0x12345678),tlv(0x2000,20,0xfedcba9876543210)))
cc6902fe
JS
222 set_field:0x1234->nsh_spi
223 encap(ethernet)
224 set_field:11:22:33:44:55:66->eth_dst
225 output:3
226
227bridge("br0")
228-------------
229 0. in_port=4,dl_type=0x894f,nsh_mdtype=2,nsh_spi=0x1234, priority 32768
230 decap()
231 decap()
232
17553f27 233Final flow: in_port=1,vlan_tci=0x0000,dl_src=00:00:00:00:00:00,dl_dst=11:22:33:44:55:66,dl_type=0x894f,nsh_flags=0,nsh_ttl=63,nsh_mdtype=2,nsh_np=3,nsh_spi=0x1234,nsh_si=255,nw_proto=0,nw_tos=0,nw_ecn=0,nw_ttl=0
cc6902fe 234Megaflow: recirc_id=0,eth,ip,in_port=1,dl_dst=66:77:88:99:aa:bb,nw_frag=no
17553f27 235Datapath actions: push_nsh(flags=0,ttl=63,mdtype=2,np=3,spi=0x1234,si=255,md2=0x10000a041234567820001408fedcba9876543210),push_eth(src=00:00:00:00:00:00,dst=11:22:33:44:55:66),pop_eth,pop_nsh(),set(eth(dst=11:22:33:44:55:66)),recirc(0x1)
cc6902fe
JS
236])
237
238AT_CHECK([
239 ovs-appctl ofproto/trace br0 'in_port=4,dl_type=0x894f,nsh_mdtype=2,nsh_np=3,nsh_spi=0x1234'
240], [0], [dnl
17553f27 241Flow: in_port=4,vlan_tci=0x0000,dl_src=00:00:00:00:00:00,dl_dst=00:00:00:00:00:00,dl_type=0x894f,nsh_flags=0,nsh_ttl=0,nsh_mdtype=2,nsh_np=3,nsh_spi=0x1234,nsh_si=0,nw_proto=0,nw_tos=0,nw_ecn=0,nw_ttl=0
cc6902fe
JS
242
243bridge("br0")
244-------------
245 0. in_port=4,dl_type=0x894f,nsh_mdtype=2,nsh_spi=0x1234, priority 32768
246 decap()
247 decap()
248
249Final flow: unchanged
250Megaflow: recirc_id=0,eth,in_port=4,dl_type=0x894f,nsh_mdtype=2,nsh_np=3,nsh_spi=0x1234
f59cb331 251Datapath actions: pop_eth,pop_nsh(),recirc(0x2)
cc6902fe
JS
252])
253
254# Now send two real ICMP echo request packets in on port p1
255
256AT_CHECK([
257 ovs-appctl netdev-dummy/receive p1 1e2ce92a669e3a6dd2099cab0800450000548a53400040011addc0a80a0ac0a80a1e08006f200a4d0001fc509a58000000002715020000000000101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f3031323334353637
258 ovs-appctl netdev-dummy/receive p1 1e2ce92a669e3a6dd2099cab0800450000548a83400040011aadc0a80a0ac0a80a1e0800b7170a4d0002fd509a5800000000de1c020000000000101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f3031323334353637
259], [0], [ignore])
260
261ovs-appctl time/warp 1000
262
263# A packet count of 1 in the megaflow entries means the first packet was processed by
264# the ofproto slow path and the second successfully by the datapath flow entry.
265
266AT_CHECK([
267 ovs-appctl dpctl/dump-flows dummy@ovs-dummy | strip_used | grep -v ipv6 | sort
268], [0], [flow-dump from non-dpdk interfaces:
17553f27 269recirc_id(0),in_port(1),packet_type(ns=0,id=0),eth(dst=1e:2c:e9:2a:66:9e),eth_type(0x0800),ipv4(frag=no), packets:1, bytes:98, used:0.0s, actions:push_nsh(flags=0,ttl=63,mdtype=2,np=3,spi=0x1234,si=255,md2=0x10000a041234567820001408fedcba9876543210),push_eth(src=00:00:00:00:00:00,dst=11:22:33:44:55:66),pop_eth,pop_nsh(),set(eth(dst=11:22:33:44:55:66)),recirc(0x3)
cc6902fe
JS
270recirc_id(0x3),in_port(1),packet_type(ns=0,id=0),eth_type(0x0800),ipv4(frag=no), packets:1, bytes:98, used:0.0s, actions:2
271])
272
273
274OVS_VSWITCHD_STOP
275AT_CLEANUP
276
277
278### -----------------------------------------------------------------
279### Triangle bridge setup with VXLAN-GPE tunnels
280### -----------------------------------------------------------------
281
282########################
283# VxLAN-gpe + NSH tunneling test setup for PTAP bridge
284#
285# 192.168.10.10 192.168.10.20 192.168.10.30
286# n1 n2 n3
287# |ovs-n1 |ovs-n2 |ovs-n3
288# +------o------+ +------o------+ +------o------+
289# | br-in1 | | br-in2 | | br-in3 |
290# | (PTAP) | | (PTAP) | | (PTAP) |
291# +------o------+ +------o------+ +------o------+
292# vxlan-gpe vxlan-gpe vxlan-gpe
293# 10.0.0.1 (10.0.0.2) (10.0.0.3)
294# (20.0.0.1) 20.0.0.2 (20.0.0.3)
295# (30.0.0.1) LOCAL (30.0.0.2) LOCAL 30.0.0.3 LOCAL
296# +-----------o-+ +-----------o-+ +-----------o-+
297# | br-p1 | | br-p2 | | br-p3 |
298# +------o------+ +------o------+ +------o------+
299# p1-0 | | p2-0 | p3-0
300# p0-1 | | p0-2 | p0-3
301# +--o------------------------o-------------------------o--+
302# | br0 |
303# +--------------------------------------------------------+
304#
305# VxLAN-gpe tunnel ports:
306#
307# No Bridge Name Packet-type Remote bridge & ports
308# -----------------------------------------------------------------------
309# 1020 br-in1 vxlangpe12 ptap br-in2 2010 (ptap)
310# 1030 br-in1 vxlangpe13 ptap br-in3 3010 (ptap)
311# 2010 br-in2 vxlangpe21 ptap br-in1 1020 (ptap)
312# 2030 br-in2 vxlangpe13 ptap br-in3 3020 (ptap)
313# 3010 br-in1 vxlangpe31 ptap br-in1 1030 (ptap)
314# 3020 br-in1 vxlangpe32 ptap br-in2 2010 (ptap)
315
316AT_SETUP([nsh - triangle PTAP bridge setup with NSH over vxlan-gpe])
317
318OVS_VSWITCHD_START([])
319
320HWADDR_BRP1=aa:55:00:00:00:01
321HWADDR_BRP2=aa:55:00:00:00:02
322HWADDR_BRP3=aa:55:00:00:00:03
323
324# Setup bridge infrastructure
325AT_CHECK([
326 ovs-vsctl add-br br-in1 -- \
327 set bridge br-in1 datapath_type=dummy fail-mode=standalone
328 ovs-vsctl add-br br-in2 -- \
329 set bridge br-in2 datapath_type=dummy fail-mode=standalone
330 ovs-vsctl add-br br-in3 -- \
331 set bridge br-in3 datapath_type=dummy fail-mode=standalone
332 ovs-vsctl add-br br-p1 -- \
333 set bridge br-p1 datapath_type=dummy fail-mode=standalone other-config:hwaddr=$HWADDR_BRP1
334 ovs-vsctl add-br br-p2 -- \
335 set bridge br-p2 datapath_type=dummy fail-mode=standalone other-config:hwaddr=$HWADDR_BRP2
336 ovs-vsctl add-br br-p3 -- \
337 set bridge br-p3 datapath_type=dummy fail-mode=standalone other-config:hwaddr=$HWADDR_BRP3
338
339 ovs-vsctl add-port br-p1 p1-0 -- set interface p1-0 type=patch options:peer=p0-1 ofport_request=2
340 ovs-vsctl add-port br-p2 p2-0 -- set interface p2-0 type=patch options:peer=p0-2 ofport_request=2
341 ovs-vsctl add-port br-p3 p3-0 -- set interface p3-0 type=patch options:peer=p0-3 ofport_request=2
342 ovs-vsctl add-port br0 p0-1 -- set interface p0-1 type=patch options:peer=p1-0 ofport_request=10
343 ovs-vsctl add-port br0 p0-2 -- set interface p0-2 type=patch options:peer=p2-0 ofport_request=20
344 ovs-vsctl add-port br0 p0-3 -- set interface p0-3 type=patch options:peer=p3-0 ofport_request=30
345
346 # Populate the MAC table of br0
347 ovs-ofctl del-flows br0
348 ovs-ofctl add-flow br0 dl_dst=$HWADDR_BRP1,actions=10
349 ovs-ofctl add-flow br0 dl_dst=$HWADDR_BRP2,actions=20
350 ovs-ofctl add-flow br0 dl_dst=$HWADDR_BRP3,actions=30
351
352 ovs-ofctl del-flows br-in1
353 ovs-ofctl del-flows br-in2
354 ovs-ofctl del-flows br-in3
355 ovs-ofctl del-flows br-p1
356 ovs-ofctl del-flows br-p2
357 ovs-ofctl del-flows br-p3
358], [0])
359
360### Setup vxlan-gpe tunnels
361AT_CHECK([
362 ovs-vsctl add-port br-in1 vxlangpe12 -- \
363 set interface vxlangpe12 type=vxlan options:exts=gpe options:remote_ip=10.0.0.2 options:packet_type=ptap ofport_request=1020
364 ovs-vsctl add-port br-in1 vxlangpe13 -- \
365 set interface vxlangpe13 type=vxlan options:exts=gpe options:remote_ip=10.0.0.3 options:packet_type=ptap ofport_request=1030
366
367 ovs-vsctl add-port br-in2 vxlangpe21 -- \
368 set interface vxlangpe21 type=vxlan options:exts=gpe options:remote_ip=20.0.0.1 options:packet_type=ptap ofport_request=2010
369 ovs-vsctl add-port br-in2 vxlangpe23 -- \
370 set interface vxlangpe23 type=vxlan options:exts=gpe options:remote_ip=20.0.0.3 options:packet_type=ptap ofport_request=2030
371
372 ovs-vsctl add-port br-in3 vxlangpe31 -- \
373 set interface vxlangpe31 type=vxlan options:exts=gpe options:remote_ip=30.0.0.1 options:packet_type=ptap ofport_request=3010
374 ovs-vsctl add-port br-in3 vxlangpe32 -- \
375 set interface vxlangpe32 type=vxlan options:exts=gpe options:remote_ip=30.0.0.2 options:packet_type=ptap ofport_request=3020
376
377 ovs-appctl netdev-dummy/ip4addr br-p1 10.0.0.1/24
378 ovs-appctl ovs/route/add 10.0.0.0/24 br-p1
379 ovs-appctl tnl/arp/set br-p1 10.0.0.1 $HWADDR_BRP1
380 ovs-appctl tnl/arp/set br-p1 10.0.0.2 $HWADDR_BRP2
381 ovs-appctl tnl/arp/set br-p1 10.0.0.3 $HWADDR_BRP3
382
383 ovs-appctl netdev-dummy/ip4addr br-p2 20.0.0.2/24
384 ovs-appctl ovs/route/add 20.0.0.0/24 br-p2
385 ovs-appctl tnl/arp/set br-p2 20.0.0.1 $HWADDR_BRP1
386 ovs-appctl tnl/arp/set br-p2 20.0.0.2 $HWADDR_BRP2
387 ovs-appctl tnl/arp/set br-p2 20.0.0.3 $HWADDR_BRP3
388
389 ovs-appctl netdev-dummy/ip4addr br-p3 30.0.0.3/24
390 ovs-appctl ovs/route/add 30.0.0.0/24 br-p3
391 ovs-appctl tnl/arp/set br-p3 30.0.0.1 $HWADDR_BRP1
392 ovs-appctl tnl/arp/set br-p3 30.0.0.2 $HWADDR_BRP2
393 ovs-appctl tnl/arp/set br-p3 30.0.0.3 $HWADDR_BRP3
394], [0], [stdout])
395
396AT_CHECK([
397 ovs-appctl ovs/route/add 10.0.0.0/24 br-p1
398 ovs-appctl tnl/arp/set br-p1 10.0.0.1 $HWADDR_BRP1
399 ovs-appctl tnl/arp/set br-p1 10.0.0.2 $HWADDR_BRP2
400 ovs-appctl tnl/arp/set br-p1 10.0.0.3 $HWADDR_BRP3
401], [0], [stdout])
402
403AT_CHECK([
404 ovs-appctl ovs/route/add 20.0.0.0/24 br-p2
405 ovs-appctl tnl/arp/set br-p2 20.0.0.1 $HWADDR_BRP1
406 ovs-appctl tnl/arp/set br-p2 20.0.0.2 $HWADDR_BRP2
407 ovs-appctl tnl/arp/set br-p2 20.0.0.3 $HWADDR_BRP3
408], [0], [stdout])
409
410AT_CHECK([
411 ovs-appctl ovs/route/add 30.0.0.0/24 br-p3
412 ovs-appctl tnl/arp/set br-p3 30.0.0.1 $HWADDR_BRP1
413 ovs-appctl tnl/arp/set br-p3 30.0.0.2 $HWADDR_BRP2
414 ovs-appctl tnl/arp/set br-p3 30.0.0.3 $HWADDR_BRP3
415], [0], [stdout])
416
417AT_CHECK([
418 ovs-appctl ovs/route/show | grep User:
419], [0], [dnl
420User: 10.0.0.0/24 dev br-p1 SRC 10.0.0.1
421User: 20.0.0.0/24 dev br-p2 SRC 20.0.0.2
422User: 30.0.0.0/24 dev br-p3 SRC 30.0.0.3
423])
424
425AT_CHECK([
426 ovs-appctl tnl/neigh/show | grep br-p | sort
427], [0], [stdout])
428
429
430### Flows in br-p<x>to twist TEP IP addresses in tunnel IP headers
431AT_CHECK([
432 ovs-ofctl add-flow br-p1 in_port:LOCAL,actions=2
433 ovs-ofctl add-flow br-p1 in_port:2,ip,nw_dst:20.0.0.1,actions=mod_nw_dst:10.0.0.1,mod_nw_src:10.0.0.2,LOCAL
434 ovs-ofctl add-flow br-p1 in_port:2,ip,nw_dst:30.0.0.1,actions=mod_nw_dst:10.0.0.1,mod_nw_src:10.0.0.3,LOCAL
435
436 ovs-ofctl add-flow br-p2 in_port:LOCAL,actions=2
437 ovs-ofctl add-flow br-p2 in_port:2,ip,nw_dst:10.0.0.2,actions=mod_nw_dst:20.0.0.2,mod_nw_src:20.0.0.1,LOCAL
438 ovs-ofctl add-flow br-p2 in_port:2,ip,nw_dst:30.0.0.2,actions=mod_nw_dst:20.0.0.2,mod_nw_src:20.0.0.3,LOCAL
439
440 ovs-ofctl add-flow br-p3 in_port:LOCAL,actions=2
441 ovs-ofctl add-flow br-p3 in_port:2,ip,nw_dst:10.0.0.3,actions=mod_nw_dst:30.0.0.3,mod_nw_src:30.0.0.1,LOCAL
442 ovs-ofctl add-flow br-p3 in_port:2,ip,nw_dst:20.0.0.3,actions=mod_nw_dst:30.0.0.3,mod_nw_src:30.0.0.2,LOCAL
443], [0])
444
445AT_CHECK([
446 ovs-ofctl dump-flows br-p1 | ofctl_strip | sort | grep actions
447 ovs-ofctl dump-flows br-p2 | ofctl_strip | sort | grep actions
448 ovs-ofctl dump-flows br-p3 | ofctl_strip | sort | grep actions
449], [0], [dnl
450 in_port=LOCAL actions=output:2
451 ip,in_port=2,nw_dst=20.0.0.1 actions=mod_nw_dst:10.0.0.1,mod_nw_src:10.0.0.2,LOCAL
452 ip,in_port=2,nw_dst=30.0.0.1 actions=mod_nw_dst:10.0.0.1,mod_nw_src:10.0.0.3,LOCAL
453 in_port=LOCAL actions=output:2
454 ip,in_port=2,nw_dst=10.0.0.2 actions=mod_nw_dst:20.0.0.2,mod_nw_src:20.0.0.1,LOCAL
455 ip,in_port=2,nw_dst=30.0.0.2 actions=mod_nw_dst:20.0.0.2,mod_nw_src:20.0.0.3,LOCAL
456 in_port=LOCAL actions=output:2
457 ip,in_port=2,nw_dst=10.0.0.3 actions=mod_nw_dst:30.0.0.3,mod_nw_src:30.0.0.1,LOCAL
458 ip,in_port=2,nw_dst=20.0.0.3 actions=mod_nw_dst:30.0.0.3,mod_nw_src:30.0.0.2,LOCAL
459])
460
461### Setup test ports for traffic injection
462N1_IP=192.168.10.10
463N2_IP=192.168.10.20
464N3_IP=192.168.10.30
465N1_MAC=aa:55:aa:55:00:01
466N2_MAC=aa:55:aa:55:00:02
467N3_MAC=aa:55:aa:55:00:03
468N1_OFPORT=10
469N2_OFPORT=20
470N3_OFPORT=30
471
472AT_CHECK([
473 ovs-vsctl add-port br-in1 n1 -- \
474 set interface n1 type=dummy ofport_request=$N1_OFPORT options:tx_pcap=n1.pcap
475 ovs-vsctl add-port br-in2 n2 -- \
476 set interface n2 type=dummy ofport_request=$N2_OFPORT options:tx_pcap=n2.pcap
477 ovs-vsctl add-port br-in3 n3 -- \
478 set interface n3 type=dummy ofport_request=$N3_OFPORT options:tx_pcap=n3.pcap
479], [0])
480
481#N1_DPPORT=$(ovs-appctl dpif/show | grep "n1 10" | sed 's|.*/\([[0-9]]*\):.*|\1|')
482#N2_DPPORT=$(ovs-appctl dpif/show | grep "n2 20" | sed 's|.*/\([[0-9]]*\):.*|\1|')
483#N3_DPPORT=$(ovs-appctl dpif/show | grep "n3 30" | sed 's|.*/\([[0-9]]*\):.*|\1|')
484
485### Verify datapath configuration
486AT_CHECK([
487 ovs-appctl dpif/show | grep -v hit | sed 's/\t/ /g'
488], [0], [dnl
489 br-in1:
490 br-in1 65534/101: (dummy-internal)
491 n1 10/4: (dummy)
492 vxlangpe12 1020/4789: (vxlan: packet_type=ptap, remote_ip=10.0.0.2)
493 vxlangpe13 1030/4789: (vxlan: packet_type=ptap, remote_ip=10.0.0.3)
494 br-in2:
495 br-in2 65534/102: (dummy-internal)
496 n2 20/5: (dummy)
497 vxlangpe21 2010/4789: (vxlan: packet_type=ptap, remote_ip=20.0.0.1)
498 vxlangpe23 2030/4789: (vxlan: packet_type=ptap, remote_ip=20.0.0.3)
499 br-in3:
500 br-in3 65534/103: (dummy-internal)
501 n3 30/6: (dummy)
502 vxlangpe31 3010/4789: (vxlan: packet_type=ptap, remote_ip=30.0.0.1)
503 vxlangpe32 3020/4789: (vxlan: packet_type=ptap, remote_ip=30.0.0.2)
504 br-p1:
505 br-p1 65534/1: (dummy-internal)
506 p1-0 2/none: (patch: peer=p0-1)
507 br-p2:
508 br-p2 65534/2: (dummy-internal)
509 p2-0 2/none: (patch: peer=p0-2)
510 br-p3:
511 br-p3 65534/3: (dummy-internal)
512 p3-0 2/none: (patch: peer=p0-3)
513 br0:
514 br0 65534/100: (dummy-internal)
515 p0-1 10/none: (patch: peer=p1-0)
516 p0-2 20/none: (patch: peer=p2-0)
517 p0-3 30/none: (patch: peer=p3-0)
518])
519
520### Setup SFC flow configuration
521
522# br-in1 is SFC classifier (table 1) and final SFF (tables 2,3)
523AT_DATA([br-in1.txt], [dnl
524 table=0,in_port=10,ip,actions=decap(),goto_table:1
525 table=0,in_port=10,packet_type=(1,0x800),actions=goto_table:1
526 table=0,in_port=1020,packet_type=(1,0x894f),actions=goto_table:2
527 table=0,in_port=1030,packet_type=(1,0x894f),actions=goto_table:2
528 table=1,priority=32,packet_type=(1,0x800),nw_dst=192.168.10.30,actions=encap(nsh(md_type=1)),set_field:0x3000->nsh_spi,output:1030
529 table=1,priority=0,packet_type=(1,0x800),nw_dst=0.0.0.0/0,actions=encap(nsh(md_type=1)),set_field:0x3020->nsh_spi,output:1020
530 table=2,packet_type=(1,0x894f),nsh_spi=0x1000,nsh_si=255,actions=decap(),goto_table:3
531 table=2,packet_type=(1,0x894f),nsh_spi=0x1020,nsh_si=254,actions=decap(),goto_table:3
532 table=3,ip,actions=set_field:aa:55:aa:55:00:01->dl_dst,output:10
533 table=3,packet_type=(1,0x800),actions=encap(ethernet),set_field:aa:55:aa:55:00:01->dl_dst,output:10
534])
535
536# br-in2 is intermediate SFF (table 2) and simulated SF (table 4)
537AT_DATA([br-in2.txt], [dnl
538 table=0,in_port=2010,packet_type=(1,0x894f),actions=goto_table:2
539 table=0,in_port=2030,packet_type=(1,0x894f),actions=goto_table:2
540 table=2,packet_type=(1,0x894f),nsh_spi=0x3020,nsh_si=255,actions=encap(ethernet),set_field:11:22:33:44:55:66->dl_dst,goto_table:4
541 table=2,packet_type=(1,0x894f),nsh_spi=0x3020,nsh_si=254,actions=output:2030
542 table=2,packet_type=(1,0x894f),nsh_spi=0x1020,nsh_si=255,actions=encap(ethernet),set_field:77:88:99:aa:bb:cc->dl_dst,goto_table:4
543 table=2,packet_type=(1,0x894f),nsh_spi=0x1020,nsh_si=254,actions=output:2010
544 table=4,dl_type=0x894f,dl_dst=11:22:33:44:55:66,actions=set_field:254->nsh_si,decap(),resubmit(,2)
491e05c2 545 table=4,dl_type=0x894f,dl_dst=77:88:99:aa:bb:cc,actions=dec_nsh_ttl,decap(),resubmit(,2)
cc6902fe
JS
546])
547
548# br-in3 is SFC classifier (table 1) and final SFF (tables 2,3)
549AT_DATA([br-in3.txt], [dnl
550 table=0,in_port=30,ip,actions=decap(),goto_table:1
551 table=0,in_port=30,packet_type=(1,0x800),actions=goto_table:1
552 table=0,in_port=3010,packet_type=(1,0x894f),actions=goto_table:2
553 table=0,in_port=3020,packet_type=(1,0x894f),actions=goto_table:2
554 table=1,priority=32,packet_type=(1,0x800),nw_dst=192.168.10.10,actions=encap(nsh(md_type=1)),set_field:0x1000->nsh_spi,3010
555 table=1,priority=0,packet_type=(1,0x800),nw_dst=0.0.0.0/0,actions=encap(nsh(md_type=1)),set_field:0x1020->nsh_spi,3020
556 table=2,packet_type=(1,0x894f),nsh_spi=0x3000,nsh_si=255,actions=decap(),goto_table:3
557 table=2,packet_type=(1,0x894f),nsh_spi=0x3020,nsh_si=254,actions=decap(),goto_table:3
558 table=3,ip,actions=set_field:aa:55:aa:55:00:03->dl_dst,output:30
559 table=3,packet_type=(1,0x800),actions=encap(ethernet),set_field:aa:55:aa:55:00:03->dl_dst,output:30
560])
561
562AT_CHECK([
563 ovs-ofctl -Oopenflow13 add-flows br-in1 br-in1.txt
564 ovs-ofctl -Oopenflow13 add-flows br-in2 br-in2.txt
565 ovs-ofctl -Oopenflow13 add-flows br-in3 br-in3.txt
566])
567
568### Inject ICMP Echo request test packets
569
570# N1 to N3, via the direct SF path with spi 0x3000
571AT_CHECK([
572 ovs-appctl netdev-dummy/receive n1 1e2ce92a669e3a6dd2099cab0800450000548a53400040011addc0a80a0ac0a80a1e08006f200a4d0001fc509a58000000002715020000000000101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f3031323334353637
573 ovs-appctl netdev-dummy/receive n1 1e2ce92a669e3a6dd2099cab0800450000548a83400040011aadc0a80a0ac0a80a1e0800b7170a4d0002fd509a5800000000de1c020000000000101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f3031323334353637
574], [0], [ignore])
575
17553f27 576ovs-appctl time/warp 1000
cc6902fe
JS
577ovs-appctl time/warp 1000
578ovs-appctl time/warp 1000
579
580AT_CHECK([
581 ovs-appctl dpctl/dump-flows dummy@ovs-dummy | strip_used | grep -v ipv6 | sort
582], [0], [flow-dump from non-dpdk interfaces:
17553f27 583recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth_type(0x0800),ipv4(dst=192.168.10.30,frag=no), packets:1, bytes:98, used:0.0s, actions:pop_eth,push_nsh(flags=0,ttl=63,mdtype=1,np=1,spi=0x3000,si=255,c1=0x0,c2=0x0,c3=0x0,c4=0x0),clone(tnl_push(tnl_port(4789),header(size=50,type=4,eth(dst=aa:55:00:00:00:03,src=aa:55:00:00:00:01,dl_type=0x0800),ipv4(src=10.0.0.1,dst=10.0.0.3,proto=17,tos=0,ttl=64,frag=0x4000),udp(src=0,dst=4789,csum=0x0),vxlan(flags=0xc000004,vni=0x0)),out_port(1)),set(ipv4(src=30.0.0.1,dst=30.0.0.3)),tnl_pop(4789))
f59cb331 584tunnel(tun_id=0x0,src=30.0.0.1,dst=30.0.0.3,flags(-df-csum+key)),recirc_id(0),in_port(4789),packet_type(ns=1,id=0x894f),nsh(np=1,spi=0x3000,si=255), packets:1, bytes:108, used:0.0s, actions:pop_nsh(),recirc(0x1)
cc6902fe
JS
585tunnel(tun_id=0x0,src=30.0.0.1,dst=30.0.0.3,flags(-df-csum+key)),recirc_id(0x1),in_port(4789),packet_type(ns=1,id=0x800),ipv4(frag=no), packets:1, bytes:84, used:0.0s, actions:push_eth(src=00:00:00:00:00:00,dst=aa:55:aa:55:00:03),6
586])
587
588AT_CHECK([
589 ovs-ofctl -Oopenflow13 dump-flows br-in1 | ofctl_strip | sort | grep actions
590 ovs-ofctl -Oopenflow13 dump-flows br-in2 | ofctl_strip | sort | grep actions
591 ovs-ofctl -Oopenflow13 dump-flows br-in3 | ofctl_strip | sort | grep actions
592], [0], [dnl
593 n_packets=2, n_bytes=196, ip,in_port=10 actions=decap(),goto_table:1
594 packet_type=(1,0x800),in_port=10 actions=goto_table:1
595 packet_type=(1,0x894f),in_port=1020 actions=goto_table:2
596 packet_type=(1,0x894f),in_port=1030 actions=goto_table:2
597 table=1, n_packets=2, n_bytes=196, priority=32,packet_type=(1,0x800),nw_dst=192.168.10.30 actions=encap(nsh(md_type=1)),set_field:0x3000->nsh_spi,output:1030
598 table=1, priority=0,packet_type=(1,0x800) actions=encap(nsh(md_type=1)),set_field:0x3020->nsh_spi,output:1020
599 table=2, packet_type=(1,0x894f),nsh_spi=0x1000,nsh_si=255 actions=decap(),goto_table:3
600 table=2, packet_type=(1,0x894f),nsh_spi=0x1020,nsh_si=254 actions=decap(),goto_table:3
601 table=3, ip actions=set_field:aa:55:aa:55:00:01->eth_dst,output:10
602 table=3, packet_type=(1,0x800) actions=encap(ethernet),set_field:aa:55:aa:55:00:01->eth_dst,output:10
603 packet_type=(1,0x894f),in_port=2010 actions=goto_table:2
604 packet_type=(1,0x894f),in_port=2030 actions=goto_table:2
605 table=2, packet_type=(1,0x894f),nsh_spi=0x1020,nsh_si=254 actions=output:2010
606 table=2, packet_type=(1,0x894f),nsh_spi=0x1020,nsh_si=255 actions=encap(ethernet),set_field:77:88:99:aa:bb:cc->eth_dst,goto_table:4
607 table=2, packet_type=(1,0x894f),nsh_spi=0x3020,nsh_si=254 actions=output:2030
608 table=2, packet_type=(1,0x894f),nsh_spi=0x3020,nsh_si=255 actions=encap(ethernet),set_field:11:22:33:44:55:66->eth_dst,goto_table:4
609 table=4, dl_dst=11:22:33:44:55:66,dl_type=0x894f actions=set_field:254->nsh_si,decap(),resubmit(,2)
491e05c2 610 table=4, dl_dst=77:88:99:aa:bb:cc,dl_type=0x894f actions=dec_nsh_ttl,decap(),resubmit(,2)
cc6902fe
JS
611 ip,in_port=30 actions=decap(),goto_table:1
612 n_packets=2, n_bytes=216, packet_type=(1,0x894f),in_port=3010 actions=goto_table:2
613 packet_type=(1,0x800),in_port=30 actions=goto_table:1
614 packet_type=(1,0x894f),in_port=3020 actions=goto_table:2
615 table=1, priority=0,packet_type=(1,0x800) actions=encap(nsh(md_type=1)),set_field:0x1020->nsh_spi,output:3020
616 table=1, priority=32,packet_type=(1,0x800),nw_dst=192.168.10.10 actions=encap(nsh(md_type=1)),set_field:0x1000->nsh_spi,output:3010
617 table=2, n_packets=2, n_bytes=216, packet_type=(1,0x894f),nsh_spi=0x3000,nsh_si=255 actions=decap(),goto_table:3
618 table=2, packet_type=(1,0x894f),nsh_spi=0x3020,nsh_si=254 actions=decap(),goto_table:3
619 table=3, ip actions=set_field:aa:55:aa:55:00:03->eth_dst,output:30
620 table=3, n_packets=2, n_bytes=168, packet_type=(1,0x800) actions=encap(ethernet),set_field:aa:55:aa:55:00:03->eth_dst,output:30
621])
622
623# Clear up megaflow cache
624ovs-appctl time/warp 11000
625
626# N1 to some other IP destination (192.168.10.20), via the indirect SF path with spi 0x3020
627AT_CHECK([
628 ovs-appctl netdev-dummy/receive n1 461e7d1a95a13a6dd2099cab080045000054500b40004001552fc0a80a0ac0a80a140800531f09a90001e9509a580000000055ba030000000000101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f3031323334353637
629 ovs-appctl netdev-dummy/receive n1 461e7d1a95a13a6dd2099cab08004500005450934000400154a7c0a80a0ac0a80a140800f41d09a90002ea509a5800000000b3ba030000000000101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f3031323334353637], [0], [ignore])
630
631ovs-appctl time/warp 1000
632ovs-appctl time/warp 1000
633
634AT_CHECK([
635 ovs-appctl dpctl/dump-flows dummy@ovs-dummy | strip_used | grep -v ipv6 | sort
636], [0], [flow-dump from non-dpdk interfaces:
17553f27 637recirc_id(0),in_port(4),packet_type(ns=0,id=0),eth_type(0x0800),ipv4(dst=192.168.10.20/255.255.255.248,frag=no), packets:1, bytes:98, used:0.0s, actions:pop_eth,push_nsh(flags=0,ttl=63,mdtype=1,np=1,spi=0x3020,si=255,c1=0x0,c2=0x0,c3=0x0,c4=0x0),clone(tnl_push(tnl_port(4789),header(size=50,type=4,eth(dst=aa:55:00:00:00:02,src=aa:55:00:00:00:01,dl_type=0x0800),ipv4(src=10.0.0.1,dst=10.0.0.2,proto=17,tos=0,ttl=64,frag=0x4000),udp(src=0,dst=4789,csum=0x0),vxlan(flags=0xc000004,vni=0x0)),out_port(1)),set(ipv4(src=20.0.0.1,dst=20.0.0.2)),tnl_pop(4789))
cc6902fe 638tunnel(tun_id=0x0,src=20.0.0.1,dst=20.0.0.2,flags(-df-csum+key)),recirc_id(0),in_port(4789),packet_type(ns=1,id=0x894f),nsh(spi=0x3020,si=255), packets:1, bytes:108, used:0.0s, actions:push_eth(src=00:00:00:00:00:00,dst=11:22:33:44:55:66),set(nsh(spi=0x3020,si=254)),pop_eth,clone(tnl_push(tnl_port(4789),header(size=50,type=4,eth(dst=aa:55:00:00:00:03,src=aa:55:00:00:00:02,dl_type=0x0800),ipv4(src=20.0.0.2,dst=20.0.0.3,proto=17,tos=0,ttl=64,frag=0x4000),udp(src=0,dst=4789,csum=0x0),vxlan(flags=0xc000004,vni=0x0)),out_port(2)),set(ipv4(src=30.0.0.2,dst=30.0.0.3)),tnl_pop(4789))
f59cb331 639tunnel(tun_id=0x0,src=30.0.0.2,dst=30.0.0.3,flags(-df-csum+key)),recirc_id(0),in_port(4789),packet_type(ns=1,id=0x894f),nsh(np=1,spi=0x3020,si=254), packets:1, bytes:108, used:0.0s, actions:pop_nsh(),recirc(0x2)
cc6902fe
JS
640tunnel(tun_id=0x0,src=30.0.0.2,dst=30.0.0.3,flags(-df-csum+key)),recirc_id(0x2),in_port(4789),packet_type(ns=1,id=0x800),ipv4(frag=no), packets:1, bytes:84, used:0.0s, actions:push_eth(src=00:00:00:00:00:00,dst=aa:55:aa:55:00:03),6
641])
642
643AT_CHECK([
644 ovs-ofctl -Oopenflow13 dump-flows br-in1 | ofctl_strip | sort | grep actions
645 ovs-ofctl -Oopenflow13 dump-flows br-in2 | ofctl_strip | sort | grep actions
646 ovs-ofctl -Oopenflow13 dump-flows br-in3 | ofctl_strip | sort | grep actions
647], [0], [dnl
648 n_packets=4, n_bytes=392, ip,in_port=10 actions=decap(),goto_table:1
649 packet_type=(1,0x800),in_port=10 actions=goto_table:1
650 packet_type=(1,0x894f),in_port=1020 actions=goto_table:2
651 packet_type=(1,0x894f),in_port=1030 actions=goto_table:2
652 table=1, n_packets=2, n_bytes=196, priority=0,packet_type=(1,0x800) actions=encap(nsh(md_type=1)),set_field:0x3020->nsh_spi,output:1020
653 table=1, n_packets=2, n_bytes=196, priority=32,packet_type=(1,0x800),nw_dst=192.168.10.30 actions=encap(nsh(md_type=1)),set_field:0x3000->nsh_spi,output:1030
654 table=2, packet_type=(1,0x894f),nsh_spi=0x1000,nsh_si=255 actions=decap(),goto_table:3
655 table=2, packet_type=(1,0x894f),nsh_spi=0x1020,nsh_si=254 actions=decap(),goto_table:3
656 table=3, ip actions=set_field:aa:55:aa:55:00:01->eth_dst,output:10
657 table=3, packet_type=(1,0x800) actions=encap(ethernet),set_field:aa:55:aa:55:00:01->eth_dst,output:10
658 n_packets=2, n_bytes=216, packet_type=(1,0x894f),in_port=2010 actions=goto_table:2
659 packet_type=(1,0x894f),in_port=2030 actions=goto_table:2
660 table=2, n_packets=2, n_bytes=216, packet_type=(1,0x894f),nsh_spi=0x3020,nsh_si=254 actions=output:2030
661 table=2, n_packets=2, n_bytes=216, packet_type=(1,0x894f),nsh_spi=0x3020,nsh_si=255 actions=encap(ethernet),set_field:11:22:33:44:55:66->eth_dst,goto_table:4
662 table=2, packet_type=(1,0x894f),nsh_spi=0x1020,nsh_si=254 actions=output:2010
663 table=2, packet_type=(1,0x894f),nsh_spi=0x1020,nsh_si=255 actions=encap(ethernet),set_field:77:88:99:aa:bb:cc->eth_dst,goto_table:4
491e05c2 664 table=4, dl_dst=77:88:99:aa:bb:cc,dl_type=0x894f actions=dec_nsh_ttl,decap(),resubmit(,2)
cc6902fe
JS
665 table=4, n_packets=2, n_bytes=216, dl_dst=11:22:33:44:55:66,dl_type=0x894f actions=set_field:254->nsh_si,decap(),resubmit(,2)
666 ip,in_port=30 actions=decap(),goto_table:1
667 n_packets=2, n_bytes=216, packet_type=(1,0x894f),in_port=3010 actions=goto_table:2
668 n_packets=2, n_bytes=216, packet_type=(1,0x894f),in_port=3020 actions=goto_table:2
669 packet_type=(1,0x800),in_port=30 actions=goto_table:1
670 table=1, priority=0,packet_type=(1,0x800) actions=encap(nsh(md_type=1)),set_field:0x1020->nsh_spi,output:3020
671 table=1, priority=32,packet_type=(1,0x800),nw_dst=192.168.10.10 actions=encap(nsh(md_type=1)),set_field:0x1000->nsh_spi,output:3010
672 table=2, n_packets=2, n_bytes=216, packet_type=(1,0x894f),nsh_spi=0x3000,nsh_si=255 actions=decap(),goto_table:3
673 table=2, n_packets=2, n_bytes=216, packet_type=(1,0x894f),nsh_spi=0x3020,nsh_si=254 actions=decap(),goto_table:3
674 table=3, ip actions=set_field:aa:55:aa:55:00:03->eth_dst,output:30
675 table=3, n_packets=4, n_bytes=336, packet_type=(1,0x800) actions=encap(ethernet),set_field:aa:55:aa:55:00:03->eth_dst,output:30
676])
677
678OVS_VSWITCHD_STOP
679AT_CLEANUP