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