CSIT-562 HC Test: Persistence suite rework, part1
[csit.git] / tests / perf / 10ge2p1x520-ethip4-ip4base-iacldstbase-ndrpdrdisc.robot
1 # Copyright (c) 2017 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 *** Settings ***
15 | Resource | resources/libraries/robot/performance.robot
16 | Library | resources.libraries.python.Classify.Classify
17 | Library | resources.libraries.python.IPv4Setup.Dut | ${nodes['DUT1']}
18 | ... | WITH NAME | dut1_v4
19 | Library | resources.libraries.python.IPv4Setup.Dut | ${nodes['DUT2']}
20 | ... | WITH NAME | dut2_v4
21 | ...
22 | Force Tags | 3_NODE_SINGLE_LINK_TOPO | PERFTEST | HW_ENV | NDRPDRDISC
23 | ... | NIC_Intel-X520-DA2 | ETH | IP4FWD | FEATURE | IACLDST
24 | ...
25 | Suite Setup | 3-node Performance Suite Setup with DUT's NIC model
26 | ... | L3 | Intel-X520-DA2
27 | Suite Teardown | 3-node Performance Suite Teardown
28 | ...
29 | Test Setup | Performance test setup
30 | Test Teardown | Performance test teardown | ${min_rate}pps | ${framesize}
31 | ... | 3-node-IPv4
32 | ...
33 | Documentation | *RFC2544: Pkt throughput IPv4 iAcl whitelist test cases*
34 | ...
35 | ... | *[Top] Network Topologies:* TG-DUT1-DUT2-TG 3-node circular topology
36 | ... | with single links between nodes.
37 | ... | *[Enc] Packet Encapsulations:* Eth-IPv4 for IPv4 routing.
38 | ... | *[Cfg] DUT configuration:* DUT1 and DUT2 are configured with IPv4
39 | ... | routing, two static IPv4 /24 routes and IPv4 iAcl security whitelist
40 | ... | ingress /24 filter entries applied on links TG - DUT1 and DUT2 - TG.
41 | ... | DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.
42 | ... | *[Ver] TG verification:* TG finds and reports throughput NDR (Non Drop
43 | ... | Rate) with zero packet loss tolerance or throughput PDR (Partial Drop
44 | ... | Rate) with non-zero packet loss tolerance (LT) expressed in percentage
45 | ... | of packets transmitted. NDR and PDR are discovered for different
46 | ... | Ethernet L2 frame sizes using either binary search or linear search
47 | ... | algorithms with configured starting rate and final step that determines
48 | ... | throughput measurement resolution. Test packets are generated by TG on
49 | ... | links to DUTs. TG traffic profile contains two L3 flow-groups
50 | ... | (flow-group per direction, 253 flows per flow-group) with all packets
51 | ... | containing Ethernet header, IPv4 header with IP protocol=61 and
52 | ... | static payload. MAC addresses are matching MAC addresses of the TG
53 | ... | node interfaces.
54 | ... | *[Ref] Applicable standard specifications:* RFC2544.
55
56 *** Variables ***
57 # X520-DA2 bandwidth limit
58 | ${s_limit} | ${10000000000}
59
60 *** Test Cases ***
61 | tc01-64B-1t1c-ethip4-ip4base-iacldstbase-ndrdisc
62 | | [Documentation]
63 | | ... | [Cfg] DUT runs IPv4 routing and whitelist filters config with \
64 | | ... | 1 thread, 1 phy core, 1 receive queue per NIC port. [Ver] Find NDR
65 | | ... | for 64 Byte frames using binary search start at 10GE linerate,
66 | | ... | step 100kpps.
67 | | [Tags] | 64B | 1T1C | STHREAD | NDRDISC
68 | | ${framesize}= | Set Variable | ${64}
69 | | ${min_rate}= | Set Variable | ${100000}
70 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
71 | | ${binary_min}= | Set Variable | ${min_rate}
72 | | ${binary_max}= | Set Variable | ${max_rate}
73 | | ${threshold}= | Set Variable | ${min_rate}
74 | | Given Add '1' worker threads and rxqueues '1' in 3-node single-link topo
75 | | And   Add PCI devices to DUTs from 3-node single link topology
76 | | And   Add No Multi Seg to all DUTs
77 | | And   Apply startup configuration on all VPP DUTs
78 | | When  IPv4 forwarding initialized in a 3-node circular topology
79 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
80 | | ... | ${dut1} | ip4 | dst
81 | | And Vpp Configures Classify Session L3
82 | | ... | ${dut1} | permit | ${table_idx} | ${skip_n} | ${match_n}
83 | | ... | ip4 | dst | 20.20.20.2
84 | | And Vpp Enable Input Acl Interface
85 | | ... | ${dut1} | ${dut1_if1} | ip4 | ${table_idx}
86 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
87 | | ... | ${dut2} | ip4 | dst
88 | | And Vpp Configures Classify Session L3
89 | | ... | ${dut2} | permit | ${table_idx} | ${skip_n} | ${match_n}
90 | | ... | ip4 | dst | 10.10.10.2
91 | | And Vpp Enable Input Acl Interface
92 | | ... | ${dut2} | ${dut2_if2} | ip4 | ${table_idx}
93 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
94 | | ...                                       | ${binary_max} | 3-node-IPv4
95 | | ...                                       | ${min_rate} | ${max_rate}
96 | | ...                                       | ${threshold}
97
98 | tc02-64B-1t1c-ethip4-ip4base-iacldstbase-pdrdisc
99 | | [Documentation]
100 | | ... | [Cfg] DUT runs IPv4 routing and whitelist filters config with \
101 | | ... | 1 thread, 1 phy core, 1 receive queue per NIC port. [Ver] Find PDR
102 | | ... | for 64 Byte frames using binary search start at 10GE linerate,
103 | | ... | step 100kpps, LT=0.5%.
104 | | [Tags] | 64B | 1T1C | STHREAD | PDRDISC | SKIP_PATCH
105 | | ${framesize}= | Set Variable | ${64}
106 | | ${min_rate}= | Set Variable | ${100000}
107 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
108 | | ${binary_min}= | Set Variable | ${min_rate}
109 | | ${binary_max}= | Set Variable | ${max_rate}
110 | | ${threshold}= | Set Variable | ${min_rate}
111 | | Given Add '1' worker threads and rxqueues '1' in 3-node single-link topo
112 | | And   Add PCI devices to DUTs from 3-node single link topology
113 | | And   Add No Multi Seg to all DUTs
114 | | And   Apply startup configuration on all VPP DUTs
115 | | When  IPv4 forwarding initialized in a 3-node circular topology
116 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
117 | | ... | ${dut1} | ip4 | dst
118 | | And Vpp Configures Classify Session L3
119 | | ... | ${dut1} | permit | ${table_idx} | ${skip_n} | ${match_n}
120 | | ... | ip4 | dst | 20.20.20.2
121 | | And Vpp Enable Input Acl Interface
122 | | ... | ${dut1} | ${dut1_if1} | ip4 | ${table_idx}
123 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
124 | | ... | ${dut2} | ip4 | dst
125 | | And Vpp Configures Classify Session L3
126 | | ... | ${dut2} | permit | ${table_idx} | ${skip_n} | ${match_n}
127 | | ... | ip4 | dst | 10.10.10.2
128 | | And Vpp Enable Input Acl Interface
129 | | ... | ${dut2} | ${dut2_if2} | ip4 | ${table_idx}
130 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
131 | | ...                                       | ${binary_max} | 3-node-IPv4
132 | | ...                                       | ${min_rate} | ${max_rate}
133 | | ...                                       | ${threshold}
134 | | ...                                       | ${perf_pdr_loss_acceptance}
135 | | ...                                       | ${perf_pdr_loss_acceptance_type}
136
137 | tc03-1518B-1t1c-ethip4-ip4base-iacldstbase-ndrdisc
138 | | [Documentation]
139 | | ... | [Cfg] DUT runs IPv4 routing and whitelist filters config with \
140 | | ... | 1 thread, 1 phy core, 1 receive queue per NIC port. [Ver] Find NDR
141 | | ... | for 1518 Byte frames using binary search start at 10GE linerate,
142 | | ... | step 10kpps.
143 | | [Tags] | 1518B | 1T1C | STHREAD | NDRDISC
144 | | ${framesize}= | Set Variable | ${1518}
145 | | ${min_rate}= | Set Variable | ${10000}
146 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
147 | | ${binary_min}= | Set Variable | ${min_rate}
148 | | ${binary_max}= | Set Variable | ${max_rate}
149 | | ${threshold}= | Set Variable | ${min_rate}
150 | | Given Add '1' worker threads and rxqueues '1' in 3-node single-link topo
151 | | And   Add PCI devices to DUTs from 3-node single link topology
152 | | And   Add No Multi Seg to all DUTs
153 | | And   Apply startup configuration on all VPP DUTs
154 | | When  IPv4 forwarding initialized in a 3-node circular topology
155 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
156 | | ... | ${dut1} | ip4 | dst
157 | | And Vpp Configures Classify Session L3
158 | | ... | ${dut1} | permit | ${table_idx} | ${skip_n} | ${match_n}
159 | | ... | ip4 | dst | 20.20.20.2
160 | | And Vpp Enable Input Acl Interface
161 | | ... | ${dut1} | ${dut1_if1} | ip4 | ${table_idx}
162 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
163 | | ... | ${dut2} | ip4 | dst
164 | | And Vpp Configures Classify Session L3
165 | | ... | ${dut2} | permit | ${table_idx} | ${skip_n} | ${match_n}
166 | | ... | ip4 | dst | 10.10.10.2
167 | | And Vpp Enable Input Acl Interface
168 | | ... | ${dut2} | ${dut2_if2} | ip4 | ${table_idx}
169 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
170 | | ...                                       | ${binary_max} | 3-node-IPv4
171 | | ...                                       | ${min_rate} | ${max_rate}
172 | | ...                                       | ${threshold}
173
174 | tc04-1518B-1t1c-ethip4-ip4base-iacldstbase-pdrdisc
175 | | [Documentation]
176 | | ... | [Cfg] DUT runs IPv4 routing and whitelist filters config with \
177 | | ... | 1 thread, 1 phy core, 1 receive queue per NIC port. [Ver] Find PDR
178 | | ... | for 1518 Byte frames using binary search start at 10GE linerate,
179 | | ... | step 10kpps, LT=0.5%.
180 | | [Tags] | 1518B | 1T1C | STHREAD | PDRDISC | SKIP_PATCH
181 | | ${framesize}= | Set Variable | ${1518}
182 | | ${min_rate}= | Set Variable | ${10000}
183 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
184 | | ${binary_min}= | Set Variable | ${min_rate}
185 | | ${binary_max}= | Set Variable | ${max_rate}
186 | | ${threshold}= | Set Variable | ${min_rate}
187 | | Given Add '1' worker threads and rxqueues '1' in 3-node single-link topo
188 | | And   Add PCI devices to DUTs from 3-node single link topology
189 | | And   Add No Multi Seg to all DUTs
190 | | And   Apply startup configuration on all VPP DUTs
191 | | When  IPv4 forwarding initialized in a 3-node circular topology
192 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
193 | | ... | ${dut1} | ip4 | dst
194 | | And Vpp Configures Classify Session L3
195 | | ... | ${dut1} | permit | ${table_idx} | ${skip_n} | ${match_n}
196 | | ... | ip4 | dst | 20.20.20.2
197 | | And Vpp Enable Input Acl Interface
198 | | ... | ${dut1} | ${dut1_if1} | ip4 | ${table_idx}
199 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
200 | | ... | ${dut2} | ip4 | dst
201 | | And Vpp Configures Classify Session L3
202 | | ... | ${dut2} | permit | ${table_idx} | ${skip_n} | ${match_n}
203 | | ... | ip4 | dst | 10.10.10.2
204 | | And Vpp Enable Input Acl Interface
205 | | ... | ${dut2} | ${dut2_if2} | ip4 | ${table_idx}
206 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
207 | | ...                                       | ${binary_max} | 3-node-IPv4
208 | | ...                                       | ${min_rate} | ${max_rate}
209 | | ...                                       | ${threshold}
210 | | ...                                       | ${perf_pdr_loss_acceptance}
211 | | ...                                       | ${perf_pdr_loss_acceptance_type}
212
213 | tc05-9000B-1t1c-ethip4-ip4base-iacldstbase-ndrdisc
214 | | [Documentation]
215 | | ... | [Cfg] DUT runs IPv4 routing and whitelist filters config with \
216 | | ... | 1 thread, 1 phy core, 1 receive queue per NIC port. [Ver] Find NDR
217 | | ... | for 9000 Byte frames using binary search start at 10GE linerate,
218 | | ... | step 5kpps.
219 | | [Tags] | 9000B | 1T1C | STHREAD | NDRDISC
220 | | ${framesize}= | Set Variable | ${9000}
221 | | ${min_rate}= | Set Variable | ${10000}
222 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
223 | | ${binary_min}= | Set Variable | ${min_rate}
224 | | ${binary_max}= | Set Variable | ${max_rate}
225 | | ${threshold}= | Set Variable | ${min_rate}
226 | | Given Add '1' worker threads and rxqueues '1' in 3-node single-link topo
227 | | And   Add PCI devices to DUTs from 3-node single link topology
228 | | And   Apply startup configuration on all VPP DUTs
229 | | When  IPv4 forwarding initialized in a 3-node circular topology
230 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
231 | | ... | ${dut1} | ip4 | dst
232 | | And Vpp Configures Classify Session L3
233 | | ... | ${dut1} | permit | ${table_idx} | ${skip_n} | ${match_n}
234 | | ... | ip4 | dst | 20.20.20.2
235 | | And Vpp Enable Input Acl Interface
236 | | ... | ${dut1} | ${dut1_if1} | ip4 | ${table_idx}
237 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
238 | | ... | ${dut2} | ip4 | dst
239 | | And Vpp Configures Classify Session L3
240 | | ... | ${dut2} | permit | ${table_idx} | ${skip_n} | ${match_n}
241 | | ... | ip4 | dst | 10.10.10.2
242 | | And Vpp Enable Input Acl Interface
243 | | ... | ${dut2} | ${dut2_if2} | ip4 | ${table_idx}
244 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
245 | | ...                                       | ${binary_max} | 3-node-IPv4
246 | | ...                                       | ${min_rate} | ${max_rate}
247 | | ...                                       | ${threshold}
248
249 | tc06-9000B-1t1c-ethip4-ip4base-iacldstbase-pdrdisc
250 | | [Documentation]
251 | | ... | [Cfg] DUT runs IPv4 routing and whitelist filters config with \
252 | | ... | 1 thread, 1 phy core, 1 receive queue per NIC port. [Ver] Find PDR
253 | | ... | for 9000 Byte frames using binary search start at 10GE linerate,
254 | | ... | step 5kpps, LT=0.5%.
255 | | [Tags] | 9000B | 1T1C | STHREAD | PDRDISC | SKIP_PATCH
256 | | ${framesize}= | Set Variable | ${9000}
257 | | ${min_rate}= | Set Variable | ${10000}
258 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
259 | | ${binary_min}= | Set Variable | ${min_rate}
260 | | ${binary_max}= | Set Variable | ${max_rate}
261 | | ${threshold}= | Set Variable | ${min_rate}
262 | | Given Add '1' worker threads and rxqueues '1' in 3-node single-link topo
263 | | And   Add PCI devices to DUTs from 3-node single link topology
264 | | And   Apply startup configuration on all VPP DUTs
265 | | When  IPv4 forwarding initialized in a 3-node circular topology
266 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
267 | | ... | ${dut1} | ip4 | dst
268 | | And Vpp Configures Classify Session L3
269 | | ... | ${dut1} | permit | ${table_idx} | ${skip_n} | ${match_n}
270 | | ... | ip4 | dst | 20.20.20.2
271 | | And Vpp Enable Input Acl Interface
272 | | ... | ${dut1} | ${dut1_if1} | ip4 | ${table_idx}
273 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
274 | | ... | ${dut2} | ip4 | dst
275 | | And Vpp Configures Classify Session L3
276 | | ... | ${dut2} | permit | ${table_idx} | ${skip_n} | ${match_n}
277 | | ... | ip4 | dst | 10.10.10.2
278 | | And Vpp Enable Input Acl Interface
279 | | ... | ${dut2} | ${dut2_if2} | ip4 | ${table_idx}
280 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
281 | | ...                                       | ${binary_max} | 3-node-IPv4
282 | | ...                                       | ${min_rate} | ${max_rate}
283 | | ...                                       | ${threshold}
284 | | ...                                       | ${perf_pdr_loss_acceptance}
285 | | ...                                       | ${perf_pdr_loss_acceptance_type}
286
287 | tc07-64B-2t2c-ethip4-ip4base-iacldstbase-ndrdisc
288 | | [Documentation]
289 | | ... | [Cfg] DUT runs IPv4 routing and whitelist filters config with \
290 | | ... | 2 threads, 2 phy cores, 1 receive queue per NIC port. [Ver] Find NDR
291 | | ... | for 64 Byte frames using binary search start at 10GE linerate,
292 | | ... | step 100kpps.
293 | | [Tags] | 64B | 2T2C | MTHREAD | NDRDISC
294 | | ${framesize}= | Set Variable | ${64}
295 | | ${min_rate}= | Set Variable | ${100000}
296 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
297 | | ${binary_min}= | Set Variable | ${min_rate}
298 | | ${binary_max}= | Set Variable | ${max_rate}
299 | | ${threshold}= | Set Variable | ${min_rate}
300 | | Given Add '2' worker threads and rxqueues '1' in 3-node single-link topo
301 | | And   Add PCI devices to DUTs from 3-node single link topology
302 | | And   Add No Multi Seg to all DUTs
303 | | And   Apply startup configuration on all VPP DUTs
304 | | When  IPv4 forwarding initialized in a 3-node circular topology
305 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
306 | | ... | ${dut1} | ip4 | dst
307 | | And Vpp Configures Classify Session L3
308 | | ... | ${dut1} | permit | ${table_idx} | ${skip_n} | ${match_n}
309 | | ... | ip4 | dst | 20.20.20.2
310 | | And Vpp Enable Input Acl Interface
311 | | ... | ${dut1} | ${dut1_if1} | ip4 | ${table_idx}
312 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
313 | | ... | ${dut2} | ip4 | dst
314 | | And Vpp Configures Classify Session L3
315 | | ... | ${dut2} | permit | ${table_idx} | ${skip_n} | ${match_n}
316 | | ... | ip4 | dst | 10.10.10.2
317 | | And Vpp Enable Input Acl Interface
318 | | ... | ${dut2} | ${dut2_if2} | ip4 | ${table_idx}
319 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
320 | | ...                                       | ${binary_max} | 3-node-IPv4
321 | | ...                                       | ${min_rate} | ${max_rate}
322 | | ...                                       | ${threshold}
323
324 | tc08-64B-2t2c-ethip4-ip4base-iacldstbase-pdrdisc
325 | | [Documentation]
326 | | ... | [Cfg] DUT runs IPv4 routing and whitelist filters config with \
327 | | ... | 2 threads, 2 phy cores, 1 receive queue per NIC port. [Ver] Find PDR
328 | | ... | for 64 Byte frames using binary search start at 10GE linerate,
329 | | ... | step 100kpps, LT=0.5%.
330 | | [Tags] | 64B | 2T2C | MTHREAD | PDRDISC | SKIP_PATCH
331 | | ${framesize}= | Set Variable | ${64}
332 | | ${min_rate}= | Set Variable | ${100000}
333 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
334 | | ${binary_min}= | Set Variable | ${min_rate}
335 | | ${binary_max}= | Set Variable | ${max_rate}
336 | | ${threshold}= | Set Variable | ${min_rate}
337 | | Given Add '2' worker threads and rxqueues '1' in 3-node single-link topo
338 | | And   Add PCI devices to DUTs from 3-node single link topology
339 | | And   Add No Multi Seg to all DUTs
340 | | And   Apply startup configuration on all VPP DUTs
341 | | When  IPv4 forwarding initialized in a 3-node circular topology
342 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
343 | | ... | ${dut1} | ip4 | dst
344 | | And Vpp Configures Classify Session L3
345 | | ... | ${dut1} | permit | ${table_idx} | ${skip_n} | ${match_n}
346 | | ... | ip4 | dst | 20.20.20.2
347 | | And Vpp Enable Input Acl Interface
348 | | ... | ${dut1} | ${dut1_if1} | ip4 | ${table_idx}
349 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
350 | | ... | ${dut2} | ip4 | dst
351 | | And Vpp Configures Classify Session L3
352 | | ... | ${dut2} | permit | ${table_idx} | ${skip_n} | ${match_n}
353 | | ... | ip4 | dst | 10.10.10.2
354 | | And Vpp Enable Input Acl Interface
355 | | ... | ${dut2} | ${dut2_if2} | ip4 | ${table_idx}
356 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
357 | | ...                                       | ${binary_max} | 3-node-IPv4
358 | | ...                                       | ${min_rate} | ${max_rate}
359 | | ...                                       | ${threshold}
360 | | ...                                       | ${perf_pdr_loss_acceptance}
361 | | ...                                       | ${perf_pdr_loss_acceptance_type}
362
363 | tc09-1518B-2t2c-ethip4-ip4base-iacldstbase-ndrdisc
364 | | [Documentation]
365 | | ... | [Cfg] DUT runs IPv4 routing and whitelist filters config with \
366 | | ... | 2 threads, 2 phy cores, 1 receive queue per NIC port. [Ver] Find NDR
367 | | ... | for 1518 Byte frames using binary search start at 10GE linerate,
368 | | ... | step 10kpps.
369 | | [Tags] | 1518B | 2T2C | MTHREAD | NDRDISC | SKIP_PATCH
370 | | ${framesize}= | Set Variable | ${1518}
371 | | ${min_rate}= | Set Variable | ${10000}
372 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
373 | | ${binary_min}= | Set Variable | ${min_rate}
374 | | ${binary_max}= | Set Variable | ${max_rate}
375 | | ${threshold}= | Set Variable | ${min_rate}
376 | | Given Add '2' worker threads and rxqueues '1' in 3-node single-link topo
377 | | And   Add PCI devices to DUTs from 3-node single link topology
378 | | And   Add No Multi Seg to all DUTs
379 | | And   Apply startup configuration on all VPP DUTs
380 | | When  IPv4 forwarding initialized in a 3-node circular topology
381 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
382 | | ... | ${dut1} | ip4 | dst
383 | | And Vpp Configures Classify Session L3
384 | | ... | ${dut1} | permit | ${table_idx} | ${skip_n} | ${match_n}
385 | | ... | ip4 | dst | 20.20.20.2
386 | | And Vpp Enable Input Acl Interface
387 | | ... | ${dut1} | ${dut1_if1} | ip4 | ${table_idx}
388 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
389 | | ... | ${dut2} | ip4 | dst
390 | | And Vpp Configures Classify Session L3
391 | | ... | ${dut2} | permit | ${table_idx} | ${skip_n} | ${match_n}
392 | | ... | ip4 | dst | 10.10.10.2
393 | | And Vpp Enable Input Acl Interface
394 | | ... | ${dut2} | ${dut2_if2} | ip4 | ${table_idx}
395 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
396 | | ...                                       | ${binary_max} | 3-node-IPv4
397 | | ...                                       | ${min_rate} | ${max_rate}
398 | | ...                                       | ${threshold}
399
400 | tc10-1518B-2t2c-ethip4-ip4base-iacldstbase-pdrdisc
401 | | [Documentation]
402 | | ... | [Cfg] DUT runs IPv4 routing and whitelist filters config with \
403 | | ... | 2 threads, 2 phy cores, 1 receive queue per NIC port. [Ver] Find PDR
404 | | ... | for 1518 Byte frames using binary search start at 10GE linerate,
405 | | ... | step 10kpps, LT=0.5%.
406 | | [Tags] | 1518B | 2T2C | MTHREAD | PDRDISC | SKIP_PATCH
407 | | ${framesize}= | Set Variable | ${1518}
408 | | ${min_rate}= | Set Variable | ${10000}
409 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
410 | | ${binary_min}= | Set Variable | ${min_rate}
411 | | ${binary_max}= | Set Variable | ${max_rate}
412 | | ${threshold}= | Set Variable | ${min_rate}
413 | | Given Add '2' worker threads and rxqueues '1' in 3-node single-link topo
414 | | And   Add PCI devices to DUTs from 3-node single link topology
415 | | And   Add No Multi Seg to all DUTs
416 | | And   Apply startup configuration on all VPP DUTs
417 | | When  IPv4 forwarding initialized in a 3-node circular topology
418 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
419 | | ... | ${dut1} | ip4 | dst
420 | | And Vpp Configures Classify Session L3
421 | | ... | ${dut1} | permit | ${table_idx} | ${skip_n} | ${match_n}
422 | | ... | ip4 | dst | 20.20.20.2
423 | | And Vpp Enable Input Acl Interface
424 | | ... | ${dut1} | ${dut1_if1} | ip4 | ${table_idx}
425 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
426 | | ... | ${dut2} | ip4 | dst
427 | | And Vpp Configures Classify Session L3
428 | | ... | ${dut2} | permit | ${table_idx} | ${skip_n} | ${match_n}
429 | | ... | ip4 | dst | 10.10.10.2
430 | | And Vpp Enable Input Acl Interface
431 | | ... | ${dut2} | ${dut2_if2} | ip4 | ${table_idx}
432 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
433 | | ...                                       | ${binary_max} | 3-node-IPv4
434 | | ...                                       | ${min_rate} | ${max_rate}
435 | | ...                                       | ${threshold}
436 | | ...                                       | ${perf_pdr_loss_acceptance}
437 | | ...                                       | ${perf_pdr_loss_acceptance_type}
438
439 | tc11-9000B-2t2c-ethip4-ip4base-iacldstbase-ndrdisc
440 | | [Documentation]
441 | | ... | [Cfg] DUT runs IPv4 routing and whitelist filters config with \
442 | | ... | 2 threads, 2 phy cores, 1 receive queue per NIC port. [Ver] Find NDR
443 | | ... | for 9000 Byte frames using binary search start at 10GE linerate,
444 | | ... | step 5kpps.
445 | | [Tags] | 9000B | 2T2C | MTHREAD | NDRDISC | SKIP_PATCH
446 | | ${framesize}= | Set Variable | ${9000}
447 | | ${min_rate}= | Set Variable | ${10000}
448 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
449 | | ${binary_min}= | Set Variable | ${min_rate}
450 | | ${binary_max}= | Set Variable | ${max_rate}
451 | | ${threshold}= | Set Variable | ${min_rate}
452 | | Given Add '2' worker threads and rxqueues '1' in 3-node single-link topo
453 | | And   Add PCI devices to DUTs from 3-node single link topology
454 | | And   Apply startup configuration on all VPP DUTs
455 | | When  IPv4 forwarding initialized in a 3-node circular topology
456 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
457 | | ... | ${dut1} | ip4 | dst
458 | | And Vpp Configures Classify Session L3
459 | | ... | ${dut1} | permit | ${table_idx} | ${skip_n} | ${match_n}
460 | | ... | ip4 | dst | 20.20.20.2
461 | | And Vpp Enable Input Acl Interface
462 | | ... | ${dut1} | ${dut1_if1} | ip4 | ${table_idx}
463 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
464 | | ... | ${dut2} | ip4 | dst
465 | | And Vpp Configures Classify Session L3
466 | | ... | ${dut2} | permit | ${table_idx} | ${skip_n} | ${match_n}
467 | | ... | ip4 | dst | 10.10.10.2
468 | | And Vpp Enable Input Acl Interface
469 | | ... | ${dut2} | ${dut2_if2} | ip4 | ${table_idx}
470 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
471 | | ...                                       | ${binary_max} | 3-node-IPv4
472 | | ...                                       | ${min_rate} | ${max_rate}
473 | | ...                                       | ${threshold}
474
475 | tc12-9000B-2t2c-ethip4-ip4base-iacldstbase-pdrdisc
476 | | [Documentation]
477 | | ... | [Cfg] DUT runs IPv4 routing and whitelist filters config with \
478 | | ... | 2 threads, 2 phy cores, 1 receive queue per NIC port. [Ver] Find PDR
479 | | ... | for 9000 Byte frames using binary search start at 10GE linerate,
480 | | ... | step 5kpps, LT=0.5%.
481 | | [Tags] | 9000B | 2T2C | MTHREAD | PDRDISC | SKIP_PATCH
482 | | ${framesize}= | Set Variable | ${9000}
483 | | ${min_rate}= | Set Variable | ${10000}
484 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
485 | | ${binary_min}= | Set Variable | ${min_rate}
486 | | ${binary_max}= | Set Variable | ${max_rate}
487 | | ${threshold}= | Set Variable | ${min_rate}
488 | | Given Add '2' worker threads and rxqueues '1' in 3-node single-link topo
489 | | And   Add PCI devices to DUTs from 3-node single link topology
490 | | And   Apply startup configuration on all VPP DUTs
491 | | When  IPv4 forwarding initialized in a 3-node circular topology
492 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
493 | | ... | ${dut1} | ip4 | dst
494 | | And Vpp Configures Classify Session L3
495 | | ... | ${dut1} | permit | ${table_idx} | ${skip_n} | ${match_n}
496 | | ... | ip4 | dst | 20.20.20.2
497 | | And Vpp Enable Input Acl Interface
498 | | ... | ${dut1} | ${dut1_if1} | ip4 | ${table_idx}
499 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
500 | | ... | ${dut2} | ip4 | dst
501 | | And Vpp Configures Classify Session L3
502 | | ... | ${dut2} | permit | ${table_idx} | ${skip_n} | ${match_n}
503 | | ... | ip4 | dst | 10.10.10.2
504 | | And Vpp Enable Input Acl Interface
505 | | ... | ${dut2} | ${dut2_if2} | ip4 | ${table_idx}
506 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
507 | | ...                                       | ${binary_max} | 3-node-IPv4
508 | | ...                                       | ${min_rate} | ${max_rate}
509 | | ...                                       | ${threshold}
510 | | ...                                       | ${perf_pdr_loss_acceptance}
511 | | ...                                       | ${perf_pdr_loss_acceptance_type}
512
513 | tc13-64B-4t4c-ethip4-ip4base-iacldstbase-ndrdisc
514 | | [Documentation]
515 | | ... | [Cfg] DUT runs IPv4 routing and whitelist filters config with \
516 | | ... | 4 threads, 4 phy cores, 2 receive queue per NIC port. [Ver] Find NDR
517 | | ... | for 64 Byte frames using binary search start at 10GE linerate,
518 | | ... | step 100kpps.
519 | | [Tags] | 64B | 4T4C | MTHREAD | NDRDISC
520 | | ${framesize}= | Set Variable | ${64}
521 | | ${min_rate}= | Set Variable | ${100000}
522 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
523 | | ${binary_min}= | Set Variable | ${min_rate}
524 | | ${binary_max}= | Set Variable | ${max_rate}
525 | | ${threshold}= | Set Variable | ${min_rate}
526 | | Given Add '4' worker threads and rxqueues '2' in 3-node single-link topo
527 | | And   Add PCI devices to DUTs from 3-node single link topology
528 | | And   Add No Multi Seg to all DUTs
529 | | And   Apply startup configuration on all VPP DUTs
530 | | When  IPv4 forwarding initialized in a 3-node circular topology
531 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
532 | | ... | ${dut1} | ip4 | dst
533 | | And Vpp Configures Classify Session L3
534 | | ... | ${dut1} | permit | ${table_idx} | ${skip_n} | ${match_n}
535 | | ... | ip4 | dst | 20.20.20.2
536 | | And Vpp Enable Input Acl Interface
537 | | ... | ${dut1} | ${dut1_if1} | ip4 | ${table_idx}
538 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
539 | | ... | ${dut2} | ip4 | dst
540 | | And Vpp Configures Classify Session L3
541 | | ... | ${dut2} | permit | ${table_idx} | ${skip_n} | ${match_n}
542 | | ... | ip4 | dst | 10.10.10.2
543 | | And Vpp Enable Input Acl Interface
544 | | ... | ${dut2} | ${dut2_if2} | ip4 | ${table_idx}
545 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
546 | | ...                                       | ${binary_max} | 3-node-IPv4
547 | | ...                                       | ${min_rate} | ${max_rate}
548 | | ...                                       | ${threshold}
549
550 | tc14-64B-4t4c-ethip4-ip4base-iacldstbase-pdrdisc
551 | | [Documentation]
552 | | ... | [Cfg] DUT runs IPv4 routing and whitelist filters config with \
553 | | ... | 4 threads, 4 phy cores, 2 receive queue per NIC port. [Ver] Find PDR
554 | | ... | for 64 Byte frames using binary search start at 10GE linerate,
555 | | ... | step 100kpps, LT=0.5%.
556 | | [Tags] | 64B | 4T4C | MTHREAD | PDRDISC | SKIP_PATCH
557 | | ${framesize}= | Set Variable | ${64}
558 | | ${min_rate}= | Set Variable | ${100000}
559 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
560 | | ${binary_min}= | Set Variable | ${min_rate}
561 | | ${binary_max}= | Set Variable | ${max_rate}
562 | | ${threshold}= | Set Variable | ${min_rate}
563 | | Given Add '4' worker threads and rxqueues '2' in 3-node single-link topo
564 | | And   Add PCI devices to DUTs from 3-node single link topology
565 | | And   Add No Multi Seg to all DUTs
566 | | And   Apply startup configuration on all VPP DUTs
567 | | When  IPv4 forwarding initialized in a 3-node circular topology
568 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
569 | | ... | ${dut1} | ip4 | dst
570 | | And Vpp Configures Classify Session L3
571 | | ... | ${dut1} | permit | ${table_idx} | ${skip_n} | ${match_n}
572 | | ... | ip4 | dst | 20.20.20.2
573 | | And Vpp Enable Input Acl Interface
574 | | ... | ${dut1} | ${dut1_if1} | ip4 | ${table_idx}
575 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
576 | | ... | ${dut2} | ip4 | dst
577 | | And Vpp Configures Classify Session L3
578 | | ... | ${dut2} | permit | ${table_idx} | ${skip_n} | ${match_n}
579 | | ... | ip4 | dst | 10.10.10.2
580 | | And Vpp Enable Input Acl Interface
581 | | ... | ${dut2} | ${dut2_if2} | ip4 | ${table_idx}
582 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
583 | | ...                                       | ${binary_max} | 3-node-IPv4
584 | | ...                                       | ${min_rate} | ${max_rate}
585 | | ...                                       | ${threshold}
586 | | ...                                       | ${perf_pdr_loss_acceptance}
587 | | ...                                       | ${perf_pdr_loss_acceptance_type}
588
589 | tc15-1518B-4t4c-ethip4-ip4base-iacldstbase-ndrdisc
590 | | [Documentation]
591 | | ... | [Cfg] DUT runs IPv4 routing and whitelist filters config with \
592 | | ... | 4 threads, 4 phy cores, 2 receive queue per NIC port. [Ver] Find NDR
593 | | ... | for 1518 Byte frames using binary search start at 10GE linerate,
594 | | ... | step 10kpps.
595 | | [Tags] | 1518B | 4T4C | MTHREAD | NDRDISC | SKIP_PATCH
596 | | ${framesize}= | Set Variable | ${1518}
597 | | ${min_rate}= | Set Variable | ${10000}
598 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
599 | | ${binary_min}= | Set Variable | ${min_rate}
600 | | ${binary_max}= | Set Variable | ${max_rate}
601 | | ${threshold}= | Set Variable | ${min_rate}
602 | | Given Add '4' worker threads and rxqueues '2' in 3-node single-link topo
603 | | And   Add PCI devices to DUTs from 3-node single link topology
604 | | And   Add No Multi Seg to all DUTs
605 | | And   Apply startup configuration on all VPP DUTs
606 | | When  IPv4 forwarding initialized in a 3-node circular topology
607 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
608 | | ... | ${dut1} | ip4 | dst
609 | | And Vpp Configures Classify Session L3
610 | | ... | ${dut1} | permit | ${table_idx} | ${skip_n} | ${match_n}
611 | | ... | ip4 | dst | 20.20.20.2
612 | | And Vpp Enable Input Acl Interface
613 | | ... | ${dut1} | ${dut1_if1} | ip4 | ${table_idx}
614 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
615 | | ... | ${dut2} | ip4 | dst
616 | | And Vpp Configures Classify Session L3
617 | | ... | ${dut2} | permit | ${table_idx} | ${skip_n} | ${match_n}
618 | | ... | ip4 | dst | 10.10.10.2
619 | | And Vpp Enable Input Acl Interface
620 | | ... | ${dut2} | ${dut2_if2} | ip4 | ${table_idx}
621 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
622 | | ...                                       | ${binary_max} | 3-node-IPv4
623 | | ...                                       | ${min_rate} | ${max_rate}
624 | | ...                                       | ${threshold}
625
626 | tc16-1518B-4t4c-ethip4-ip4base-iacldstbase-pdrdisc
627 | | [Documentation]
628 | | ... | [Cfg] DUT runs IPv4 routing and whitelist filters config with \
629 | | ... | 4 threads, 4 phy cores, 2 receive queue per NIC port. [Ver] Find PDR
630 | | ... | for 1518 Byte frames using binary search start at 10GE linerate,
631 | | ... | step 10kpps, LT=0.5%.
632 | | [Tags] | 1518B | 4T4C | MTHREAD | PDRDISC | SKIP_PATCH
633 | | ${framesize}= | Set Variable | ${1518}
634 | | ${min_rate}= | Set Variable | ${10000}
635 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
636 | | ${binary_min}= | Set Variable | ${min_rate}
637 | | ${binary_max}= | Set Variable | ${max_rate}
638 | | ${threshold}= | Set Variable | ${min_rate}
639 | | Given Add '4' worker threads and rxqueues '2' in 3-node single-link topo
640 | | And   Add PCI devices to DUTs from 3-node single link topology
641 | | And   Add No Multi Seg to all DUTs
642 | | And   Apply startup configuration on all VPP DUTs
643 | | When  IPv4 forwarding initialized in a 3-node circular topology
644 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
645 | | ... | ${dut1} | ip4 | dst
646 | | And Vpp Configures Classify Session L3
647 | | ... | ${dut1} | permit | ${table_idx} | ${skip_n} | ${match_n}
648 | | ... | ip4 | dst | 20.20.20.2
649 | | And Vpp Enable Input Acl Interface
650 | | ... | ${dut1} | ${dut1_if1} | ip4 | ${table_idx}
651 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
652 | | ... | ${dut2} | ip4 | dst
653 | | And Vpp Configures Classify Session L3
654 | | ... | ${dut2} | permit | ${table_idx} | ${skip_n} | ${match_n}
655 | | ... | ip4 | dst | 10.10.10.2
656 | | And Vpp Enable Input Acl Interface
657 | | ... | ${dut2} | ${dut2_if2} | ip4 | ${table_idx}
658 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
659 | | ...                                       | ${binary_max} | 3-node-IPv4
660 | | ...                                       | ${min_rate} | ${max_rate}
661 | | ...                                       | ${threshold}
662 | | ...                                       | ${perf_pdr_loss_acceptance}
663 | | ...                                       | ${perf_pdr_loss_acceptance_type}
664
665 | tc17-9000B-4t4c-ethip4-ip4base-iacldstbase-ndrdisc
666 | | [Documentation]
667 | | ... | [Cfg] DUT runs IPv4 routing and whitelist filters config with \
668 | | ... | 4 threads, 4 phy cores, 2 receive queue per NIC port. [Ver] Find NDR
669 | | ... | for 9000 Byte frames using binary search start at 10GE linerate,
670 | | ... | step 5kpps.
671 | | [Tags] | 9000B | 4T4C | MTHREAD | NDRDISC | SKIP_PATCH
672 | | ${framesize}= | Set Variable | ${9000}
673 | | ${min_rate}= | Set Variable | ${10000}
674 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
675 | | ${binary_min}= | Set Variable | ${min_rate}
676 | | ${binary_max}= | Set Variable | ${max_rate}
677 | | ${threshold}= | Set Variable | ${min_rate}
678 | | Given Add '4' worker threads and rxqueues '2' in 3-node single-link topo
679 | | And   Add PCI devices to DUTs from 3-node single link topology
680 | | And   Apply startup configuration on all VPP DUTs
681 | | When  IPv4 forwarding initialized in a 3-node circular topology
682 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
683 | | ... | ${dut1} | ip4 | dst
684 | | And Vpp Configures Classify Session L3
685 | | ... | ${dut1} | permit | ${table_idx} | ${skip_n} | ${match_n}
686 | | ... | ip4 | dst | 20.20.20.2
687 | | And Vpp Enable Input Acl Interface
688 | | ... | ${dut1} | ${dut1_if1} | ip4 | ${table_idx}
689 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
690 | | ... | ${dut2} | ip4 | dst
691 | | And Vpp Configures Classify Session L3
692 | | ... | ${dut2} | permit | ${table_idx} | ${skip_n} | ${match_n}
693 | | ... | ip4 | dst | 10.10.10.2
694 | | And Vpp Enable Input Acl Interface
695 | | ... | ${dut2} | ${dut2_if2} | ip4 | ${table_idx}
696 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
697 | | ...                                       | ${binary_max} | 3-node-IPv4
698 | | ...                                       | ${min_rate} | ${max_rate}
699 | | ...                                       | ${threshold}
700
701 | tc18-9000B-4t4c-ethip4-ip4base-iacldstbase-pdrdisc
702 | | [Documentation]
703 | | ... | [Cfg] DUT runs IPv4 routing and whitelist filters config with \
704 | | ... | 4 threads, 4 phy cores, 2 receive queue per NIC port. [Ver] Find PDR
705 | | ... | for 9000 Byte frames using binary search start at 10GE linerate,
706 | | ... | step 5kpps, LT=0.5%.
707 | | [Tags] | 9000B | 4T4C | MTHREAD | PDRDISC | SKIP_PATCH
708 | | ${framesize}= | Set Variable | ${9000}
709 | | ${min_rate}= | Set Variable | ${10000}
710 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
711 | | ${binary_min}= | Set Variable | ${min_rate}
712 | | ${binary_max}= | Set Variable | ${max_rate}
713 | | ${threshold}= | Set Variable | ${min_rate}
714 | | Given Add '4' worker threads and rxqueues '2' in 3-node single-link topo
715 | | And   Add PCI devices to DUTs from 3-node single link topology
716 | | And   Apply startup configuration on all VPP DUTs
717 | | When  IPv4 forwarding initialized in a 3-node circular topology
718 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
719 | | ... | ${dut1} | ip4 | dst
720 | | And Vpp Configures Classify Session L3
721 | | ... | ${dut1} | permit | ${table_idx} | ${skip_n} | ${match_n}
722 | | ... | ip4 | dst | 20.20.20.2
723 | | And Vpp Enable Input Acl Interface
724 | | ... | ${dut1} | ${dut1_if1} | ip4 | ${table_idx}
725 | | ${table_idx} | ${skip_n} | ${match_n}= | And Vpp Creates Classify Table L3
726 | | ... | ${dut2} | ip4 | dst
727 | | And Vpp Configures Classify Session L3
728 | | ... | ${dut2} | permit | ${table_idx} | ${skip_n} | ${match_n}
729 | | ... | ip4 | dst | 10.10.10.2
730 | | And Vpp Enable Input Acl Interface
731 | | ... | ${dut2} | ${dut2_if2} | ip4 | ${table_idx}
732 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
733 | | ...                                       | ${binary_max} | 3-node-IPv4
734 | | ...                                       | ${min_rate} | ${max_rate}
735 | | ...                                       | ${threshold}
736 | | ...                                       | ${perf_pdr_loss_acceptance}
737 | | ...                                       | ${perf_pdr_loss_acceptance_type}