ofproto: New feature to notify controllers of flow table changes.
[sliver-openvswitch.git] / tests / ofp-print.at
1 AT_BANNER([ofp-print])
2
3 AT_SETUP([empty])
4 AT_KEYWORDS([ofp-print])
5 AT_CHECK([ovs-ofctl ofp-print ''], [0], [OpenFlow message is empty
6 ])
7 AT_CLEANUP
8
9 AT_SETUP([too short])
10 AT_KEYWORDS([ofp-print])
11 AT_CHECK([ovs-ofctl ofp-print aabb], [0], [dnl
12 OpenFlow packet too short (only 2 bytes):
13 00000000  aa bb                                           |..              |
14 ])
15 AT_CLEANUP
16
17 AT_SETUP([wrong OpenFlow version])
18 AT_KEYWORDS([ofp-print])
19 AT_CHECK([ovs-ofctl '-vPATTERN:console:%c|%p|%m' ofp-print 00bb0008eeff0011],
20   [0], [dnl
21 ***decode error: OFPBRC_BAD_TYPE***
22 00000000  00 bb 00 08 ee ff 00 11-                        |........        |
23 ], [ofp_util|WARN|received OpenFlow message of unknown type 187
24 ])
25 AT_CLEANUP
26
27 AT_SETUP([truncated message])
28 AT_KEYWORDS([ofp-print])
29 AT_CHECK([ovs-ofctl ofp-print 01bbccddeeff0011], [0], [dnl
30 (***truncated to 8 bytes from 52445***)
31 00000000  01 bb cc dd ee ff 00 11-                        |........        |
32 ])
33 AT_CLEANUP
34
35 AT_SETUP([message only uses part of buffer])
36 AT_KEYWORDS([ofp-print])
37 AT_CHECK([ovs-ofctl ofp-print 01bb0009eeff00112233], [0], [dnl
38 (***only uses 9 bytes out of 10***)
39 00000000  01 bb 00 09 ee ff 00 11-22 33                   |........"3      |
40 ])
41 # "
42 AT_CLEANUP
43
44 AT_SETUP([OFPT_HELLO - ordinary])
45 AT_KEYWORDS([ofp-print])
46 AT_CHECK([ovs-ofctl ofp-print 0100000800000000], [0], [dnl
47 OFPT_HELLO (xid=0x0):
48 ])
49 AT_CLEANUP
50
51 AT_SETUP([OFPT_HELLO with extra data])
52 AT_KEYWORDS([ofp-print])
53 AT_CHECK([ovs-ofctl ofp-print 0100001300000000657874726120646174610a], [0],
54 [dnl
55 OFPT_HELLO (xid=0x0):
56 00000000  65 78 74 72 61 20 64 61-74 61 0a                |extra data.     |
57 ])
58 AT_CLEANUP
59
60 dnl OFPT_ERROR tests are in ofp-errors.at.
61
62 AT_SETUP([OFPT_ECHO_REQUEST, empty payload])
63 AT_KEYWORDS([ofp-print])
64 AT_CHECK([ovs-ofctl ofp-print '01 02 00 08 00 00 00 01'], [0], [dnl
65 OFPT_ECHO_REQUEST (xid=0x1): 0 bytes of payload
66 ])
67 AT_CLEANUP
68
69 AT_SETUP([OFPT_ECHO_REQUEST, 5-byte payload])
70 AT_KEYWORDS([ofp-print])
71 AT_CHECK([ovs-ofctl ofp-print '0102000d00000001 25 53 54 1a 9d'], [0], [dnl
72 OFPT_ECHO_REQUEST (xid=0x1): 5 bytes of payload
73 00000000  25 53 54 1a 9d                                  |%ST..           |
74 ])
75 AT_CLEANUP
76
77 AT_SETUP([OFPT_ECHO_REPLY, empty payload])
78 AT_KEYWORDS([ofp-print])
79 AT_CHECK([ovs-ofctl ofp-print '01 03 00 08 00 00 00 01'], [0], [dnl
80 OFPT_ECHO_REPLY (xid=0x1): 0 bytes of payload
81 ])
82 AT_CLEANUP
83
84 AT_SETUP([OFPT_ECHO_REPLY, 5-byte payload])
85 AT_KEYWORDS([ofp-print])
86 AT_CHECK([ovs-ofctl ofp-print '0103000d0000000ba330efaf9e'], [0], [dnl
87 OFPT_ECHO_REPLY (xid=0xb): 5 bytes of payload
88 00000000  a3 30 ef af 9e                                  |.0...           |
89 ])
90 AT_CLEANUP
91
92 AT_SETUP([OFPT_FEATURES_REQUEST])
93 AT_KEYWORDS([ofp-print])
94 AT_CHECK([ovs-ofctl ofp-print '0105000800000001'], [0], [dnl
95 OFPT_FEATURES_REQUEST (xid=0x1):
96 ])
97 AT_CLEANUP
98
99 AT_SETUP([OFPT_FEATURES_REPLY - OF1.0])
100 AT_KEYWORDS([ofp-print])
101 AT_CHECK([ovs-ofctl ofp-print "\
102 01 06 00 e0 00 00 00 01 00 00 50 54 00 00 00 01 \
103 00 00 01 00 02 00 00 00 00 00 00 87 00 00 0f ff \
104 ff fe 50 54 00 00 00 01 62 72 30 00 00 00 00 00 \
105 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 01 \
106 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
107 00 03 50 54 00 00 00 01 65 74 68 30 00 00 00 00 \
108 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
109 00 00 02 08 00 00 02 8f 00 00 02 8f 00 00 00 00 \
110 00 02 50 54 00 00 00 03 65 74 68 32 00 00 00 00 \
111 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
112 00 00 02 08 00 00 02 8f 00 00 02 8f 00 00 00 00 \
113 00 01 50 54 00 00 00 02 65 74 68 31 00 00 00 00 \
114 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
115 00 00 02 08 00 00 02 8f 00 00 02 8f 00 00 00 00 \
116 "], [0], [dnl
117 OFPT_FEATURES_REPLY (xid=0x1): dpid:0000505400000001
118 n_tables:2, n_buffers:256
119 capabilities: FLOW_STATS TABLE_STATS PORT_STATS ARP_MATCH_IP
120 actions: OUTPUT SET_VLAN_VID SET_VLAN_PCP STRIP_VLAN SET_DL_SRC SET_DL_DST SET_NW_SRC SET_NW_DST SET_NW_TOS SET_TP_SRC SET_TP_DST ENQUEUE
121  1(eth1): addr:50:54:00:00:00:02
122      config:     0
123      state:      0
124      current:    100MB-FD AUTO_NEG
125      advertised: 10MB-HD 10MB-FD 100MB-HD 100MB-FD COPPER AUTO_NEG
126      supported:  10MB-HD 10MB-FD 100MB-HD 100MB-FD COPPER AUTO_NEG
127      speed: 100 Mbps now, 100 Mbps max
128  2(eth2): addr:50:54:00:00:00:03
129      config:     0
130      state:      0
131      current:    100MB-FD AUTO_NEG
132      advertised: 10MB-HD 10MB-FD 100MB-HD 100MB-FD COPPER AUTO_NEG
133      supported:  10MB-HD 10MB-FD 100MB-HD 100MB-FD COPPER AUTO_NEG
134      speed: 100 Mbps now, 100 Mbps max
135  3(eth0): addr:50:54:00:00:00:01
136      config:     0
137      state:      0
138      current:    100MB-FD AUTO_NEG
139      advertised: 10MB-HD 10MB-FD 100MB-HD 100MB-FD COPPER AUTO_NEG
140      supported:  10MB-HD 10MB-FD 100MB-HD 100MB-FD COPPER AUTO_NEG
141      speed: 100 Mbps now, 100 Mbps max
142  LOCAL(br0): addr:50:54:00:00:00:01
143      config:     PORT_DOWN
144      state:      LINK_DOWN
145      speed: 100 Mbps now, 100 Mbps max
146 ])
147 AT_CLEANUP
148
149 AT_SETUP([OFPT_FEATURES_REPLY cut off mid-port - OF1.0])
150 AT_KEYWORDS([ofp-print])
151 AT_CHECK([ovs-ofctl ofp-print "\
152 01 06 00 dc 00 00 00 01 00 00 50 54 00 00 00 01 \
153 00 00 01 00 02 00 00 00 00 00 00 87 00 00 0f ff \
154 ff fe 50 54 00 00 00 01 62 72 30 00 00 00 00 00 \
155 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 01 \
156 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
157 00 03 50 54 00 00 00 01 65 74 68 30 00 00 00 00 \
158 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
159 00 00 02 08 00 00 02 8f 00 00 02 8f 00 00 00 00 \
160 00 02 50 54 00 00 00 03 65 74 68 32 00 00 00 00 \
161 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
162 00 00 02 08 00 00 02 8f 00 00 02 8f 00 00 00 00 \
163 00 01 50 54 00 00 00 02 65 74 68 31 00 00 00 00 \
164 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
165 00 00 02 08 00 00 02 8f 00 00 02 8f \
166 "], [0], [dnl
167 ***decode error: OFPBRC_BAD_LEN***
168 00000000  01 06 00 dc 00 00 00 01-00 00 50 54 00 00 00 01 |..........PT....|
169 00000010  00 00 01 00 02 00 00 00-00 00 00 87 00 00 0f ff |................|
170 00000020  ff fe 50 54 00 00 00 01-62 72 30 00 00 00 00 00 |..PT....br0.....|
171 00000030  00 00 00 00 00 00 00 00-00 00 00 01 00 00 00 01 |................|
172 00000040  00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |................|
173 00000050  00 03 50 54 00 00 00 01-65 74 68 30 00 00 00 00 |..PT....eth0....|
174 00000060  00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |................|
175 00000070  00 00 02 08 00 00 02 8f-00 00 02 8f 00 00 00 00 |................|
176 00000080  00 02 50 54 00 00 00 03-65 74 68 32 00 00 00 00 |..PT....eth2....|
177 00000090  00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |................|
178 000000a0  00 00 02 08 00 00 02 8f-00 00 02 8f 00 00 00 00 |................|
179 000000b0  00 01 50 54 00 00 00 02-65 74 68 31 00 00 00 00 |..PT....eth1....|
180 000000c0  00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |................|
181 000000d0  00 00 02 08 00 00 02 8f-00 00 02 8f             |............    |
182 ], [stderr])
183 AT_CHECK([sed 's/.*|//' stderr], [0], [dnl
184 received OFPT_FEATURES_REPLY with incorrect length 220 (must be exactly 32 bytes or longer by an integer multiple of 48 bytes)
185 ])
186 AT_CLEANUP
187
188 AT_SETUP([OFPT_FEATURES_REPLY - OF1.1])
189 AT_KEYWORDS([ofp-print])
190 AT_CHECK([ovs-ofctl ofp-print "\
191 02 06 00 a0 00 00 00 01 00 00 50 54 00 00 00 01 \
192 00 00 01 00 02 00 00 00 00 00 00 87 00 00 ff ff \
193 ff ff ff fe 00 00 00 00 50 54 00 00 00 01 00 00 \
194 62 72 30 00 00 00 00 00 00 00 00 00 00 00 00 00 \
195 00 00 00 01 00 00 00 01 00 00 00 00 00 00 00 00 \
196 00 00 00 00 00 00 00 00 00 01 86 a0 00 01 86 a0 \
197 00 00 00 03 00 00 00 00 50 54 00 00 00 01 00 00 \
198 65 74 68 30 00 00 00 00 00 00 00 00 00 00 00 00 \
199 00 00 00 00 00 00 00 00 00 00 20 08 00 00 28 0f \
200 00 00 28 0f 00 00 00 00 00 01 86 a0 00 01 86 a0 \
201 "], [0], [dnl
202 OFPT_FEATURES_REPLY (OF1.1) (xid=0x1): dpid:0000505400000001
203 n_tables:2, n_buffers:256
204 capabilities: FLOW_STATS TABLE_STATS PORT_STATS ARP_MATCH_IP
205 actions: OUTPUT SET_VLAN_VID SET_VLAN_PCP SET_DL_SRC SET_DL_DST SET_NW_SRC SET_NW_DST SET_NW_ECN SET_NW_TOS SET_TP_SRC SET_TP_DST COPY_TTL_OUT COPY_TTL_IN SET_MPLS_LABEL SET_MPLS_TC SET_MPLS_TTL
206  3(eth0): addr:50:54:00:00:00:01
207      config:     0
208      state:      0
209      current:    100MB-FD AUTO_NEG
210      advertised: 10MB-HD 10MB-FD 100MB-HD 100MB-FD COPPER AUTO_NEG
211      supported:  10MB-HD 10MB-FD 100MB-HD 100MB-FD COPPER AUTO_NEG
212      speed: 100 Mbps now, 100 Mbps max
213  LOCAL(br0): addr:50:54:00:00:00:01
214      config:     PORT_DOWN
215      state:      LINK_DOWN
216      speed: 100 Mbps now, 100 Mbps max
217 ])
218 AT_CLEANUP
219
220 AT_SETUP([OFPT_FEATURES_REPLY cut off mid-port - OF1.1])
221 AT_KEYWORDS([ofp-print])
222 AT_CHECK([ovs-ofctl ofp-print "\
223 02 06 00 90 00 00 00 01 00 00 50 54 00 00 00 01 \
224 00 00 01 00 02 00 00 00 00 00 00 87 00 00 ff ff \
225 ff ff ff fe 00 00 00 00 50 54 00 00 00 01 00 00 \
226 62 72 30 00 00 00 00 00 00 00 00 00 00 00 00 00 \
227 00 00 00 01 00 00 00 01 00 00 00 00 00 00 00 00 \
228 00 00 00 00 00 00 00 00 00 01 86 a0 00 01 86 a0 \
229 00 00 00 03 00 00 00 00 50 54 00 00 00 01 00 00 \
230 65 74 68 30 00 00 00 00 00 00 00 00 00 00 00 00 \
231 00 00 00 00 00 00 00 00 00 00 20 08 00 00 28 0f \
232 "], [0], [dnl
233 ***decode error: OFPBRC_BAD_LEN***
234 00000000  02 06 00 90 00 00 00 01-00 00 50 54 00 00 00 01 |..........PT....|
235 00000010  00 00 01 00 02 00 00 00-00 00 00 87 00 00 ff ff |................|
236 00000020  ff ff ff fe 00 00 00 00-50 54 00 00 00 01 00 00 |........PT......|
237 00000030  62 72 30 00 00 00 00 00-00 00 00 00 00 00 00 00 |br0.............|
238 00000040  00 00 00 01 00 00 00 01-00 00 00 00 00 00 00 00 |................|
239 00000050  00 00 00 00 00 00 00 00-00 01 86 a0 00 01 86 a0 |................|
240 00000060  00 00 00 03 00 00 00 00-50 54 00 00 00 01 00 00 |........PT......|
241 00000070  65 74 68 30 00 00 00 00-00 00 00 00 00 00 00 00 |eth0............|
242 00000080  00 00 00 00 00 00 00 00-00 00 20 08 00 00 28 0f |.......... ...@{:@.|
243 ], [stderr])
244 AT_CHECK([sed 's/.*|//' stderr], [0], [dnl
245 received OFPT_FEATURES_REPLY with incorrect length 144 (must be exactly 32 bytes or longer by an integer multiple of 64 bytes)
246 ])
247 AT_CLEANUP
248
249 AT_SETUP([OFPT_GET_CONFIG_REQUEST])
250 AT_KEYWORDS([ofp-print])
251 AT_CHECK([ovs-ofctl ofp-print '0107000800000001'], [0], [dnl
252 OFPT_GET_CONFIG_REQUEST (xid=0x1):
253 ])
254 AT_CLEANUP
255
256 AT_SETUP([OFPT_GET_CONFIG_REPLY, most common form])
257 AT_KEYWORDS([ofp-print])
258 AT_CHECK([ovs-ofctl ofp-print '01 08 00 0c 00 00 00 03 00 00 00 00'], [0], [dnl
259 OFPT_GET_CONFIG_REPLY (xid=0x3): frags=normal miss_send_len=0
260 ])
261 AT_CLEANUP
262
263
264 AT_SETUP([OFPT_GET_CONFIG_REPLY, frags and miss_send_len])
265 AT_KEYWORDS([ofp-print])
266 AT_CHECK([ovs-ofctl ofp-print '01 08 00 0c 00 00 00 03 00 02 00 ff'], [0], [dnl
267 OFPT_GET_CONFIG_REPLY (xid=0x3): frags=reassemble miss_send_len=255
268 ])
269 AT_CLEANUP
270
271 AT_SETUP([OFPT_PACKET_IN])
272 AT_KEYWORDS([ofp-print])
273 AT_CHECK([ovs-ofctl ofp-print "\
274 01 0a 00 4e 00 00 00 00 00 00 01 11 00 3c 00 03 \
275 00 00 50 54 00 00 00 06 50 54 00 00 00 05 08 00 \
276 45 00 00 28 bd 12 00 00 40 06 3c 6a c0 a8 00 01 \
277 c0 a8 00 02 27 2f 00 00 78 50 cc 5b 57 af 42 1e \
278 50 00 02 00 26 e8 00 00 00 00 00 00 00 00 \
279 "], [0], [dnl
280 OFPT_PACKET_IN (xid=0x0): total_len=60 in_port=3 (via no_match) data_len=60 buffer=0x00000111
281 priority:0,tunnel:0,metadata:0,in_port:0000,tci(0) mac(50:54:00:00:00:05->50:54:00:00:00:06) type:0800 proto:6 tos:0 ttl:64 ip(192.168.0.1->192.168.0.2) port(10031->0) tcp_csum:26e8
282 ])
283 AT_CLEANUP
284
285 AT_SETUP([OFPT_FLOW_REMOVED])
286 AT_KEYWORDS([ofp-print])
287 AT_CHECK([ovs-ofctl ofp-print "\
288 01 0b 00 58 00 00 00 00 00 00 00 00 00 03 50 54 \
289 00 00 00 05 50 54 00 00 00 06 ff ff 00 00 08 06 \
290 00 02 00 00 c0 a8 00 01 c0 a8 00 02 00 00 00 00 \
291 00 00 00 00 00 00 00 00 ff ff 00 00 00 00 00 05 \
292 30 e0 35 00 00 05 00 00 00 00 00 00 00 00 00 01 \
293 00 00 00 00 00 00 00 3c \
294 "], [0], [dnl
295 OFPT_FLOW_REMOVED (xid=0x0): priority=65535,arp,in_port=3,vlan_tci=0x0000,dl_src=50:54:00:00:00:05,dl_dst=50:54:00:00:00:06,nw_src=192.168.0.1,nw_dst=192.168.0.2,arp_op=2,nw_tos=0,tp_src=0,tp_dst=0 reason=idle duration5.82s idle5 pkts1 bytes60
296 ])
297 AT_CLEANUP
298
299 AT_SETUP([OFPT_PORT_STATUS - OF1.0])
300 AT_KEYWORDS([ofp-print])
301 AT_CHECK([ovs-ofctl ofp-print "\
302 01 0c 00 40 00 00 00 00 02 00 00 00 00 00 00 00 \
303 00 03 50 54 00 00 00 01 65 74 68 30 00 00 00 00 \
304 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 01 \
305 00 00 02 08 00 00 02 8f 00 00 02 8f 00 00 00 00 \
306 "], [0], [dnl
307 OFPT_PORT_STATUS (xid=0x0): MOD: 3(eth0): addr:50:54:00:00:00:01
308      config:     PORT_DOWN
309      state:      LINK_DOWN
310      current:    100MB-FD AUTO_NEG
311      advertised: 10MB-HD 10MB-FD 100MB-HD 100MB-FD COPPER AUTO_NEG
312      supported:  10MB-HD 10MB-FD 100MB-HD 100MB-FD COPPER AUTO_NEG
313      speed: 100 Mbps now, 100 Mbps max
314 ])
315 AT_CLEANUP
316
317 AT_SETUP([OFPT_PORT_STATUS - OF1.1])
318 AT_KEYWORDS([ofp-print])
319 AT_CHECK([ovs-ofctl ofp-print "\
320 02 0c 00 50 00 00 00 00 02 00 00 00 00 00 00 00 \
321 00 00 00 03 00 00 00 00 50 54 00 00 00 01 00 00 \
322 65 74 68 30 00 00 00 00 00 00 00 00 00 00 00 00 \
323 00 00 00 00 00 00 00 00 00 00 20 08 00 00 28 0f \
324 00 00 28 0f 00 00 00 00 00 01 86 a0 00 01 86 a0 \
325 "], [0], [dnl
326 OFPT_PORT_STATUS (OF1.1) (xid=0x0): MOD: 3(eth0): addr:50:54:00:00:00:01
327      config:     0
328      state:      0
329      current:    100MB-FD AUTO_NEG
330      advertised: 10MB-HD 10MB-FD 100MB-HD 100MB-FD COPPER AUTO_NEG
331      supported:  10MB-HD 10MB-FD 100MB-HD 100MB-FD COPPER AUTO_NEG
332      speed: 100 Mbps now, 100 Mbps max
333 ])
334 AT_CLEANUP
335
336 AT_SETUP([OFPT_PACKET_OUT])
337 AT_KEYWORDS([ofp-print])
338 AT_CHECK([ovs-ofctl ofp-print "\
339 01 0d 00 54 00 00 00 00 00 00 01 14 00 01 00 08 \
340 00 00 00 08 00 03 00 00 50 54 00 00 00 05 50 54 \
341 00 00 00 06 08 00 45 00 00 28 00 00 40 00 40 06 \
342 b9 7c c0 a8 00 02 c0 a8 00 01 00 00 2b 60 00 00 \
343 00 00 6a 4f 2b 58 50 14 00 00 6d 75 00 00 00 00 \
344 00 00 00 00 \
345 "], [0], [dnl
346 OFPT_PACKET_OUT (xid=0x0): in_port=1 actions=output:3 buffer=0x00000114
347 ])
348 AT_CLEANUP
349
350 # The flow is formatted with cls_rule_format() for the low-verbosity case.
351 AT_SETUP([OFPT_FLOW_MOD - low verbosity])
352 AT_KEYWORDS([ofp-print])
353 AT_CHECK([ovs-ofctl '-vPATTERN:console:%c|%p|%m' ofp-print "\
354 01 0e 00 50 00 00 00 00 00 00 00 00 00 01 50 54 \
355 00 00 00 06 50 54 00 00 00 05 ff ff 00 00 08 06 \
356 00 02 00 00 c0 a8 00 02 c0 a8 00 01 00 00 00 00 \
357 00 00 00 00 00 00 00 00 00 00 00 05 00 00 00 00 \
358 00 00 01 0e 00 00 00 00 00 00 00 08 00 03 00 00 \
359 " 2], [0], [dnl
360 OFPT_FLOW_MOD (xid=0x0): ADD priority=65535,arp,in_port=1,vlan_tci=0x0000,dl_src=50:54:00:00:00:06,dl_dst=50:54:00:00:00:05,nw_src=192.168.0.2,nw_dst=192.168.0.1,arp_op=2 idle:5 buf:0x10e out_port:0 actions=output:3
361 ], [dnl
362 ofp_util|INFO|normalization changed ofp_match, details:
363 ofp_util|INFO| pre: priority=65535,arp,in_port=1,vlan_tci=0x0000,dl_src=50:54:00:00:00:06,dl_dst=50:54:00:00:00:05,nw_src=192.168.0.2,nw_dst=192.168.0.1,arp_op=2,nw_tos=0,tp_src=0,tp_dst=0
364 ofp_util|INFO|post: priority=65535,arp,in_port=1,vlan_tci=0x0000,dl_src=50:54:00:00:00:06,dl_dst=50:54:00:00:00:05,nw_src=192.168.0.2,nw_dst=192.168.0.1,arp_op=2
365 ])
366 AT_CLEANUP
367
368 # The flow is formatted with ofp10_match_to_string() for the
369 # high-verbosity case.
370 AT_SETUP([OFPT_FLOW_MOD - high verbosity])
371 AT_KEYWORDS([ofp-print])
372 AT_CHECK([ovs-ofctl '-vPATTERN:console:%c|%p|%m' ofp-print "\
373 01 0e 00 50 00 00 00 00 00 00 00 00 00 01 50 54 \
374 00 00 00 06 50 54 00 00 00 05 ff ff 00 00 08 06 \
375 00 02 00 00 c0 a8 00 02 c0 a8 00 01 00 00 00 00 \
376 00 00 00 00 00 00 00 00 00 00 00 05 00 00 00 00 \
377 00 00 01 0e 00 00 00 00 00 00 00 08 00 03 00 00 \
378 " 3], [0], [dnl
379 OFPT_FLOW_MOD (xid=0x0): ADD arp,in_port=1,dl_vlan=65535,dl_vlan_pcp=0,dl_src=50:54:00:00:00:06,dl_dst=50:54:00:00:00:05,nw_src=192.168.0.2,nw_dst=192.168.0.1,arp_op=2,nw_tos=0,tp_src=0,tp_dst=0 idle:5 pri:65535 buf:0x10e out_port:0 actions=output:3
380 ], [dnl
381 ofp_util|INFO|normalization changed ofp_match, details:
382 ofp_util|INFO| pre: priority=65535,arp,in_port=1,vlan_tci=0x0000,dl_src=50:54:00:00:00:06,dl_dst=50:54:00:00:00:05,nw_src=192.168.0.2,nw_dst=192.168.0.1,arp_op=2,nw_tos=0,tp_src=0,tp_dst=0
383 ofp_util|INFO|post: priority=65535,arp,in_port=1,vlan_tci=0x0000,dl_src=50:54:00:00:00:06,dl_dst=50:54:00:00:00:05,nw_src=192.168.0.2,nw_dst=192.168.0.1,arp_op=2
384 ])
385 AT_CLEANUP
386
387 AT_SETUP([OFPT_PORT_MOD - OF1.0])
388 AT_KEYWORDS([ofp-print])
389 AT_CHECK([ovs-ofctl ofp-print "\
390 01 0f 00 20 00 00 00 03 00 03 50 54 00 00 00 01 \
391 00 00 00 01 00 00 00 01 00 00 00 00 00 00 00 00 \
392 " 3], [0], [dnl
393 OFPT_PORT_MOD (xid=0x3):port: 3: addr:50:54:00:00:00:01
394      config: PORT_DOWN
395      mask:   PORT_DOWN
396      advertise: UNCHANGED
397 ])
398 AT_CLEANUP
399
400 AT_SETUP([OFPT_PORT_MOD - OF1.1])
401 AT_KEYWORDS([ofp-print])
402 AT_CHECK([ovs-ofctl ofp-print "\
403 02 10 00 28 00 00 00 03 00 00 00 03 00 00 00 00 \
404 50 54 00 00 00 01 00 00 00 00 00 01 00 00 00 01 \
405 00 00 00 00 00 00 00 00 \
406 " 3], [0], [dnl
407 OFPT_PORT_MOD (OF1.1) (xid=0x3):port: 3: addr:50:54:00:00:00:01
408      config: PORT_DOWN
409      mask:   PORT_DOWN
410      advertise: UNCHANGED
411 ])
412 AT_CLEANUP
413
414 AT_SETUP([OFPST_DESC request])
415 AT_KEYWORDS([ofp-print OFPT_STATS_REQUEST])
416 AT_CHECK([ovs-ofctl ofp-print "0110000c0000000100000000"], [0], [dnl
417 OFPST_DESC request (xid=0x1):
418 ])
419 AT_CLEANUP
420
421 AT_SETUP([OFPST_DESC reply])
422 AT_KEYWORDS([ofp-print OFPT_STATS_REPLY])
423 AT_CHECK([ovs-ofctl ofp-print "\
424 01 11 04 2c 00 00 00 01 00 00 00 00 4e 69 63 69 \
425 72 61 2c 20 49 6e 63 2e 00 00 00 00 00 00 00 00 \
426 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
427 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
428 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
429 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
430 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
431 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
432 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
433 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
434 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
435 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
436 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
437 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
438 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
439 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
440 00 00 00 00 00 00 00 00 00 00 00 00 4f 70 65 6e \
441 20 76 53 77 69 74 63 68 00 00 00 00 00 00 00 00 \
442 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
443 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
444 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
445 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
446 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
447 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
448 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
449 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
450 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
451 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
452 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
453 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
454 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
455 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
456 00 00 00 00 00 00 00 00 00 00 00 00 31 2e 31 2e \
457 30 70 72 65 32 00 00 00 00 00 00 00 00 00 00 00 \
458 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
459 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
460 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
461 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
462 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
463 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
464 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
465 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
466 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
467 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
468 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
469 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
470 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
471 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
472 00 00 00 00 00 00 00 00 00 00 00 00 4e 6f 6e 65 \
473 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
474 00 00 00 00 00 00 00 00 00 00 00 00 4e 6f 6e 65 \
475 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
476 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
477 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
478 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
479 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
480 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
481 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
482 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
483 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
484 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
485 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
486 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
487 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
488 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
489 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
490 00 00 00 00 00 00 00 00 00 00 00 00 \
491 "], [0], [dnl
492 OFPST_DESC reply (xid=0x1):
493 Manufacturer: Nicira, Inc.
494 Hardware: Open vSwitch
495 Software: 1.1.0pre2
496 Serial Num: None
497 DP Description: None
498 ])
499 AT_CLEANUP
500
501 AT_SETUP([OFPST_FLOW request])
502 AT_KEYWORDS([ofp-print OFPT_STATS_REQUEST])
503 AT_CHECK([ovs-ofctl ofp-print "\
504 01 10 00 38 00 00 00 04 00 01 00 00 00 38 20 ff \
505 ff fe 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
506 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
507 00 00 00 00 ff 00 ff ff \
508 "], [0], [dnl
509 OFPST_FLOW request (xid=0x4): @&t@
510 ])
511 AT_CLEANUP
512
513 AT_SETUP([OFPST_FLOW reply])
514 AT_KEYWORDS([ofp-print OFPT_STATS_REPLY])
515 AT_CHECK([ovs-ofctl ofp-print "\
516 01 11 01 e4 00 00 00 04 00 01 00 00 00 60 00 00 \
517 00 00 00 00 00 03 50 54 00 00 00 05 50 54 00 00 \
518 00 06 ff ff 00 00 08 06 00 02 00 00 c0 a8 00 01 \
519 c0 a8 00 02 00 00 00 00 00 00 00 04 0b eb c2 00 \
520 ff ff 00 05 00 00 00 00 00 00 00 00 00 00 00 00 \
521 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 \
522 00 00 00 3c 00 00 00 08 00 01 00 00 00 60 00 00 \
523 00 00 00 00 00 01 50 54 00 00 00 06 50 54 00 00 \
524 00 05 ff ff 00 00 08 00 00 01 00 00 c0 a8 00 02 \
525 c0 a8 00 01 00 00 00 00 00 00 00 08 35 a4 e9 00 \
526 ff ff 00 05 00 00 00 00 00 00 00 00 00 00 00 00 \
527 00 00 00 00 00 00 00 00 00 00 00 0d 00 00 00 00 \
528 00 00 04 fa 00 00 00 08 00 03 00 00 00 60 00 00 \
529 00 00 00 00 00 01 50 54 00 00 00 06 50 54 00 00 \
530 00 05 ff ff 00 00 08 06 00 01 00 00 c0 a8 00 02 \
531 c0 a8 00 01 00 00 00 00 00 00 00 04 10 b0 76 00 \
532 ff ff 00 05 00 00 00 00 00 00 00 00 00 00 00 00 \
533 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 \
534 00 00 00 3c 00 00 00 08 00 03 00 00 00 60 00 00 \
535 00 00 00 01 00 03 50 54 00 00 00 05 50 54 00 00 \
536 00 06 ff ff 00 00 08 00 00 01 00 00 c0 a8 00 01 \
537 c0 a8 00 02 00 08 00 00 00 00 00 09 05 b8 d8 00 \
538 80 00 00 05 00 00 00 00 00 00 00 00 00 00 00 00 \
539 00 00 00 00 00 00 00 00 00 00 00 0d 00 00 00 00 \
540 00 00 04 fa 00 00 00 08 00 01 00 00 \
541 00 58 02 00 00 3f ff ff 00 00 00 00 00 00 00 00 \
542 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
543 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
544 00 00 00 00 80 00 00 00 00 00 00 00 00 00 00 00 \
545 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
546 00 00 00 00 00 00 00 00 \
547 "], [0], [dnl
548 OFPST_FLOW reply (xid=0x4):
549  cookie=0x0, duration=4.2s, table=0, n_packets=1, n_bytes=60, idle_timeout=5, priority=65535,arp,in_port=3,vlan_tci=0x0000,dl_src=50:54:00:00:00:05,dl_dst=50:54:00:00:00:06,nw_src=192.168.0.1,nw_dst=192.168.0.2,arp_op=2,nw_tos=0,tp_src=0,tp_dst=0 actions=output:1
550  cookie=0x0, duration=8.9s, table=0, n_packets=13, n_bytes=1274, idle_timeout=5, priority=65535,icmp,in_port=1,vlan_tci=0x0000,dl_src=50:54:00:00:00:06,dl_dst=50:54:00:00:00:05,nw_src=192.168.0.2,nw_dst=192.168.0.1,nw_tos=0,icmp_type=0,icmp_code=0 actions=output:3
551  cookie=0x0, duration=4.28s, table=0, n_packets=1, n_bytes=60, idle_timeout=5, priority=65535,arp,in_port=1,vlan_tci=0x0000,dl_src=50:54:00:00:00:06,dl_dst=50:54:00:00:00:05,nw_src=192.168.0.2,nw_dst=192.168.0.1,arp_op=1,nw_tos=0,icmp_type=0,icmp_code=0 actions=output:3
552  cookie=0x0, duration=9.096s, table=0, n_packets=13, n_bytes=1274, idle_timeout=5, icmp,vlan_tci=0x0000,dl_src=50:54:00:00:00:05,dl_dst=50:54:00:00:00:06,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,icmp_type=8,icmp_code=0 actions=output:1
553  cookie=0x0, duration=0s, table=2, n_packets=0, n_bytes=0, actions=drop
554 ])
555 AT_CLEANUP
556
557 AT_SETUP([OFPST_AGGREGATE request])
558 AT_KEYWORDS([ofp-print OFPT_STATS_REQUEST])
559 AT_CHECK([ovs-ofctl ofp-print "\
560 01 10 00 38 00 00 00 04 00 02 00 00 00 38 20 ff \
561 ff fe 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
562 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
563 00 00 00 00 ff 00 ff ff \
564 "], [0], [dnl
565 OFPST_AGGREGATE request (xid=0x4): @&t@
566 ])
567 AT_CLEANUP
568
569 AT_SETUP([OFPST_AGGREGATE reply])
570 AT_KEYWORDS([ofp-print OFPT_STATS_REPLY])
571 AT_CHECK([ovs-ofctl ofp-print "\
572 01 11 00 24 00 00 00 04 00 02 00 00 00 00 00 00 \
573 00 00 01 82 00 00 00 00 00 00 93 78 00 00 00 04 \
574 00 00 00 00 \
575 "], [0], [dnl
576 OFPST_AGGREGATE reply (xid=0x4): packet_count=386 byte_count=37752 flow_count=4
577 ])
578 AT_CLEANUP
579
580 AT_SETUP([OFPST_TABLE request])
581 AT_KEYWORDS([ofp-print OFPT_STATS_REQUEST])
582 AT_CHECK([ovs-ofctl ofp-print "0110000c0000000100030000"], [0], [dnl
583 OFPST_TABLE request (xid=0x1):
584 ])
585 AT_CLEANUP
586
587 AT_SETUP([OFPST_TABLE reply])
588 AT_KEYWORDS([ofp-print OFPT_STATS_REPLY])
589 AT_CHECK([ovs-ofctl ofp-print "\
590 01 11 00 4c 00 00 00 01 00 03 00 00 00 00 00 00 \
591 63 6c 61 73 73 69 66 69 65 72 00 00 00 00 00 00 \
592 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
593 00 3f ff ff 00 10 00 00 00 00 00 0b 00 00 00 00 \
594 00 00 00 00 00 00 00 00 00 00 00 00 \
595 "], [0], [dnl
596 OFPST_TABLE reply (xid=0x1): 1 tables
597   0: classifier: wild=0x3fffff, max=1048576, active=11
598                lookup=0, matched=0
599 ])
600 AT_CLEANUP
601
602 AT_SETUP([OFPST_PORT request])
603 AT_KEYWORDS([ofp-print OFPT_STATS_REQUEST])
604 AT_CHECK([ovs-ofctl ofp-print "\
605 01 10 00 14 00 00 00 01 00 04 00 00 ff ff 00 00 \
606 00 00 00 00 \
607 "], [0], [dnl
608 OFPST_PORT request (xid=0x1): port_no=65535
609 ])
610 AT_CLEANUP
611
612 AT_SETUP([OFPST_PORT reply])
613 AT_KEYWORDS([ofp-print OFPT_STATS_REPLY])
614 AT_CHECK([ovs-ofctl ofp-print "\
615 01 11 01 ac 00 00 00 01 00 04 00 00 00 03 00 00 \
616 00 00 00 00 00 00 00 00 00 00 4d 20 00 00 00 00 \
617 00 00 14 32 00 00 00 00 00 0f 60 4e 00 00 00 00 \
618 00 05 71 bc 00 00 00 00 00 00 00 00 00 00 00 00 \
619 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
620 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
621 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
622 00 00 00 00 ff fe 00 00 00 00 00 00 00 00 00 00 \
623 00 00 02 ac 00 00 00 00 00 00 01 f5 00 00 00 00 \
624 00 01 0c 8c 00 00 00 00 00 00 db 1c 00 00 00 00 \
625 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
626 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
627 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
628 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 \
629 00 00 00 00 00 00 00 00 00 00 06 be 00 00 00 00 \
630 00 00 05 84 00 00 00 00 00 02 34 b4 00 00 00 00 \
631 00 02 23 d4 00 00 00 00 00 00 00 00 00 00 00 00 \
632 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
633 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
634 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
635 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 \
636 00 00 14 12 00 00 00 00 00 00 14 66 00 00 00 00 \
637 00 04 a2 54 00 00 00 00 00 05 8a 1e 00 00 00 00 \
638 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
639 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
640 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
641 00 00 00 00 00 00 00 00 00 00 00 00 \
642 "], [0], [dnl
643 OFPST_PORT reply (xid=0x1): 4 ports
644   port  3: rx pkts=19744, bytes=1007694, drop=0, errs=0, frame=0, over=0, crc=0
645            tx pkts=5170, bytes=356796, drop=0, errs=0, coll=0
646   port 65534: rx pkts=684, bytes=68748, drop=0, errs=0, frame=0, over=0, crc=0
647            tx pkts=501, bytes=56092, drop=0, errs=0, coll=0
648   port  2: rx pkts=1726, bytes=144564, drop=0, errs=0, frame=0, over=0, crc=0
649            tx pkts=1412, bytes=140244, drop=0, errs=0, coll=0
650   port  1: rx pkts=5138, bytes=303700, drop=0, errs=0, frame=0, over=0, crc=0
651            tx pkts=5222, bytes=363038, drop=0, errs=0, coll=0
652 ])
653 AT_CLEANUP
654
655 AT_SETUP([OFPST_QUEUE request])
656 AT_KEYWORDS([ofp-print OFPT_STATS_REQUEST])
657 AT_CHECK([ovs-ofctl ofp-print "\
658 01 10 00 14 00 00 00 01 00 05 00 00 ff fc 00 00 \
659 ff ff ff ff \
660 "], [0], [dnl
661 OFPST_QUEUE request (xid=0x1):port=ALL queue=ALL
662 ])
663 AT_CLEANUP
664
665 AT_SETUP([OFPST_QUEUE reply])
666 AT_KEYWORDS([ofp-print OFPT_STATS_REPLY])
667 AT_CHECK([ovs-ofctl ofp-print "\
668 01 11 00 cc 00 00 00 01 00 05 00 00 00 03 00 00 \
669 00 00 00 01 00 00 00 00 00 00 01 2e 00 00 00 00 \
670 00 00 00 01 00 00 00 00 00 00 00 00 00 03 00 00 \
671 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 \
672 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 \
673 00 00 00 01 00 00 00 00 00 00 08 34 00 00 00 00 \
674 00 00 00 14 00 00 00 00 00 00 00 00 00 02 00 00 \
675 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 \
676 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 \
677 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 \
678 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 \
679 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 \
680 00 00 00 00 00 00 00 00 00 00 00 00 \
681 "], [0], [dnl
682 OFPST_QUEUE reply (xid=0x1): 6 queues
683   port 3 queue 1: bytes=302, pkts=1, errors=0
684   port 3 queue 2: bytes=0, pkts=0, errors=0
685   port 2 queue 1: bytes=2100, pkts=20, errors=0
686   port 2 queue 2: bytes=0, pkts=0, errors=0
687   port 1 queue 1: bytes=0, pkts=0, errors=0
688   port 1 queue 2: bytes=0, pkts=0, errors=0
689 ])
690 AT_CLEANUP
691
692 AT_SETUP([OFPST_PORT_DESC request - OF1.0])
693 AT_KEYWORDS([ofp-print OFPT_STATS_REQUEST])
694 AT_CHECK([ovs-ofctl ofp-print "0110000c00000001000d0000"], [0], [dnl
695 OFPST_PORT_DESC request (xid=0x1):
696 ])
697 AT_CLEANUP
698
699 AT_SETUP([OFPST_PORT_DESC reply - OF1.0])
700 AT_KEYWORDS([ofp-print OFPT_STATS_REPLY])
701 AT_CHECK([ovs-ofctl ofp-print "\
702 01 11 00 3c 00 00 00 00 00 0d 00 00 00 03 50 54 \
703 00 00 00 01 65 74 68 30 00 00 00 00 00 00 00 00 \
704 00 00 00 00 00 00 00 01 00 00 00 01 00 00 02 08 \
705 00 00 02 8f 00 00 02 8f 00 00 00 00 \
706 "], [0], [dnl
707 OFPST_PORT_DESC reply (xid=0x0):
708  3(eth0): addr:50:54:00:00:00:01
709      config:     PORT_DOWN
710      state:      LINK_DOWN
711      current:    100MB-FD AUTO_NEG
712      advertised: 10MB-HD 10MB-FD 100MB-HD 100MB-FD COPPER AUTO_NEG
713      supported:  10MB-HD 10MB-FD 100MB-HD 100MB-FD COPPER AUTO_NEG
714      speed: 100 Mbps now, 100 Mbps max
715 ])
716 AT_CLEANUP
717
718 AT_SETUP([OFPT_BARRIER_REQUEST])
719 AT_KEYWORDS([ofp-print])
720 AT_CHECK([ovs-ofctl ofp-print '01 12 00 08 00 00 00 01'], [0], [dnl
721 OFPT_BARRIER_REQUEST (xid=0x1):
722 ])
723 AT_CLEANUP
724
725 AT_SETUP([OFPT_BARRIER_REPLY])
726 AT_KEYWORDS([ofp-print])
727 AT_CHECK([ovs-ofctl ofp-print '01 13 00 08 00 00 00 01'], [0], [dnl
728 OFPT_BARRIER_REPLY (xid=0x1):
729 ])
730 AT_CLEANUP
731
732 AT_SETUP([NXT_ROLE_REQUEST])
733 AT_KEYWORDS([ofp-print])
734 AT_CHECK([ovs-ofctl ofp-print "\
735 01 04 00 14 00 00 00 02 00 00 23 20 00 00 00 0a \
736 00 00 00 01 \
737 "], [0], [dnl
738 NXT_ROLE_REQUEST (xid=0x2): role=master
739 ])
740 AT_CLEANUP
741
742 AT_SETUP([NXT_ROLE_REPLY])
743 AT_KEYWORDS([ofp-print])
744 AT_CHECK([ovs-ofctl ofp-print "\
745 01 04 00 14 00 00 00 02 00 00 23 20 00 00 00 0b \
746 00 00 00 02 \
747 "], [0], [dnl
748 NXT_ROLE_REPLY (xid=0x2): role=slave
749 ])
750 AT_CLEANUP
751
752 AT_SETUP([NXT_SET_PACKET_IN])
753 AT_KEYWORDS([ofp-print])
754 AT_CHECK([ovs-ofctl ofp-print "\
755 01 04 00 14 00 00 00 02 00 00 23 20 00 00 00 10 \
756 00 00 00 01 \
757 "], [0], [dnl
758 NXT_SET_PACKET_IN_FORMAT (xid=0x2): format=nxm
759 ])
760 AT_CLEANUP
761
762 AT_SETUP([NXT_PACKET_IN])
763 AT_KEYWORDS([ofp-print])
764 AT_CHECK([ovs-ofctl ofp-print "\
765 01 04 00 ba 00 00 00 00 00 00 23 20 00 00 00 11 \
766 ff ff ff ff 00 40 01 07 00 00 00 00 00 00 00 09 \
767 00 4e 00 00 00 00 00 00 00 00 00 02 00 01 00 01 \
768 20 08 00 00 00 00 00 00 00 06 00 01 00 04 00 00 \
769 00 01 00 01 02 04 00 00 00 02 00 01 04 04 00 00 \
770 00 03 00 01 06 04 00 00 00 04 00 01 08 04 00 00 \
771 00 05 80 00 05 10 5a 5a 5a 5a 5a 5a 5a 5a ff ff \
772 00 00 ff ff 00 00 00 00 00 00 82 82 82 82 82 82 \
773 80 81 81 81 81 81 81 00 00 50 08 00 45 00 00 28 \
774 00 00 00 00 00 06 32 05 53 53 53 53 54 54 54 54 \
775 00 55 00 56 00 00 00 00 00 00 00 00 50 00 00 00 \
776 31 6d 00 00 00 00 00 00 00 00 \
777 "], [0], [dnl
778 NXT_PACKET_IN (xid=0x0): table_id=7 cookie=0x9 total_len=64 in_port=1 tun_id=0x6 metadata=0x5a5a00005a5a0000/0xffff0000ffff0000 reg0=0x1 reg1=0x2 reg2=0x3 reg3=0x4 reg4=0x5 (via action) data_len=64 (unbuffered)
779 priority:0,tunnel:0,metadata:0,in_port:0000,tci(vlan:80,pcp:0) mac(80:81:81:81:81:81->82:82:82:82:82:82) type:0800 proto:6 tos:0 ttl:0 ip(83.83.83.83->84.84.84.84) port(85->86) tcp_csum:316d
780 ])
781 AT_CLEANUP
782
783 AT_SETUP([NXT_SET_ASYNC_CONFIG])
784 AT_KEYWORDS([ofp-print])
785 AT_CHECK([ovs-ofctl ofp-print "\
786 01 04 00 28 00 00 00 00 00 00 23 20 00 00 00 13 \
787 00 00 10 05 00 00 10 07 00 00 00 03 00 00 00 07 \
788 00 00 00 00 00 00 00 03 \
789 "], [0], [dnl
790 NXT_SET_ASYNC_CONFIG (xid=0x0):
791  master:
792        PACKET_IN: no_match invalid_ttl 12
793      PORT_STATUS: add delete
794     FLOW_REMOVED: (off)
795
796  slave:
797        PACKET_IN: no_match action invalid_ttl 12
798      PORT_STATUS: add delete modify
799     FLOW_REMOVED: idle hard
800 ])
801 AT_CLEANUP
802
803 AT_SETUP([NXT_SET_CONTROLLER_ID])
804 AT_KEYWORDS([ofp-print])
805 AT_CHECK([ovs-ofctl ofp-print "\
806 01 04 00 18 00 00 00 03 00 00 23 20 00 00 00 14 \
807 00 00 00 00 00 00 00 7b \
808 "], [0], [dnl
809 NXT_SET_CONTROLLER_ID (xid=0x3): id=123
810 ])
811 AT_CLEANUP
812
813 AT_SETUP([NXT_FLOW_MONITOR_CANCEL])
814 AT_KEYWORDS([ofp-print])
815 AT_CHECK([ovs-ofctl ofp-print "\
816 01 04 00 14 00 00 00 03 00 00 23 20 00 00 00 15 \
817 01 02 30 40 \
818 "], [0], [dnl
819 NXT_FLOW_MONITOR_CANCEL (xid=0x3): id=16920640
820 ])
821 AT_CLEANUP
822
823 AT_SETUP([NXT_FLOW_MONITOR_PAUSED])
824 AT_KEYWORDS([ofp-print])
825 AT_CHECK([ovs-ofctl ofp-print "\
826 01 04 00 10 00 00 00 03 00 00 23 20 00 00 00 16 \
827 "], [0], [dnl
828 NXT_FLOW_MONITOR_PAUSED (xid=0x3):
829 ])
830 AT_CLEANUP
831
832 AT_SETUP([NXT_FLOW_MONITOR_RESUMED])
833 AT_KEYWORDS([ofp-print])
834 AT_CHECK([ovs-ofctl ofp-print "\
835 01 04 00 10 00 00 00 03 00 00 23 20 00 00 00 17 \
836 "], [0], [dnl
837 NXT_FLOW_MONITOR_RESUMED (xid=0x3):
838 ])
839 AT_CLEANUP
840
841 AT_SETUP([NXT_SET_FLOW_FORMAT])
842 AT_KEYWORDS([ofp-print])
843 AT_CHECK([ovs-ofctl ofp-print "\
844 01 04 00 14 00 00 00 02 00 00 23 20 00 00 00 0c \
845 00 00 00 02 \
846 "], [0], [dnl
847 NXT_SET_FLOW_FORMAT (xid=0x2): format=nxm
848 ])
849 AT_CLEANUP
850
851 # The flow is formatted with cls_rule_format() for the low-verbosity case.
852 AT_SETUP([NXT_FLOW_MOD, low verbosity])
853 AT_KEYWORDS([ofp-print])
854 AT_CHECK([ovs-ofctl ofp-print "\
855 01 04 00 60 00 00 00 02 00 00 23 20 00 00 00 0d \
856 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 00 \
857 ff ff ff ff 00 10 00 00 00 14 00 00 00 00 00 00 \
858 00 01 20 08 00 00 00 00 00 00 01 c8 00 01 00 04 \
859 00 00 00 7b 00 00 00 00 ff ff 00 18 00 00 23 20 \
860 00 07 00 1f 00 01 00 04 00 00 00 00 00 00 00 05 \
861 " 2], [0], [dnl
862 NXT_FLOW_MOD (xid=0x2): ADD reg0=0x7b,tun_id=0x1c8 out_port:16 actions=load:0x5->NXM_NX_REG0[[]]
863 ])
864 AT_CLEANUP
865
866 # The flow is formatted with ofp10_match_to_string() for the
867 # low-verbosity case.
868 AT_SETUP([NXT_FLOW_MOD, high verbosity])
869 AT_KEYWORDS([ofp-print])
870 AT_CHECK([ovs-ofctl ofp-print "\
871 01 04 00 60 00 00 00 02 00 00 23 20 00 00 00 0d \
872 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 00 \
873 ff ff ff ff 01 00 00 00 00 14 00 00 00 00 00 00 \
874 00 01 20 08 00 00 00 00 00 00 01 c8 00 01 00 04 \
875 00 00 00 7b 00 00 00 00 ff ff 00 18 00 00 23 20 \
876 00 07 00 1f 00 01 00 04 00 00 00 00 00 00 00 05 \
877 " 3], [0], [dnl
878 NXT_FLOW_MOD (xid=0x2): ADD NXM_NX_TUN_ID(00000000000001c8), NXM_NX_REG0(0000007b) out_port:256 actions=load:0x5->NXM_NX_REG0[[]]
879 ])
880 AT_CLEANUP
881
882 AT_SETUP([NXT_FLOW_REMOVED])
883 AT_KEYWORDS([ofp-print])
884 AT_CHECK([ovs-ofctl ofp-print "\
885 01 04 00 78 00 00 00 00 00 00 23 20 00 00 00 0e \
886 00 00 00 00 00 00 00 00 ff ff 00 00 00 00 00 06 \
887 01 6e 36 00 00 05 00 3c 00 00 00 00 00 00 00 01 \
888 00 00 00 00 00 00 00 3c 00 00 00 02 00 03 00 00 \
889 02 06 50 54 00 00 00 06 00 00 04 06 50 54 00 00 \
890 00 05 00 00 06 02 08 06 00 00 08 02 00 00 00 00 \
891 1e 02 00 02 00 00 20 04 c0 a8 00 01 00 00 22 04 \
892 c0 a8 00 02 00 00 00 00 \
893 "], [0], [dnl
894 NXT_FLOW_REMOVED (xid=0x0): priority=65535,arp,in_port=3,vlan_tci=0x0000,dl_src=50:54:00:00:00:05,dl_dst=50:54:00:00:00:06,nw_src=192.168.0.1,nw_dst=192.168.0.2,arp_op=2 reason=idle duration6.024s idle5 pkts1 bytes60
895 ])
896 AT_CLEANUP
897
898 AT_SETUP([NXT_FLOW_MOD_TABLE_ID])
899 AT_KEYWORDS([ofp-print])
900 AT_CHECK([ovs-ofctl ofp-print "\
901 01 04 00 18 01 02 03 04 00 00 23 20 00 00 00 0f \
902 01 00 00 00 00 00 00 00 \
903 "], [0], [dnl
904 NXT_FLOW_MOD_TABLE_ID (xid=0x1020304): enable
905 ])
906 AT_CLEANUP
907
908 AT_SETUP([NXST_FLOW request])
909 AT_KEYWORDS([ofp-print OFPT_STATS_REQUEST])
910 AT_CHECK([ovs-ofctl ofp-print "\
911 01 10 00 20 00 00 00 04 ff ff 00 00 00 00 23 20 \
912 00 00 00 00 00 00 00 00 ff ff 00 00 ff 00 00 00 \
913 "], [0], [dnl
914 NXST_FLOW request (xid=0x4): @&t@
915 ])
916 AT_CLEANUP
917
918 AT_SETUP([NXST_FLOW reply])
919 AT_KEYWORDS([ofp-print OFPT_STATS_REPLY])
920 AT_CHECK([ovs-ofctl ofp-print "\
921 01 11 08 18 00 00 00 04 ff ff 00 00 00 00 23 20 \
922 00 00 00 00 00 00 00 00 00 88 00 00 00 00 00 01 \
923 02 dc 6c 00 ff ff 00 05 00 00 00 4c 00 00 00 00 \
924 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 \
925 00 00 00 00 00 00 00 3c 00 00 00 02 00 03 00 00 \
926 02 06 50 54 00 00 00 06 00 00 04 06 50 54 00 00 \
927 00 05 00 00 06 02 08 00 00 00 08 02 00 00 00 00 \
928 0a 01 00 00 00 0e 04 c0 a8 00 01 00 00 10 04 c0 \
929 a8 00 02 00 00 0c 01 06 00 00 12 02 09 e7 00 00 \
930 14 02 00 00 00 00 00 00 00 00 00 08 00 01 00 00 \
931 00 88 00 00 00 00 00 03 32 11 62 00 ff ff 00 05 \
932 00 00 00 4c 00 03 00 00 00 00 00 00 00 00 00 00 \
933 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 3c \
934 00 00 00 02 00 03 00 00 02 06 50 54 00 00 00 06 \
935 00 00 04 06 50 54 00 00 00 05 00 00 06 02 08 00 \
936 00 00 08 02 00 00 00 00 0a 01 00 00 00 0e 04 c0 \
937 a8 00 01 00 00 10 04 c0 a8 00 02 00 00 0c 01 06 \
938 00 00 12 02 09 e4 00 00 14 02 00 00 00 00 00 00 \
939 00 00 00 08 00 01 00 00 00 88 00 00 00 00 00 02 \
940 33 f9 aa 00 ff ff 00 05 00 00 00 4c 00 05 00 00 \
941 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 \
942 00 00 00 00 00 00 00 3c 00 00 00 02 00 01 00 00 \
943 02 06 50 54 00 00 00 05 00 00 04 06 50 54 00 00 \
944 00 06 00 00 06 02 08 00 00 00 08 02 00 00 00 00 \
945 0a 01 00 00 00 0e 04 c0 a8 00 02 00 00 10 04 c0 \
946 a8 00 01 00 00 0c 01 06 00 00 12 02 00 00 00 00 \
947 14 02 09 e5 00 00 00 00 00 00 00 08 00 03 00 00 \
948 00 88 00 00 00 00 00 04 2d 0f a5 00 ff ff 00 05 \
949 00 00 00 4c 00 01 00 00 00 00 00 00 00 00 00 00 \
950 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 3c \
951 00 00 00 02 00 03 00 00 02 06 50 54 00 00 00 06 \
952 00 00 04 06 50 54 00 00 00 05 00 00 06 02 08 00 \
953 00 00 08 02 00 00 00 00 0a 01 00 00 00 0e 04 c0 \
954 a8 00 01 00 00 10 04 c0 a8 00 02 00 00 0c 01 06 \
955 00 00 12 02 09 e3 00 00 14 02 00 00 00 00 00 00 \
956 00 00 00 08 00 01 00 00 00 88 00 00 00 00 00 02 \
957 34 73 bc 00 ff ff 00 05 00 0a 00 4c 00 03 00 03 \
958 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 \
959 00 00 00 00 00 00 00 3c 00 00 00 02 00 03 00 00 \
960 02 06 50 54 00 00 00 06 00 00 04 06 50 54 00 00 \
961 00 05 00 00 06 02 08 00 00 00 08 02 00 00 00 00 \
962 0a 01 00 00 00 0e 04 c0 a8 00 01 00 00 10 04 c0 \
963 a8 00 02 00 00 0c 01 06 00 00 12 02 09 e5 00 00 \
964 14 02 00 00 00 00 00 00 00 00 00 08 00 01 00 00 \
965 00 88 00 00 00 00 00 05 28 0d e8 00 ff ff 00 05 \
966 00 00 00 4c 00 00 00 00 00 00 00 00 00 00 00 00 \
967 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 3c \
968 00 00 00 02 00 03 00 00 02 06 50 54 00 00 00 06 \
969 00 00 04 06 50 54 00 00 00 05 00 00 06 02 08 00 \
970 00 00 08 02 00 00 00 00 0a 01 00 00 00 0e 04 c0 \
971 a8 00 01 00 00 10 04 c0 a8 00 02 00 00 0c 01 06 \
972 00 00 12 02 09 e2 00 00 14 02 00 00 00 00 00 00 \
973 00 00 00 08 00 01 00 00 00 88 00 00 00 00 00 01 \
974 02 62 5a 00 ff ff 00 05 00 00 00 4c 00 00 00 00 \
975 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 \
976 00 00 00 00 00 00 00 3c 00 00 00 02 00 01 00 00 \
977 02 06 50 54 00 00 00 05 00 00 04 06 50 54 00 00 \
978 00 06 00 00 06 02 08 00 00 00 08 02 00 00 00 00 \
979 0a 01 00 00 00 0e 04 c0 a8 00 02 00 00 10 04 c0 \
980 a8 00 01 00 00 0c 01 06 00 00 12 02 00 00 00 00 \
981 14 02 09 e7 00 00 00 00 00 00 00 08 00 03 00 00 \
982 00 88 00 00 00 00 00 01 38 be 5e 00 ff ff 00 05 \
983 00 00 00 4c 00 00 00 00 00 00 00 00 00 00 00 00 \
984 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 3c \
985 00 00 00 02 00 01 00 00 02 06 50 54 00 00 00 05 \
986 00 00 04 06 50 54 00 00 00 06 00 00 06 02 08 00 \
987 00 00 08 02 00 00 00 00 0a 01 00 00 00 0e 04 c0 \
988 a8 00 02 00 00 10 04 c0 a8 00 01 00 00 0c 01 06 \
989 00 00 12 02 00 00 00 00 14 02 09 e6 00 00 00 00 \
990 00 00 00 08 00 03 00 00 00 88 00 00 00 00 00 04 \
991 27 d0 df 00 ff ff 00 05 00 00 00 4c 00 00 00 00 \
992 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 \
993 00 00 00 00 00 00 00 3c 00 00 00 02 00 01 00 00 \
994 02 06 50 54 00 00 00 05 00 00 04 06 50 54 00 00 \
995 00 06 00 00 06 02 08 00 00 00 08 02 00 00 00 00 \
996 0a 01 00 00 00 0e 04 c0 a8 00 02 00 00 10 04 c0 \
997 a8 00 01 00 00 0c 01 06 00 00 12 02 00 00 00 00 \
998 14 02 09 e3 00 00 00 00 00 00 00 08 00 03 00 00 \
999 00 88 00 00 00 00 00 03 2c d2 9c 00 ff ff 00 05 \
1000 00 00 00 4c 00 00 00 00 00 00 00 00 00 00 00 00 \
1001 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 3c \
1002 00 00 00 02 00 01 00 00 02 06 50 54 00 00 00 05 \
1003 00 00 04 06 50 54 00 00 00 06 00 00 06 02 08 00 \
1004 00 00 08 02 00 00 00 00 0a 01 00 00 00 0e 04 c0 \
1005 a8 00 02 00 00 10 04 c0 a8 00 01 00 00 0c 01 06 \
1006 00 00 12 02 00 00 00 00 14 02 09 e4 00 00 00 00 \
1007 00 00 00 08 00 03 00 00 00 88 00 00 00 00 00 00 \
1008 0a 40 83 00 ff ff 00 05 00 00 00 4c 00 00 00 00 \
1009 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 \
1010 00 00 00 00 00 00 00 3c 00 00 00 02 00 03 00 00 \
1011 02 06 50 54 00 00 00 06 00 00 04 06 50 54 00 00 \
1012 00 05 00 00 06 02 08 00 00 00 08 02 00 00 00 00 \
1013 0a 01 00 00 00 0e 04 c0 a8 00 01 00 00 10 04 c0 \
1014 a8 00 02 00 00 0c 01 06 00 00 12 02 09 e8 00 00 \
1015 14 02 00 00 00 00 00 00 00 00 00 08 00 01 00 00 \
1016 00 88 00 00 00 00 00 05 25 31 7c 00 ff ff 00 05 \
1017 00 00 00 4c 00 00 00 00 00 00 00 00 00 00 00 00 \
1018 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 3c \
1019 00 00 00 02 00 01 00 00 02 06 50 54 00 00 00 05 \
1020 00 00 04 06 50 54 00 00 00 06 00 00 06 02 08 00 \
1021 00 00 08 02 00 00 00 00 0a 01 00 00 00 0e 04 c0 \
1022 a8 00 02 00 00 10 04 c0 a8 00 01 00 00 0c 01 06 \
1023 00 00 12 02 00 00 00 00 14 02 09 e2 00 00 00 00 \
1024 00 00 00 08 00 03 00 00 00 88 00 00 00 00 00 00 \
1025 04 c4 b4 00 ff ff 00 05 00 00 00 4c 00 00 00 00 \
1026 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 \
1027 00 00 00 00 00 00 00 3c 00 00 00 02 00 01 00 00 \
1028 02 06 50 54 00 00 00 05 00 00 04 06 50 54 00 00 \
1029 00 06 00 00 06 02 08 00 00 00 08 02 00 00 00 00 \
1030 0a 01 00 00 00 0e 04 c0 a8 00 02 00 00 10 04 c0 \
1031 a8 00 01 00 00 0c 01 06 00 00 12 02 00 00 00 00 \
1032 14 02 09 e8 00 00 00 00 00 00 00 08 00 03 00 00 \
1033 00 88 00 00 00 00 00 01 39 38 70 00 ff ff 00 05 \
1034 00 00 00 4c 00 00 00 00 00 00 00 00 00 00 00 00 \
1035 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 3c \
1036 00 00 00 02 00 03 00 00 02 06 50 54 00 00 00 06 \
1037 00 00 04 06 50 54 00 00 00 05 00 00 06 02 08 00 \
1038 00 00 08 02 00 00 00 00 0a 01 00 00 00 0e 04 c0 \
1039 a8 00 01 00 00 10 04 c0 a8 00 02 00 00 0c 01 06 \
1040 00 00 12 02 09 e6 00 00 14 02 00 00 00 00 00 00 \
1041 00 00 00 08 00 01 00 00 00 60 00 00 00 00 00 e4 \
1042 2e 7d db 00 80 00 00 00 00 00 00 14 00 00 00 00 \
1043 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
1044 00 00 00 00 00 00 00 00 00 01 20 08 00 00 00 00 \
1045 00 00 01 c8 00 01 00 04 00 00 00 7b 00 00 00 00 \
1046 ff ff 00 18 00 00 23 20 00 07 00 1f 00 01 00 04 \
1047 00 00 00 00 00 00 00 05 \
1048 00 30 01 00 00 00 0e 10 00 07 a1 20 80 00 00 00 \
1049 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \
1050 00 00 00 00 00 00 00 64 00 00 00 00 00 00 19 00 \
1051 "], [0],
1052 [[NXST_FLOW reply (xid=0x4):
1053  cookie=0x0, duration=1.048s, table=0, n_packets=1, n_bytes=60, idle_timeout=5, priority=65535,tcp,in_port=3,vlan_tci=0x0000,dl_src=50:54:00:00:00:05,dl_dst=50:54:00:00:00:06,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,tp_src=2535,tp_dst=0 actions=output:1
1054  cookie=0x0, duration=3.84s, table=0, n_packets=1, n_bytes=60, idle_timeout=5, idle_age=2, priority=65535,tcp,in_port=3,vlan_tci=0x0000,dl_src=50:54:00:00:00:05,dl_dst=50:54:00:00:00:06,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,tp_src=2532,tp_dst=0 actions=output:1
1055  cookie=0x0, duration=2.872s, table=0, n_packets=1, n_bytes=60, idle_timeout=5, idle_age=4, priority=65535,tcp,in_port=1,vlan_tci=0x0000,dl_src=50:54:00:00:00:06,dl_dst=50:54:00:00:00:05,nw_src=192.168.0.2,nw_dst=192.168.0.1,nw_tos=0,tp_src=0,tp_dst=2533 actions=output:3
1056  cookie=0x0, duration=4.756s, table=0, n_packets=1, n_bytes=60, idle_timeout=5, idle_age=0, priority=65535,tcp,in_port=3,vlan_tci=0x0000,dl_src=50:54:00:00:00:05,dl_dst=50:54:00:00:00:06,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,tp_src=2531,tp_dst=0 actions=output:1
1057  cookie=0x0, duration=2.88s, table=0, n_packets=1, n_bytes=60, idle_timeout=5, hard_timeout=10, idle_age=2, priority=65535,tcp,in_port=3,vlan_tci=0x0000,dl_src=50:54:00:00:00:05,dl_dst=50:54:00:00:00:06,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,tp_src=2533,tp_dst=0 actions=output:1
1058  cookie=0x0, duration=5.672s, table=0, n_packets=1, n_bytes=60, idle_timeout=5, priority=65535,tcp,in_port=3,vlan_tci=0x0000,dl_src=50:54:00:00:00:05,dl_dst=50:54:00:00:00:06,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,tp_src=2530,tp_dst=0 actions=output:1
1059  cookie=0x0, duration=1.04s, table=0, n_packets=1, n_bytes=60, idle_timeout=5, priority=65535,tcp,in_port=1,vlan_tci=0x0000,dl_src=50:54:00:00:00:06,dl_dst=50:54:00:00:00:05,nw_src=192.168.0.2,nw_dst=192.168.0.1,nw_tos=0,tp_src=0,tp_dst=2535 actions=output:3
1060  cookie=0x0, duration=1.952s, table=0, n_packets=1, n_bytes=60, idle_timeout=5, priority=65535,tcp,in_port=1,vlan_tci=0x0000,dl_src=50:54:00:00:00:06,dl_dst=50:54:00:00:00:05,nw_src=192.168.0.2,nw_dst=192.168.0.1,nw_tos=0,tp_src=0,tp_dst=2534 actions=output:3
1061  cookie=0x0, duration=4.668s, table=0, n_packets=1, n_bytes=60, idle_timeout=5, priority=65535,tcp,in_port=1,vlan_tci=0x0000,dl_src=50:54:00:00:00:06,dl_dst=50:54:00:00:00:05,nw_src=192.168.0.2,nw_dst=192.168.0.1,nw_tos=0,tp_src=0,tp_dst=2531 actions=output:3
1062  cookie=0x0, duration=3.752s, table=0, n_packets=1, n_bytes=60, idle_timeout=5, priority=65535,tcp,in_port=1,vlan_tci=0x0000,dl_src=50:54:00:00:00:06,dl_dst=50:54:00:00:00:05,nw_src=192.168.0.2,nw_dst=192.168.0.1,nw_tos=0,tp_src=0,tp_dst=2532 actions=output:3
1063  cookie=0x0, duration=0.172s, table=0, n_packets=1, n_bytes=60, idle_timeout=5, priority=65535,tcp,in_port=3,vlan_tci=0x0000,dl_src=50:54:00:00:00:05,dl_dst=50:54:00:00:00:06,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,tp_src=2536,tp_dst=0 actions=output:1
1064  cookie=0x0, duration=5.624s, table=0, n_packets=1, n_bytes=60, idle_timeout=5, priority=65535,tcp,in_port=1,vlan_tci=0x0000,dl_src=50:54:00:00:00:06,dl_dst=50:54:00:00:00:05,nw_src=192.168.0.2,nw_dst=192.168.0.1,nw_tos=0,tp_src=0,tp_dst=2530 actions=output:3
1065  cookie=0x0, duration=0.08s, table=0, n_packets=1, n_bytes=60, idle_timeout=5, priority=65535,tcp,in_port=1,vlan_tci=0x0000,dl_src=50:54:00:00:00:06,dl_dst=50:54:00:00:00:05,nw_src=192.168.0.2,nw_dst=192.168.0.1,nw_tos=0,tp_src=0,tp_dst=2536 actions=output:3
1066  cookie=0x0, duration=1.96s, table=0, n_packets=1, n_bytes=60, idle_timeout=5, priority=65535,tcp,in_port=3,vlan_tci=0x0000,dl_src=50:54:00:00:00:05,dl_dst=50:54:00:00:00:06,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_tos=0,tp_src=2534,tp_dst=0 actions=output:1
1067  cookie=0x0, duration=228.78s, table=0, n_packets=0, n_bytes=0, reg0=0x7b,tun_id=0x1c8 actions=load:0x5->NXM_NX_REG0[]
1068  cookie=0x0, duration=3600.0005s, table=1, n_packets=100, n_bytes=6400, actions=drop
1069 ]])
1070 AT_CLEANUP
1071
1072 AT_SETUP([NXST_AGGREGATE request])
1073 AT_KEYWORDS([ofp-print OFPT_STATS_REQUEST])
1074 AT_CHECK([ovs-ofctl ofp-print "\
1075 01 10 00 20 00 00 00 04 ff ff 00 00 00 00 23 20 \
1076 00 00 00 01 00 00 00 00 ff ff 00 00 ff 00 00 00 \
1077 "], [0], [dnl
1078 NXST_AGGREGATE request (xid=0x4): @&t@
1079 ])
1080 AT_CLEANUP
1081
1082 AT_SETUP([NXST_AGGREGATE reply])
1083 AT_KEYWORDS([ofp-print OFPT_STATS_REPLY])
1084 AT_CHECK([ovs-ofctl ofp-print "\
1085 01 11 00 30 00 00 00 04 ff ff 00 00 00 00 23 20 \
1086 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 07 \
1087 00 00 00 00 00 00 01 a4 00 00 00 07 00 00 00 00 \
1088 "], [0], [dnl
1089 NXST_AGGREGATE reply (xid=0x4): packet_count=7 byte_count=420 flow_count=7
1090 ])
1091 AT_CLEANUP
1092
1093 AT_SETUP([NXST_FLOW_MONITOR request])
1094 AT_KEYWORDS([ofp-print OFPT_STATS_REPLY])
1095 AT_CHECK([ovs-ofctl ofp-print "\
1096 01 10 00 40 00 00 00 04 ff ff 00 00 00 00 23 20 00 00 00 02 00 00 00 00 \
1097 00 00 40 00 00 3f ff fe 00 00 01 00 00 00 00 00 \
1098 00 00 20 00 00 04 ff ff 00 06 02 00 00 00 00 00 00 00 00 02 00 01 00 00 \
1099 "], [0], [dnl
1100 NXST_FLOW_MONITOR request (xid=0x4):
1101  id=16384 flags=initial,add,delete,modify,actions,own out_port=LOCAL table=1
1102  id=8192 flags=delete table=2 in_port=1
1103 ])
1104 AT_CLEANUP
1105
1106 AT_SETUP([NXST_FLOW_MONITOR reply])
1107 AT_KEYWORDS([ofp-print OFPT_STATS_REPLY])
1108 AT_CHECK([ovs-ofctl ofp-print "\
1109 01 11 00 40 00 00 00 04 ff ff 00 00 00 00 23 20 00 00 00 02 00 00 00 00 \
1110 00 20 00 01 00 04 80 00 00 05 00 10 00 06 01 00 12 34 56 78 9a bc de f0 \
1111 00 00 00 02 00 01 00 00 \
1112 00 08 00 03 00 01 86 a0 \
1113 "], [0], [dnl
1114 NXST_FLOW_MONITOR reply (xid=0x4):
1115  event=DELETED reason=eviction table=1 idle_timeout=5 hard_timeout=16 cookie=0x123456789abcdef0 in_port=1
1116  event=ABBREV xid=0x186a0
1117 ])
1118 AT_CLEANUP