]> git.proxmox.com Git - ovs.git/blame - tests/ofproto.at
ofproto-dpif: Update last-used time of initial rule in handle_flow_miss().
[ovs.git] / tests / ofproto.at
CommitLineData
a2cb9dfd
BP
1AT_BANNER([ofproto])
2
a2cb9dfd 3AT_SETUP([ofproto - echo request])
023e1e0a 4OVS_VSWITCHD_START
a2cb9dfd 5AT_CHECK([ovs-ofctl -vANY:ANY:WARN probe br0])
023e1e0a 6OVS_VSWITCHD_STOP
a2cb9dfd
BP
7AT_CLEANUP
8
9AT_SETUP([ofproto - feature request, config request])
023e1e0a 10OVS_VSWITCHD_START
a2cb9dfd 11AT_CHECK([ovs-ofctl -vANY:ANY:WARN show br0], [0], [stdout])
640c7c94 12AT_CHECK([STRIP_XIDS stdout], [0], [dnl
d1e2cf21 13OFPT_FEATURES_REPLY: ver:0x1, dpid:fedcba9876543210
0697b5c3 14n_tables:255, n_buffers:256
428d83e6 15features: capabilities:0xc7, actions:0xfff
0ab14c8e
BP
16 LOCAL(br0): addr:aa:55:aa:55:00:00
17 config: PORT_DOWN
18 state: LINK_DOWN
3b62feba 19OFPT_GET_CONFIG_REPLY: frags=normal miss_send_len=0
a2cb9dfd 20])
023e1e0a 21OVS_VSWITCHD_STOP
a2cb9dfd
BP
22AT_CLEANUP
23
eaa6eb2a
BP
24dnl This is really bare-bones.
25dnl It at least checks request and reply serialization and deserialization.
26AT_SETUP([ofproto - port stats])
023e1e0a 27OVS_VSWITCHD_START
eaa6eb2a
BP
28AT_CHECK([ovs-ofctl -vANY:ANY:WARN dump-ports br0], [0], [stdout])
29AT_CHECK([STRIP_XIDS stdout], [0], [dnl
30OFPST_PORT reply: 1 ports
31 port 65534: rx pkts=0, bytes=0, drop=0, errs=0, frame=0, over=0, crc=0
32 tx pkts=0, bytes=0, drop=0, errs=0, coll=0
33])
023e1e0a 34OVS_VSWITCHD_STOP
eaa6eb2a
BP
35AT_CLEANUP
36
37dnl This is really bare-bones.
38dnl It at least checks request and reply serialization and deserialization.
39AT_SETUP([ofproto - queue stats])
023e1e0a 40OVS_VSWITCHD_START
eaa6eb2a
BP
41AT_CHECK([ovs-ofctl -vANY:ANY:WARN queue-stats br0], [0], [stdout])
42AT_CHECK([STRIP_XIDS stdout], [0], [dnl
43OFPST_QUEUE reply: 0 queues
44])
023e1e0a 45OVS_VSWITCHD_STOP
eaa6eb2a
BP
46AT_CLEANUP
47
a2cb9dfd 48AT_SETUP([ofproto - mod-port])
023e1e0a 49OVS_VSWITCHD_START
a2cb9dfd
BP
50for command_config_state in \
51 'up 0 0' \
0ab14c8e
BP
52 'noflood NO_FLOOD 0' \
53 'down PORT_DOWN,NO_FLOOD LINK_DOWN' \
54 'flood PORT_DOWN LINK_DOWN'
a2cb9dfd
BP
55do
56 set $command_config_state
0ab14c8e 57 command=$[1] config=`echo $[2] | sed 's/,/ /g'` state=$[3]
a2cb9dfd
BP
58 AT_CHECK([ovs-ofctl -vANY:ANY:WARN mod-port br0 br0 $command])
59 AT_CHECK([ovs-ofctl -vANY:ANY:WARN show br0], [0], [stdout])
640c7c94 60 AT_CHECK_UNQUOTED([STRIP_XIDS stdout], [0], [dnl
d1e2cf21 61OFPT_FEATURES_REPLY: ver:0x1, dpid:fedcba9876543210
0697b5c3 62n_tables:255, n_buffers:256
428d83e6 63features: capabilities:0xc7, actions:0xfff
0ab14c8e
BP
64 LOCAL(br0): addr:aa:55:aa:55:00:00
65 config: $config
66 state: $state
3b62feba 67OFPT_GET_CONFIG_REPLY: frags=normal miss_send_len=0
a2cb9dfd
BP
68])
69done
023e1e0a 70OVS_VSWITCHD_STOP
a2cb9dfd 71AT_CLEANUP
640c7c94 72
c168dcc8 73AT_SETUP([ofproto - basic flow_mod commands (NXM)])
023e1e0a 74OVS_VSWITCHD_START
640c7c94
BP
75AT_CHECK([ovs-ofctl dump-flows br0 | STRIP_XIDS], [0], [NXST_FLOW reply:
76])
70315176 77AT_CHECK([echo 'in_port=1,actions=0' | ovs-ofctl add-flows br0 -])
640c7c94 78AT_CHECK([ovs-ofctl add-flow br0 in_port=0,actions=1])
0697b5c3 79AT_CHECK([ovs-ofctl -F nxm add-flow br0 table=1,in_port=3,actions=2])
0721c073 80AT_CHECK([ovs-ofctl dump-flows br0 | STRIP_XIDS | STRIP_DURATION | sort], [0], [dnl
e896c2d4
BP
81 cookie=0x0, duration=?s, table=0, n_packets=0, n_bytes=0, in_port=0 actions=output:1
82 cookie=0x0, duration=?s, table=0, n_packets=0, n_bytes=0, in_port=1 actions=output:0
0697b5c3 83 cookie=0x0, duration=?s, table=1, n_packets=0, n_bytes=0, in_port=3 actions=output:2
0721c073 84NXST_FLOW reply:
640c7c94 85])
0697b5c3 86AT_CHECK([ovs-ofctl dump-aggregate br0 table=0 | STRIP_XIDS], [0], [dnl
c168dcc8
BP
87NXST_AGGREGATE reply: packet_count=0 byte_count=0 flow_count=2
88])
640c7c94
BP
89AT_CHECK([ovs-ofctl del-flows br0])
90AT_CHECK([ovs-ofctl dump-flows br0 | STRIP_XIDS], [0], [NXST_FLOW reply:
91])
023e1e0a 92OVS_VSWITCHD_STOP
640c7c94 93AT_CLEANUP
c168dcc8
BP
94
95AT_SETUP([ofproto - basic flow_mod commands (OpenFlow 1.0)])
023e1e0a 96OVS_VSWITCHD_START
c168dcc8
BP
97AT_CHECK([ovs-ofctl -F openflow10 dump-flows br0 | STRIP_XIDS], [0], [OFPST_FLOW reply:
98])
99AT_CHECK([echo 'in_port=1,actions=0' | ovs-ofctl -F openflow10 add-flows br0 -])
100AT_CHECK([ovs-ofctl -F openflow10 add-flow br0 in_port=0,actions=1])
0697b5c3 101AT_CHECK([ovs-ofctl -F openflow10 add-flow br0 table=1,in_port=3,actions=2])
c168dcc8 102AT_CHECK([ovs-ofctl -F openflow10 dump-flows br0 | STRIP_XIDS | STRIP_DURATION | sort], [0], [dnl
e896c2d4
BP
103 cookie=0x0, duration=?s, table=0, n_packets=0, n_bytes=0, in_port=0 actions=output:1
104 cookie=0x0, duration=?s, table=0, n_packets=0, n_bytes=0, in_port=1 actions=output:0
0697b5c3 105 cookie=0x0, duration=?s, table=1, n_packets=0, n_bytes=0, in_port=3 actions=output:2
c168dcc8
BP
106OFPST_FLOW reply:
107])
0697b5c3 108AT_CHECK([ovs-ofctl -F openflow10 dump-aggregate br0 table=0 | STRIP_XIDS], [0], [dnl
c168dcc8
BP
109OFPST_AGGREGATE reply: packet_count=0 byte_count=0 flow_count=2
110])
111AT_CHECK([ovs-ofctl -F openflow10 del-flows br0])
112AT_CHECK([ovs-ofctl -F openflow10 dump-flows br0 | STRIP_XIDS], [0], [OFPST_FLOW reply:
113])
023e1e0a 114OVS_VSWITCHD_STOP
c168dcc8 115AT_CLEANUP
e729e793
JP
116
117AT_SETUP([ofproto - dump flows with cookie])
118OVS_VSWITCHD_START
119AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=1,actions=0])
120AT_CHECK([ovs-ofctl add-flow br0 cookie=0x2,in_port=2,actions=0])
121AT_CHECK([ovs-ofctl add-flow br0 cookie=0x3,in_port=3,actions=0])
122AT_CHECK([ovs-ofctl dump-flows br0 | STRIP_XIDS | STRIP_DURATION | sort], [0], [dnl
123 cookie=0x1, duration=?s, table=0, n_packets=0, n_bytes=0, in_port=1 actions=output:0
124 cookie=0x2, duration=?s, table=0, n_packets=0, n_bytes=0, in_port=2 actions=output:0
125 cookie=0x3, duration=?s, table=0, n_packets=0, n_bytes=0, in_port=3 actions=output:0
126NXST_FLOW reply:
127])
128AT_CHECK([ovs-ofctl dump-aggregate br0 table=0 | STRIP_XIDS], [0], [dnl
129NXST_AGGREGATE reply: packet_count=0 byte_count=0 flow_count=3
130])
131AT_CHECK([ovs-ofctl dump-flows br0 cookie=0x3 | STRIP_XIDS | STRIP_DURATION | sort], [0], [dnl
132 cookie=0x3, duration=?s, table=0, n_packets=0, n_bytes=0, in_port=3 actions=output:0
133NXST_FLOW reply:
134])
135AT_CHECK([ovs-ofctl dump-aggregate br0 cookie=0x3 | STRIP_XIDS], [0], [dnl
136NXST_AGGREGATE reply: packet_count=0 byte_count=0 flow_count=1
137])
138OVS_VSWITCHD_STOP
139AT_CLEANUP
140
141AT_SETUP([ofproto - dump flows with cookie mask])
142OVS_VSWITCHD_START
143AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=1,actions=0])
144AT_CHECK([ovs-ofctl add-flow br0 cookie=0x2,in_port=2,actions=0])
145AT_CHECK([ovs-ofctl add-flow br0 cookie=0x3,in_port=3,actions=0])
146AT_CHECK([ovs-ofctl dump-flows br0 | STRIP_XIDS | STRIP_DURATION | sort], [0], [dnl
147 cookie=0x1, duration=?s, table=0, n_packets=0, n_bytes=0, in_port=1 actions=output:0
148 cookie=0x2, duration=?s, table=0, n_packets=0, n_bytes=0, in_port=2 actions=output:0
149 cookie=0x3, duration=?s, table=0, n_packets=0, n_bytes=0, in_port=3 actions=output:0
150NXST_FLOW reply:
151])
152AT_CHECK([ovs-ofctl dump-aggregate br0 table=0 | STRIP_XIDS], [0], [dnl
153NXST_AGGREGATE reply: packet_count=0 byte_count=0 flow_count=3
154])
155AT_CHECK([ovs-ofctl dump-flows br0 cookie=0x3/0x1 | STRIP_XIDS | STRIP_DURATION | sort], [0], [dnl
156 cookie=0x1, duration=?s, table=0, n_packets=0, n_bytes=0, in_port=1 actions=output:0
157 cookie=0x3, duration=?s, table=0, n_packets=0, n_bytes=0, in_port=3 actions=output:0
158NXST_FLOW reply:
159])
160AT_CHECK([ovs-ofctl dump-aggregate br0 cookie=0x3/0x1 | STRIP_XIDS], [0], [dnl
161NXST_AGGREGATE reply: packet_count=0 byte_count=0 flow_count=2
162])
163OVS_VSWITCHD_STOP
164AT_CLEANUP
165
166AT_SETUP([ofproto - del flows with cookie])
167OVS_VSWITCHD_START
168AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=1,actions=0])
169AT_CHECK([ovs-ofctl add-flow br0 cookie=0x2,in_port=2,actions=0])
170AT_CHECK([ovs-ofctl add-flow br0 cookie=0x3,in_port=3,actions=0])
171AT_CHECK([ovs-ofctl dump-flows br0 | STRIP_XIDS | STRIP_DURATION | sort], [0], [dnl
172 cookie=0x1, duration=?s, table=0, n_packets=0, n_bytes=0, in_port=1 actions=output:0
173 cookie=0x2, duration=?s, table=0, n_packets=0, n_bytes=0, in_port=2 actions=output:0
174 cookie=0x3, duration=?s, table=0, n_packets=0, n_bytes=0, in_port=3 actions=output:0
175NXST_FLOW reply:
176])
177AT_CHECK([ovs-ofctl del-flows br0 cookie=0x3])
178AT_CHECK([ovs-ofctl dump-flows br0 | STRIP_XIDS | STRIP_DURATION | sort], [0], [dnl
179 cookie=0x1, duration=?s, table=0, n_packets=0, n_bytes=0, in_port=1 actions=output:0
180 cookie=0x2, duration=?s, table=0, n_packets=0, n_bytes=0, in_port=2 actions=output:0
181NXST_FLOW reply:
182])
183OVS_VSWITCHD_STOP
184AT_CLEANUP
185
186AT_SETUP([ofproto - del flows with cookie mask])
187OVS_VSWITCHD_START
188AT_CHECK([ovs-ofctl add-flow br0 cookie=0x1,in_port=1,actions=0])
189AT_CHECK([ovs-ofctl add-flow br0 cookie=0x2,in_port=2,actions=0])
190AT_CHECK([ovs-ofctl add-flow br0 cookie=0x3,in_port=3,actions=0])
191AT_CHECK([ovs-ofctl dump-flows br0 | STRIP_XIDS | STRIP_DURATION | sort], [0], [dnl
192 cookie=0x1, duration=?s, table=0, n_packets=0, n_bytes=0, in_port=1 actions=output:0
193 cookie=0x2, duration=?s, table=0, n_packets=0, n_bytes=0, in_port=2 actions=output:0
194 cookie=0x3, duration=?s, table=0, n_packets=0, n_bytes=0, in_port=3 actions=output:0
195NXST_FLOW reply:
196])
197AT_CHECK([ovs-ofctl del-flows br0 cookie=0x3/0x1])
198AT_CHECK([ovs-ofctl dump-flows br0 | STRIP_XIDS | STRIP_DURATION | sort], [0], [dnl
199 cookie=0x2, duration=?s, table=0, n_packets=0, n_bytes=0, in_port=2 actions=output:0
200NXST_FLOW reply:
201])
202OVS_VSWITCHD_STOP
203AT_CLEANUP
254750ce
BP
204
205AT_SETUP([ofproto - flow table configuration])
206OVS_VSWITCHD_START
207# Check the default configuration.
208(echo "OFPST_TABLE reply (xid=0x1): 255 tables
209 0: classifier: wild=0x3fffff, max=1000000, active=0
210 lookup=0, matched=0"
211 x=1
212 while test $x -lt 255; do
213 printf " %d: %-8s: wild=0x3fffff, max=1000000, active=0
214 lookup=0, matched=0
215" $x table$x
216 x=`expr $x + 1`
217 done) > expout
218AT_CHECK([ovs-ofctl dump-tables br0], [0], [expout])
219# Change the configuration.
220AT_CHECK(
221 [ovs-vsctl \
222 -- --id=@t0 create Flow_Table name=main \
223 -- --id=@t1 create Flow_Table flow-limit=1024 \
224 -- set bridge br0 'flow_tables={1=@t1,0=@t0}' \
225 | perl $srcdir/uuidfilt.pl],
226 [0], [<0>
227<1>
228])
229# Check that the configuration was updated.
230mv expout orig-expout
231(echo "OFPST_TABLE reply (xid=0x1): 255 tables
232 0: main : wild=0x3fffff, max=1000000, active=0
233 lookup=0, matched=0
234 1: table1 : wild=0x3fffff, max= 1024, active=0
235 lookup=0, matched=0"
236 tail -n +6 orig-expout) > expout
237AT_CHECK([ovs-ofctl dump-tables br0], [0], [expout])
238OVS_VSWITCHD_STOP
239AT_CLEANUP
240
241AT_SETUP([ofproto - hard limits on flow table size])
242OVS_VSWITCHD_START
243# Configure a maximum of 4 flows.
244AT_CHECK(
245 [ovs-vsctl \
246 -- --id=@t0 create Flow_Table flow-limit=4 \
247 -- set bridge br0 flow_tables:0=@t0 \
248 | perl $srcdir/uuidfilt.pl],
249 [0], [<0>
250])
251# Add 4 flows.
252for in_port in 1 2 3 4; do
253 ovs-ofctl add-flow br0 in_port=$in_port,actions=drop
254done
255AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
256 in_port=1 actions=drop
257 in_port=2 actions=drop
258 in_port=3 actions=drop
259 in_port=4 actions=drop
260NXST_FLOW reply:
261])
262# Adding another flow will be refused.
263AT_CHECK([ovs-ofctl add-flow br0 in_port=5,actions=drop], [1], [], [stderr])
264AT_CHECK([head -n 1 stderr], [0],
265 [OFPT_ERROR (xid=0x1): OFPFMFC_ALL_TABLES_FULL
266])
267# Also a mod-flow that would add a flow will be refused.
268AT_CHECK([ovs-ofctl mod-flows br0 in_port=5,actions=drop], [1], [], [stderr])
269AT_CHECK([head -n 1 stderr], [0],
270 [OFPT_ERROR (xid=0x1): OFPFMFC_ALL_TABLES_FULL
271])
272# Replacing or modifying an existing flow is allowed.
273AT_CHECK([ovs-ofctl add-flow br0 in_port=4,actions=normal])
274AT_CHECK([ovs-ofctl mod-flows br0 in_port=3,actions=output:1])
275AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
276 in_port=1 actions=drop
277 in_port=2 actions=drop
278 in_port=3 actions=output:1
279 in_port=4 actions=NORMAL
280NXST_FLOW reply:
281])
282OVS_VSWITCHD_STOP
283AT_CLEANUP
284
285AT_SETUP([ofproto - eviction upon table overflow])
286OVS_VSWITCHD_START
287# Configure a maximum of 4 flows.
288AT_CHECK(
289 [ovs-vsctl \
290 -- --id=@t0 create Flow_Table flow-limit=4 overflow-policy=evict \
291 -- set bridge br0 flow_tables:0=@t0 \
292 | perl $srcdir/uuidfilt.pl],
293 [0], [<0>
294])
295# Add 4 flows.
296for in_port in 4 3 2 1; do
297 ovs-ofctl add-flow br0 idle_timeout=${in_port}0,in_port=$in_port,actions=drop
298done
299AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
300 idle_timeout=10,in_port=1 actions=drop
301 idle_timeout=20,in_port=2 actions=drop
302 idle_timeout=30,in_port=3 actions=drop
303 idle_timeout=40,in_port=4 actions=drop
304NXST_FLOW reply:
305])
306# Adding another flow will cause the one that expires soonest to be evicted.
307AT_CHECK([ovs-ofctl add-flow br0 in_port=5,actions=drop])
308AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
309 idle_timeout=20,in_port=2 actions=drop
310 idle_timeout=30,in_port=3 actions=drop
311 idle_timeout=40,in_port=4 actions=drop
312 in_port=5 actions=drop
313NXST_FLOW reply:
314])
315# A mod-flow that adds a flow also causes eviction, but replacing or
316# modifying an existing flow doesn't.
317AT_CHECK([ovs-ofctl mod-flows br0 in_port=6,actions=drop])
318AT_CHECK([ovs-ofctl add-flow br0 in_port=4,actions=normal])
319AT_CHECK([ovs-ofctl mod-flows br0 in_port=3,actions=output:1])
320AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
321 idle_timeout=30,in_port=3 actions=output:1
322 in_port=4 actions=NORMAL
323 in_port=5 actions=drop
324 in_port=6 actions=drop
325NXST_FLOW reply:
326])
327# Flows with no timeouts at all cannot be evicted.
328AT_CHECK([ovs-ofctl add-flow br0 in_port=7,actions=normal])
329AT_CHECK([ovs-ofctl add-flow br0 in_port=8,actions=drop], [1], [], [stderr])
330AT_CHECK([head -n 1 stderr], [0],
331 [OFPT_ERROR (xid=0x1): OFPFMFC_ALL_TABLES_FULL
332])
333AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
334 in_port=4 actions=NORMAL
335 in_port=5 actions=drop
336 in_port=6 actions=drop
337 in_port=7 actions=NORMAL
338NXST_FLOW reply:
339])
340OVS_VSWITCHD_STOP
341AT_CLEANUP
342
343AT_SETUP([ofproto - eviction upon table overflow, with fairness])
344OVS_VSWITCHD_START
345# Configure a maximum of 4 flows.
346AT_CHECK(
347 [ovs-vsctl \
348 -- --id=@t0 create Flow_Table name=evict flow-limit=4 \
349 overflow-policy=evict \
350 groups='"NXM_OF_IN_PORT[[]]"' \
351 -- set bridge br0 flow_tables:0=@t0 \
352 | perl $srcdir/uuidfilt.pl],
353 [0], [<0>
354])
355# Add 4 flows.
356ovs-ofctl add-flows br0 - <<EOF
357idle_timeout=10 in_port=2 dl_src=00:44:55:66:77:88 actions=drop
358idle_timeout=20 in_port=1 dl_src=00:11:22:33:44:55 actions=drop
359idle_timeout=30 in_port=1 dl_src=00:22:33:44:55:66 actions=drop
360idle_timeout=40 in_port=1 dl_src=00:33:44:55:66:77 actions=drop
361EOF
362AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
363 idle_timeout=10,in_port=2,dl_src=00:44:55:66:77:88 actions=drop
364 idle_timeout=20,in_port=1,dl_src=00:11:22:33:44:55 actions=drop
365 idle_timeout=30,in_port=1,dl_src=00:22:33:44:55:66 actions=drop
366 idle_timeout=40,in_port=1,dl_src=00:33:44:55:66:77 actions=drop
367NXST_FLOW reply:
368])
369# Adding another flow will cause the one that expires soonest within
370# the largest group (those with in_port=1) to be evicted. In this
371# case this is not the same as the one that expires soonest overall
372# (which is what makes the test interesting):
373AT_CHECK([ovs-ofctl add-flow br0 in_port=2,dl_src=00:55:66:77:88:99,actions=drop])
374AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
375 idle_timeout=10,in_port=2,dl_src=00:44:55:66:77:88 actions=drop
376 idle_timeout=30,in_port=1,dl_src=00:22:33:44:55:66 actions=drop
377 idle_timeout=40,in_port=1,dl_src=00:33:44:55:66:77 actions=drop
378 in_port=2,dl_src=00:55:66:77:88:99 actions=drop
379NXST_FLOW reply:
380])
381# Enlarge the flow limit, change the eviction policy back to strictly
382# based on expiration, and and add some flows.
383AT_CHECK([ovs-vsctl set Flow_Table evict groups='[[]]' flow-limit=7])
384ovs-ofctl add-flows br0 - <<EOF
385idle_timeout=50 in_port=2 dl_src=00:66:77:88:99:aa actions=drop
386idle_timeout=60 in_port=2 dl_src=00:77:88:99:aa:bb actions=drop
387idle_timeout=70 in_port=2 dl_src=00:88:99:aa:bb:cc actions=drop
388EOF
389AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
390 idle_timeout=10,in_port=2,dl_src=00:44:55:66:77:88 actions=drop
391 idle_timeout=30,in_port=1,dl_src=00:22:33:44:55:66 actions=drop
392 idle_timeout=40,in_port=1,dl_src=00:33:44:55:66:77 actions=drop
393 idle_timeout=50,in_port=2,dl_src=00:66:77:88:99:aa actions=drop
394 idle_timeout=60,in_port=2,dl_src=00:77:88:99:aa:bb actions=drop
395 idle_timeout=70,in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
396 in_port=2,dl_src=00:55:66:77:88:99 actions=drop
397NXST_FLOW reply:
398])
399# Adding another flow will cause the one that expires soonest overall
400# to be evicted.
401AT_CHECK([ovs-ofctl add-flow br0 'idle_timeout=80 in_port=2 dl_src=00:99:aa:bb:cc:dd actions=drop'])
402AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
403 idle_timeout=30,in_port=1,dl_src=00:22:33:44:55:66 actions=drop
404 idle_timeout=40,in_port=1,dl_src=00:33:44:55:66:77 actions=drop
405 idle_timeout=50,in_port=2,dl_src=00:66:77:88:99:aa actions=drop
406 idle_timeout=60,in_port=2,dl_src=00:77:88:99:aa:bb actions=drop
407 idle_timeout=70,in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
408 idle_timeout=80,in_port=2,dl_src=00:99:aa:bb:cc:dd actions=drop
409 in_port=2,dl_src=00:55:66:77:88:99 actions=drop
410NXST_FLOW reply:
411])
412# Reducing the flow limit also causes the flows that expire soonest
413# overall to be evicted.
414AT_CHECK([ovs-vsctl set Flow_Table evict flow-limit=4])
415AT_CHECK([ovs-ofctl dump-flows br0 | ofctl_strip | sort], [0], [dnl
416 idle_timeout=60,in_port=2,dl_src=00:77:88:99:aa:bb actions=drop
417 idle_timeout=70,in_port=2,dl_src=00:88:99:aa:bb:cc actions=drop
418 idle_timeout=80,in_port=2,dl_src=00:99:aa:bb:cc:dd actions=drop
419 in_port=2,dl_src=00:55:66:77:88:99 actions=drop
420NXST_FLOW reply:
421])
422OVS_VSWITCHD_STOP
423AT_CLEANUP