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