Update the list of disabled pluggins
[csit.git] / tests / vpp / func / honeycomb / mgmt-cfg-pluginacl-apihc-apivat-func.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 *** Variables ***
15 | &{if_settings}= | enabled=True
16 # Bridge domain settings
17 | ${bd_name}= | bd1
18 | &{bd_settings}= | flood=${True} | forward=${True} | learn=${True}
19 | ... | unknown-unicast-flood=${True} | arp-termination=${False}
20 | &{bd_if_settings}= | split_horizon_group=${0} | bvi=${False}
21 # Names for AC lists
22 | ${acl_name_macip}= | macip
23 | ${acl_name_l3_ip4}= | acl_l3_ip4
24 | ${acl_name_l3_ip6}= | acl_l3_ip6
25 | ${acl_name_l4}= | acl_l4
26 | ${acl_name_mixed}= | acl_mixed
27 | ${acl_name_icmp}= | acl_icmp
28 | ${acl_name_icmpv6}= | acl_icmpv6
29 | ${acl_name_reflex}= | acl_reflex
30
31 *** Settings ***
32 | Resource | resources/libraries/robot/shared/default.robot
33 | Resource | resources/libraries/robot/honeycomb/honeycomb.robot
34 | Resource | resources/libraries/robot/honeycomb/interfaces.robot
35 | Resource | resources/libraries/robot/honeycomb/bridge_domain.robot
36 | Resource | resources/libraries/robot/honeycomb/access_control_lists.robot
37 | Resource | resources/libraries/robot/shared/testing_path.robot
38 | Resource | resources/libraries/robot/shared/traffic.robot
39 | Library | resources.libraries.python.honeycomb.HcAPIKwACL.ACLKeywords
40 | Library | resources.libraries.python.Trace
41 | Library | resources.libraries.python.IPv4Setup
42 | Library | resources.libraries.python.IPv4Util
43 | Library | resources.libraries.python.IPv6Util
44 | Library | resources.libraries.python.Routing
45 | ...
46 | Test Setup | Clear Packet Trace on All DUTs | ${nodes}
47 | ...
48 | Suite Setup | Set Up Honeycomb Functional Test Suite | ${node}
49 | ...
50 | Suite Teardown | Tear Down Honeycomb Functional Test Suite | ${node}
51 | ...
52 | Documentation | *Honeycomb access control lists test suite for ACL plugin.*
53 | ...
54 | Force Tags | HC_FUNC
55
56 *** Test Cases ***
57 | TC01: ACL MAC filtering through plugin-acl node - bridged
58 | | [Documentation]
59 | | ... | [Top] TG=DUT1=TG.
60 | | ... | [Enc] Eth-IPv4-TCP.
61 | | ... | [Cfg] (Using Honeycomb API) On DUT1 bridge both interfaces to TG\
62 | | ... | and configure L2 MAC ACL on ingress interface.
63 | | ... | [Ver] Send simple TCP packets from one TG interface to the other,\
64 | | ... | using different MACs. Receive all packets except those with\
65 | | ... | MACs in the filtered ranges.
66 | | ...
67 | | [Teardown] | Bridged ACL test teardown
68 | | ...
69 | | Given Setup Interfaces And Bridge Domain For plugin-acl Test
70 | | ... | macip | ${acl_name_macip}
71 | | When Honeycomb Creates ACL Chain Through ACL plugin
72 | | ... | ${dut_node} | ${acl_name_macip} | ${acl_settings} | macip=${True}
73 | | And Honeycomb Assigns plugin-acl Chain To Interface
74 | | ... | ${dut_node} | ${dut_to_tg_if1} | ${acl_name_macip}
75 | | ... | ingress | macip=${True}
76 | | Then Send TCP or UDP packet and verify received packet | ${tg_node}
77 | | ... | ${src_ip} | ${dst_ip}
78 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
79 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
80 | | ... | TCP | ${src_port} | ${dst_port}
81 | | And Run Keyword And Expect Error | TCP/UDP Rx timeout
82 | | ... | Send TCP or UDP packet and verify received packet | ${tg_node}
83 | | ... | ${src_ip} | ${dst_ip}
84 | | ... | ${tg_to_dut_if1} | ${classify_src}
85 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
86 | | ... | TCP | ${src_port} | ${dst_port}
87 | | And Run Keyword And Expect Error | TCP/UDP Rx timeout
88 | | ... | Send TCP or UDP packet and verify received packet | ${tg_node}
89 | | ... | ${src_ip} | ${dst_ip}
90 | | ... | ${tg_to_dut_if1} | ${classify_src2}
91 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
92 | | ... | TCP | ${src_port} | ${dst_port}
93
94 | TC02: ACL IPv4 filtering through plugin-acl node - bridged
95 | | [Documentation]
96 | | ... | [Top] TG=DUT1=TG.
97 | | ... | [Enc] Eth-IPv4-TCP.
98 | | ... | [Cfg] (Using Honeycomb API) On DUT1 bridge both interfaces to TG\
99 | | ... | and configure L3 IPv4 ACL on ingress interface with src/dst IP
100 | | ... | and protocol number.
101 | | ... | [Ver] Send simple TCP and UDP packets from one TG interface\
102 | | ... | to the other, using different IPv4 IPs. Receive all packets except\
103 | | ... | those with IPs in the filtered ranges and UDP protocol payload.
104 | | ...
105 | | [Teardown] | Bridged ACL test teardown
106 | | ...
107 | | Given Setup Interfaces And Bridge Domain For plugin-acl Test
108 | | ... | l3_ip4 | ${acl_name_l3_ip4}
109 | | When Honeycomb Creates ACL Chain Through ACL plugin
110 | | ... | ${dut_node} | ${acl_name_l3_ip4} | ${acl_settings}
111 | | And Honeycomb Assigns plugin-acl Chain To Interface
112 | | ... | ${dut_node} | ${dut_to_tg_if1} | ${acl_name_l3_ip4} | ingress
113 | | Then Send TCP or UDP packet and verify received packet | ${tg_node}
114 | | ... | ${src_ip} | ${dst_ip}
115 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
116 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
117 | | ... | UDP | ${src_port} | ${dst_port}
118 | | And Send TCP or UDP packet and verify received packet | ${tg_node}
119 | | ... | ${classify_src} | ${classify_dst}
120 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
121 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
122 | | ... | TCP | ${src_port} | ${dst_port}
123 | | And Run Keyword And Expect Error | TCP/UDP Rx timeout
124 | | ... | Send TCP or UDP packet and verify received packet | ${tg_node}
125 | | ... | ${classify_src} | ${classify_dst}
126 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
127 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
128 | | ... | UDP | ${src_port} | ${dst_port}
129
130 | TC03: ACL IPv6 filtering through plugin-acl node - bridged
131 | | [Documentation]
132 | | ... | [Top] TG=DUT1=TG.
133 | | ... | [Enc] Eth-IPv6-TCP.
134 | | ... | [Cfg] (Using Honeycomb API) On DUT1 bridge both interfaces to TG\
135 | | ... | and configure L3 IPv6 ACL on ingress interface with src/dst IP
136 | | ... | and protocol number.
137 | | ... | [Ver] Send simple TCP and UDP packets from one TG interface\
138 | | ... | to the other, using different IPv6 IPs. Receive all packets except\
139 | | ... | those with IPs in the filtered ranges and UDP protocol payload.
140 | | ...
141 | | [Teardown] | Bridged ACL test teardown
142 | | ...
143 | | Given Setup interfaces and bridge domain for plugin-acl test
144 | | ... | l3_ip6 | ${acl_name_l3_ip6}
145 | | When Honeycomb Creates ACL Chain Through ACL plugin
146 | | ... | ${dut_node} | ${acl_name_l3_ip6} | ${acl_settings}
147 | | And Honeycomb Assigns plugin-acl Chain To Interface
148 | | ... | ${dut_node} | ${dut_to_tg_if1} | ${acl_name_l3_ip6} | ingress
149 | | Then Send TCP or UDP packet and verify received packet | ${tg_node}
150 | | ... | ${src_ip} | ${dst_ip}
151 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
152 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
153 | | ... | UDP | ${src_port} | ${dst_port}
154 | | And Send TCP or UDP packet and verify received packet | ${tg_node}
155 | | ... | ${classify_src} | ${classify_dst}
156 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
157 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
158 | | ... | TCP | ${src_port} | ${dst_port}
159 | | And Run Keyword And Expect Error | TCP/UDP Rx timeout
160 | | ... | Send TCP or UDP packet and verify received packet | ${tg_node}
161 | | ... | ${classify_src} | ${classify_dst}
162 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
163 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
164 | | ... | UDP | ${src_port} | ${dst_port}
165
166 | TC04: ACL port filtering through plugin-acl node - bridged
167 | | [Documentation]
168 | | ... | [Top] TG=DUT1=TG.
169 | | ... | [Enc] Eth-IPv4-TCP.
170 | | ... | [Cfg] (Using Honeycomb API) On DUT1 bridge both interfaces to TG\
171 | | ... | and and configure L4 port ACL on ingress interface
172 | | ... | with src/dst port ranges.
173 | | ... | [Ver] Send simple TCP and UDP packets from one TG interface\
174 | | ... | to the other, using different ports. Receive all packets except\
175 | | ... | those with ports in the filtered ranges.
176 | | ...
177 | | [Teardown] | Bridged ACL test teardown
178 | | ...
179 | | Given Setup interfaces and bridge domain for plugin-acl test
180 | | ... | L4 | ${acl_name_l4}
181 | | When Honeycomb Creates ACL Chain Through ACL plugin
182 | | ... | ${dut_node} | ${acl_name_l4} | ${acl_settings}
183 | | And Honeycomb Assigns plugin-acl Chain To Interface
184 | | ... | ${dut_node} | ${dut_to_tg_if1} | ${acl_name_l4} | ingress
185 | | Then Send TCP or UDP packet and verify received packet | ${tg_node}
186 | | ... | ${src_ip} | ${dst_ip}
187 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
188 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
189 | | ... | TCP | ${src_port} | ${dst_port}
190 | | And Run Keyword And Expect Error | TCP/UDP Rx timeout
191 | | ... | Send TCP or UDP packet and verify received packet | ${tg_node}
192 | | ... | ${src_ip} | ${dst_ip}
193 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
194 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
195 | | ... | TCP | ${classify_src} | ${classify_dst}
196 | | And Run Keyword And Expect Error | TCP/UDP Rx timeout
197 | | ... | Send TCP or UDP packet and verify received packet | ${tg_node}
198 | | ... | ${src_ip} | ${dst_ip}
199 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
200 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
201 | | ... | TCP | ${classify_src+5} | ${classify_dst+5}
202
203 | TC05: ACL filtering with IPv4 address and TCP port in one rule - bridged
204 | | [Documentation]
205 | | ... | [Top] TG=DUT1=TG.
206 | | ... | [Enc] Eth-IPv4-TCP.
207 | | ... | [Cfg] (Using Honeycomb API) On DUT1 bridge both interfaces to TG\
208 | | ... | and configure a mixed rule with src/dst IP, TCP protocol
209 | | ... | and port ranges.
210 | | ... | [Ver] Send simple TCP packets from one TG interface to the other,\
211 | | ... | using IPs and ports. Receive all packets except those with\
212 | | ... | both IPs and ports in the filtered ranges.
213 | | ...
214 | | [Teardown] | Bridged ACL test teardown
215 | | ...
216 | | Given Setup Interfaces And Bridge Domain For plugin-acl Test
217 | | ... | mixed | ${acl_name_mixed}
218 | | When Honeycomb Creates ACL Chain Through ACL plugin
219 | | ... | ${dut_node} | ${acl_name_mixed} | ${acl_settings}
220 | | And Honeycomb Assigns plugin-acl Chain To Interface
221 | | ... | ${dut_node} | ${dut_to_tg_if1} | ${acl_name_mixed} | ingress
222 | | Then Send TCP or UDP packet and verify received packet | ${tg_node}
223 | | ... | ${src_ip} | ${dst_ip}
224 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
225 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
226 | | ... | TCP | ${src_port} | ${dst_port}
227 | | Then Send TCP or UDP packet and verify received packet | ${tg_node}
228 | | ... | ${classify_src_ip} | ${classify_dst_ip}
229 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
230 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
231 | | ... | TCP | ${src_port} | ${dst_port}
232 | | And Run Keyword And Expect Error | TCP/UDP Rx timeout
233 | | ... | Send TCP or UDP packet and verify received packet | ${tg_node}
234 | | ... | ${classify_src_ip} | ${classify_dst_ip}
235 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
236 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
237 | | ... | TCP | ${classify_src_port} | ${classify_dst_port}
238
239 | TC06: ACL ICMP packet filtering - bridged
240 | | [Documentation]
241 | | ... | [Top] TG=DUT1=TG.
242 | | ... | [Enc] Eth-IPv4-ICMP.
243 | | ... | [Cfg] (Using Honeycomb API) On DUT1 bridge both interfaces to TG\
244 | | ... | and configure a ICMP protocol filtering by ICMP type and code.
245 | | ... | [Ver] Send ICMP packets from one TG interface\
246 | | ... | to the other, using different codes and types. Receive all packets\
247 | | ... | except those with types and codes in the filtered ranges.
248 | | ...
249 | | [Teardown] | Bridged ACL test teardown
250 | | ...
251 | | Given Setup interfaces and bridge domain for plugin-acl test
252 | | ... | icmp | ${acl_name_icmp}
253 | | When Honeycomb Creates ACL Chain Through ACL plugin
254 | | ... | ${dut_node} | ${acl_name_icmp} | ${acl_settings}
255 | | And Honeycomb Assigns plugin-acl Chain To Interface
256 | | ... | ${dut_node} | ${dut_to_tg_if1} | ${acl_name_icmp} | ingress
257 | | Then Send ICMP packet with type and code and verify received packet
258 | | ... | ${tg_node}
259 | | ... | ${src_ip} | ${dst_ip}
260 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
261 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
262 | | ... | ${icmp_type} | ${icmp_code}
263 | | Then Send ICMP packet with type and code and verify received packet
264 | | ... | ${tg_node}
265 | | ... | ${src_ip} | ${dst_ip}
266 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
267 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
268 | | ... | ${classify_type} | ${icmp_code}
269 | | And Run Keyword And Expect Error | ICMP echo Rx timeout
270 | | ... | Send ICMP packet with type and code and verify received packet
271 | | ... | ${tg_node}
272 | | ... | ${src_ip} | ${dst_ip}
273 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
274 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
275 | | ... | ${classify_type} | ${classify_code}
276
277 | TC07: ACL ICMPv6 packet filtering - bridged
278 | | [Documentation]
279 | | ... | [Top] TG=DUT1=TG.
280 | | ... | [Enc] Eth-IPv6-ICMP.
281 | | ... | [Cfg] (Using Honeycomb API) On DUT1 bridge both interfaces to TG\
282 | | ... | and configure a ICMPv6 protocol filtering by ICMPv6 type and code.
283 | | ... | [Ver] Send ICMPv6 packets from one TG interface\
284 | | ... | to the other, using different codes and types. Receive all packets\
285 | | ... | except those with the filtered type and code.
286 | | ...
287 | | [Teardown] | Bridged ACL test teardown
288 | | ...
289 | | Given Setup interfaces and bridge domain for plugin-acl test
290 | | ... | icmpv6 | ${acl_name_icmpv6}
291 | | When Honeycomb Creates ACL Chain Through ACL plugin
292 | | ... | ${dut_node} | ${acl_name_icmpv6} | ${acl_settings}
293 | | And Honeycomb Assigns plugin-acl Chain To Interface
294 | | ... | ${dut_node} | ${dut_to_tg_if1} | ${acl_name_icmpv6} | ingress
295 | | Then Send ICMP packet with type and code and verify received packet
296 | | ... | ${tg_node}
297 | | ... | ${src_ip} | ${dst_ip}
298 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
299 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
300 | | ... | ${icmp_type} | ${icmp_code}
301 | | Then Send ICMP packet with type and code and verify received packet
302 | | ... | ${tg_node}
303 | | ... | ${src_ip} | ${dst_ip}
304 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
305 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
306 | | ... | ${classify_type} | ${icmp_code}
307 | | And Run Keyword And Expect Error | ICMP echo Rx timeout
308 | | ... | Send ICMP packet with type and code and verify received packet
309 | | ... | ${tg_node}
310 | | ... | ${src_ip} | ${dst_ip}
311 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
312 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
313 | | ... | ${classify_type} | ${classify_code}
314
315 | TC08: ACL reflexive IPv4 filtering through plugin-acl node - bridged
316 | | [Documentation]
317 | | ... | [Top] TG=DUT1=TG.
318 | | ... | [Enc] Eth-IPv4-TCP.
319 | | ... | [Cfg] (Using Honeycomb API) On DUT1 bridge both interfaces to TG,\
320 | | ... | configure a "drop all" ACL on ingress and reflexive ACL on egress.
321 | | ... | [Ver] Send a simple TCP packet to VPP interface 1 and do not receive\
322 | | ... | it back. Then send the packet with reversed src/dst IP address\
323 | | ... | to VPP interface 2 and receive it from interface 1(this should create\
324 | | ... | a reflexive "permit" rule) Finally, send the original packet again\
325 | | ... | and receive it from interface 2.
326 | | ...
327 # CSIT-863: running ODL and HC on single node may cause out of memory errors
328 | | [Tags] | HC_REST_ONLY
329 | | ...
330 | | [Teardown] | Bridged ACL test teardown
331 | | ...
332 | | Given Setup Interfaces And Bridge Domain For plugin-acl Test
333 | | ... | reflex | ${acl_name_reflex}
334 | | When Honeycomb Creates ACL Chain Through ACL plugin
335 | | ... | ${dut_node} | ${acl_name_reflex} | ${acl_settings}
336 | | And Honeycomb Assigns plugin-acl Chain To Interface
337 | | ... | ${dut_node} | ${dut_to_tg_if1} | ${acl_name_reflex} | egress
338 | | And Import Variables | resources/test_data/honeycomb/plugin_acl.py
339 | | ... | block_all | block_all
340 | | When Honeycomb Creates ACL Chain Through ACL plugin
341 | | ... | ${dut_node} | block_all | ${acl_settings}
342 | | And Honeycomb Assigns plugin-acl Chain To Interface
343 | | ... | ${dut_node} | ${dut_to_tg_if1} | block_all | ingress
344 | | And Run Keyword And Expect Error | TCP/UDP Rx timeout
345 | | ... | Send TCP or UDP packet and verify received packet | ${tg_node}
346 | | ... | ${classify_src} | ${classify_dst}
347 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
348 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
349 | | ... | TCP | ${src_port} | ${dst_port}
350 | | And Send TCP or UDP packet and verify received packet | ${tg_node}
351 | | ... | ${classify_dst} | ${classify_src}
352 | | ... | ${tg_to_dut_if2} | ${tg_to_dut_if2_mac}
353 | | ... | ${tg_to_dut_if1} | ${dut_to_tg_if2_mac}
354 | | ... | TCP | ${dst_port} | ${src_port}
355 | | And Send TCP or UDP packet and verify received packet | ${tg_node}
356 | | ... | ${classify_src} | ${classify_dst}
357 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
358 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
359 | | ... | TCP | ${src_port} | ${dst_port}
360
361 # Routing section
362 # ===============
363
364 | TC09: ACL IPv4 filtering through plugin-acl node - routed
365 | | [Documentation]
366 | | ... | [Top] TG=DUT1=TG.
367 | | ... | [Enc] Eth-IPv4-TCP.
368 | | ... | [Cfg] (Using Honeycomb API) On DUT1 set IPv4 addresses on both\
369 | | ... | interfaces to TG, add ARP entry and routes, and configure L3 IPv4 ACL\
370 | | ... | on ingress interface with src/dst IP and protocol.
371 | | ... | [Ver] Send simple TCP and UDP packets from one TG interface\
372 | | ... | to the other, using different IPv4 IPs. Receive all packets except\
373 | | ... | those with IPs in the filtered ranges and UDP protocol payload.
374 | | ...
375 # CSIT-863: running ODL and HC on single node may cause out of memory errors
376 | | [Tags] | HC_REST_ONLY
377 | | ...
378 | | [Teardown] | Routed ACL test teardown - ipv4
379 | | ...
380 | | Given Setup Interface IPs And Routes For IPv4 plugin-acl Test
381 | | ... | l3_ip4 | ${acl_name_l3_ip4}
382 | | When Honeycomb Creates ACL Chain Through ACL plugin
383 | | ... | ${dut_node} | ${acl_name_l3_ip4} | ${acl_settings}
384 | | And Honeycomb Assigns plugin-acl Chain To Interface
385 | | ... | ${dut_node} | ${dut_to_tg_if1} | ${acl_name_l3_ip4} | ingress
386 | | Then Send TCP or UDP packet and verify received packet | ${tg_node}
387 | | ... | ${src_ip} | ${dst_ip}
388 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
389 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
390 | | ... | UDP | ${src_port} | ${dst_port}
391 | | And Send TCP or UDP packet and verify received packet | ${tg_node}
392 | | ... | ${classify_src} | ${classify_dst}
393 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
394 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
395 | | ... | TCP | ${src_port} | ${dst_port}
396 | | And Run Keyword And Expect Error | TCP/UDP Rx timeout
397 | | ... | Send TCP or UDP packet and verify received packet | ${tg_node}
398 | | ... | ${classify_src} | ${classify_dst}
399 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
400 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
401 | | ... | UDP | ${src_port} | ${dst_port}
402
403 | TC10: ACL IPv6 filtering through plugin-acl node - routed
404 | | [Documentation]
405 | | ... | [Top] TG=DUT1=TG.
406 | | ... | [Enc] Eth-IPv6-TCP.
407 | | ... | [Cfg] (Using Honeycomb API) On DUT1 set IPv6 addresses on both\
408 | | ... | interfaces to TG, add IP neighbor entry and routes, and configure\
409 | | ... | L3 IPv6 ACL on ingress interface with src/dst IP and next-header.
410 | | ... | [Ver] Send simple TCP and UDP packets from one TG interface\
411 | | ... | to the other, using different IPv6 IPs. Receive all packets except\
412 | | ... | those with IPs in the filtered ranges and UDP protocol payload.
413 | | ...
414 # CSIT-863: running ODL and HC on single node may cause out of memory errors
415 | | [Tags] | HC_REST_ONLY
416 | | ...
417 | | [Teardown] | Routed ACL test teardown - ipv6
418 | | ...
419 | | Given Configure path in 2-node circular topology
420 | | ... | ${nodes['TG']} | ${nodes['DUT1']} | ${nodes['TG']}
421 | | And Import Variables | resources/test_data/honeycomb/plugin_acl.py
422 | | ... | L3_IP6 | ${acl_name_l3_ip6}
423 | | And Honeycomb configures interface state
424 | | ... | ${dut_node} | ${dut_to_tg_if1} | up
425 | | And Honeycomb configures interface state
426 | | ... | ${dut_node} | ${dut_to_tg_if2} | up
427 | | And Honeycomb sets interface IPv6 address | ${dut_node}
428 | | ... | ${dut_to_tg_if1} | ${dut_to_tg_if1_ip} | ${prefix_length}
429 | | And Honeycomb sets interface IPv6 address | ${dut_node}
430 | | ... | ${dut_to_tg_if2} | ${dut_to_tg_if2_ip} | ${prefix_length}
431 | | And VPP RA suppress link layer | ${dut_node} | ${dut_to_tg_if2}
432 | | And Honeycomb adds interface IPv6 neighbor
433 | | ... | ${node} | ${dut_to_tg_if2} | ${gateway} | ${tg_to_dut_if2_mac}
434 | | And VPP Route Add | ${node} | ${dst_net} | ${prefix_length}
435 | | ... | ${gateway} | interface=${dut_to_tg_if2} | use_sw_index=False
436 | | And VPP Route Add | ${node} | ${classify_dst_net} | ${prefix_length}
437 | | ... | ${gateway} | interface=${dut_to_tg_if2} | use_sw_index=False
438 | | When Honeycomb Creates ACL Chain Through ACL plugin
439 | | ... | ${dut_node} | ${acl_name_l3_ip6} | ${acl_settings}
440 | | And Honeycomb Assigns plugin-acl Chain To Interface
441 | | ... | ${dut_node} | ${dut_to_tg_if1} | ${acl_name_l3_ip6} | ingress
442 | | Then Send TCP or UDP packet and verify received packet | ${tg_node}
443 | | ... | ${src_ip} | ${dst_ip}
444 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
445 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
446 | | ... | UDP | ${src_port} | ${dst_port}
447 | | And Send TCP or UDP packet and verify received packet | ${tg_node}
448 | | ... | ${classify_src} | ${classify_dst}
449 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
450 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
451 | | ... | TCP | ${src_port} | ${dst_port}
452 | | And Run Keyword And Expect Error | TCP/UDP Rx timeout
453 | | ... | Send TCP or UDP packet and verify received packet | ${tg_node}
454 | | ... | ${classify_src} | ${classify_dst}
455 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
456 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
457 | | ... | UDP | ${src_port} | ${dst_port}
458
459 | TC11: ACL port filtering through plugin-acl node - routed
460 | | [Documentation]
461 | | ... | [Top] TG=DUT1=TG.
462 | | ... | [Enc] Eth-IPv4-TCP.
463 | | ... | [Cfg] (Using Honeycomb API) On DUT1 set IPv4 addresses on both\
464 | | ... | interfaces to TG, add ARP entry and routes, and configure L4 port ACL\
465 | | ... | on ingress interface with src/dst port ranges.
466 | | ... | [Ver] Send simple TCP and UDP packets from one TG interface\
467 | | ... | to the other, using different ports. Receive all packets except\
468 | | ... | those with ports in the filtered ranges.
469 | | ...
470 | | [Teardown] | Routed ACL test teardown - ipv4
471 | | ...
472 # CSIT-863: running ODL and HC on single node may cause out of memory errors
473 | | [Tags] | HC_REST_ONLY
474 | | ...
475 | | Given Setup Interface IPs And Routes For IPv4 plugin-acl Test
476 | | ... | L4 | ${acl_name_l4}
477 | | When Honeycomb Creates ACL Chain Through ACL plugin
478 | | ... | ${dut_node} | ${acl_name_l4} | ${acl_settings}
479 | | And Honeycomb Assigns plugin-acl Chain To Interface
480 | | ... | ${dut_node} | ${dut_to_tg_if1} | ${acl_name_l4} | ingress
481 | | Then Send TCP or UDP packet and verify received packet | ${tg_node}
482 | | ... | ${src_ip} | ${dst_ip}
483 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
484 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
485 | | ... | TCP | ${src_port} | ${dst_port}
486 | | And Run Keyword And Expect Error | TCP/UDP Rx timeout
487 | | ... | Send TCP or UDP packet and verify received packet | ${tg_node}
488 | | ... | ${src_ip} | ${dst_ip}
489 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
490 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
491 | | ... | TCP | ${classify_src} | ${classify_dst}
492 | | And Run Keyword And Expect Error | TCP/UDP Rx timeout
493 | | ... | Send TCP or UDP packet and verify received packet | ${tg_node}
494 | | ... | ${src_ip} | ${dst_ip}
495 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
496 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
497 | | ... | TCP | ${classify_src+5} | ${classify_dst+5}
498
499 | TC12: ACL filtering with IPv4 address and TCP port in one rule - routed
500 | | [Documentation]
501 | | ... | [Top] TG=DUT1=TG.
502 | | ... | [Enc] Eth-IPv4-TCP.
503 | | ... | [Cfg] (Using Honeycomb API) On DUT1 set IPv4 addresses on both\
504 | | ... | interfaces to TG, add ARP entry and routes and configure a mixed
505 | | ... | rule with src/dst IP, TCP protocol and port ranges.
506 | | ... | [Ver] Send simple TCP packets from one TG interface to the other,\
507 | | ... | using IPs and ports. Receive all packets except those with\
508 | | ... | both IPs and ports in the filtered ranges.
509 | | ...
510 | | [Teardown] | Routed ACL test teardown - ipv4
511 | | ...
512 # CSIT-863: running ODL and HC on single node may cause out of memory errors
513 | | [Tags] | HC_REST_ONLY
514 | | ...
515 | | Given Setup Interface IPs And Routes For IPv4 plugin-acl Test
516 | | ... | mixed | ${acl_name_mixed}
517 | | When Honeycomb Creates ACL Chain Through ACL plugin
518 | | ... | ${dut_node} | ${acl_name_mixed} | ${acl_settings}
519 | | And Honeycomb Assigns plugin-acl Chain To Interface
520 | | ... | ${dut_node} | ${dut_to_tg_if1} | ${acl_name_mixed} | ingress
521 | | Then Send TCP or UDP packet and verify received packet | ${tg_node}
522 | | ... | ${src_ip} | ${dst_ip}
523 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
524 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
525 | | ... | TCP | ${src_port} | ${dst_port}
526 | | Then Send TCP or UDP packet and verify received packet | ${tg_node}
527 | | ... | ${classify_src_ip} | ${classify_dst_ip}
528 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
529 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
530 | | ... | TCP | ${src_port} | ${dst_port}
531 | | And Run Keyword And Expect Error | TCP/UDP Rx timeout
532 | | ... | Send TCP or UDP packet and verify received packet | ${tg_node}
533 | | ... | ${classify_src_ip} | ${classify_dst_ip}
534 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
535 | | ... | ${tg_to_dut_if2} | ${dst_mac}
536 | | ... | TCP | ${classify_src_port} | ${classify_dst_port}
537
538 | TC13: ACL ICMP packet filtering - routed
539 | | [Documentation]
540 | | ... | [Top] TG=DUT1=TG.
541 | | ... | [Enc] Eth-IPv4-TCP.
542 | | ... | [Cfg] (Using Honeycomb API) On DUT1 set IPv4 addresses on both\
543 | | ... | interfaces to TG, add ARP entry and routes, and configure ICMP ACL\
544 | | ... | on ingress interface with ICMP type and code.
545 | | ... | [Ver] Send ICMP packets from one TG interface\
546 | | ... | to the other, using different codes and types. Receive all packets\
547 | | ... | except those with the filtered type and code.
548 | | ...
549 | | [Teardown] | Routed ACL test teardown - ipv4
550 | | ...
551 # CSIT-863: running ODL and HC on single node may cause out of memory errors
552 | | [Tags] | HC_REST_ONLY
553 | | ...
554 | | Given Setup Interface IPs And Routes For IPv4 plugin-acl Test
555 | | ... | icmp | ${acl_name_icmp}
556 | | When Honeycomb Creates ACL Chain Through ACL plugin
557 | | ... | ${dut_node} | ${acl_name_icmp} | ${acl_settings}
558 | | And Honeycomb Assigns plugin-acl Chain To Interface
559 | | ... | ${dut_node} | ${dut_to_tg_if1} | ${acl_name_icmp} | ingress
560 | | Then Send ICMP packet with type and code and verify received packet
561 | | ... | ${tg_node}
562 | | ... | ${src_ip} | ${dst_ip}
563 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
564 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
565 | | ... | ${icmp_type} | ${icmp_code}
566 | | Then Send ICMP packet with type and code and verify received packet
567 | | ... | ${tg_node}
568 | | ... | ${src_ip} | ${dst_ip}
569 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
570 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
571 | | ... | ${classify_type} | ${icmp_code}
572 | | And Run Keyword And Expect Error | ICMP echo Rx timeout
573 | | ... | Send ICMP packet with type and code and verify received packet
574 | | ... | ${tg_node}
575 | | ... | ${src_ip} | ${dst_ip}
576 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
577 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
578 | | ... | ${classify_type} | ${classify_code}
579
580 | TC14: ACL ICMPv6 packet filtering - routed
581 | | [Documentation]
582 | | ... | [Top] TG=DUT1=TG.
583 | | ... | [Enc] Eth-IPv4-TCP.
584 | | ... | [Cfg] (Using Honeycomb API) On DUT1 set IPv6 addresses on both\
585 | | ... | interfaces to TG, add ARP entry and routes, and configure ICMP ACL\
586 | | ... | on ingress interface with ICMPv6 type and code.
587 | | ... | [Ver] Send ICMPv6 packets from one TG interface\
588 | | ... | to the other, using different codes and types. Receive all packets\
589 | | ... | except those with the filtered type and code.
590 | | ...
591 # CSIT-863: running ODL and HC on single node may cause out of memory errors
592 | | [Tags] | HC_REST_ONLY
593 | | ...
594 | | [Teardown] | Routed ACL test teardown - ipv6
595 | | ...
596 | | Given Configure path in 2-node circular topology
597 | | ... | ${nodes['TG']} | ${nodes['DUT1']} | ${nodes['TG']}
598 | | And Import Variables | resources/test_data/honeycomb/plugin_acl.py
599 | | ... | icmpv6 | ${acl_name_icmpv6}
600 | | And Honeycomb configures interface state
601 | | ... | ${dut_node} | ${dut_to_tg_if1} | up
602 | | And Honeycomb configures interface state
603 | | ... | ${dut_node} | ${dut_to_tg_if2} | up
604 | | And Honeycomb sets interface IPv6 address | ${dut_node}
605 | | ... | ${dut_to_tg_if1} | ${dut_to_tg_if1_ip} | ${prefix_length}
606 | | And Honeycomb sets interface IPv6 address | ${dut_node}
607 | | ... | ${dut_to_tg_if2} | ${dut_to_tg_if2_ip} | ${prefix_length}
608 | | And Honeycomb adds interface IPv6 neighbor
609 | | ... | ${node} | ${dut_to_tg_if2} | ${gateway} | ${tg_to_dut_if2_mac}
610 | | And VPP RA suppress link layer | ${dut_node} | ${dut_to_tg_if2}
611 | | And VPP Route Add | ${node} | ${dst_net} | ${prefix_length}
612 | | ... | ${gateway} | interface=${dut_to_tg_if2} | use_sw_index=False
613 | | And VPP Route Add | ${node} | ${classify_dst_net} | ${prefix_length}
614 | | ... | ${gateway} | interface=${dut_to_tg_if2} | use_sw_index=False
615 | | When Honeycomb Creates ACL Chain Through ACL plugin
616 | | ... | ${dut_node} | ${acl_name_icmpv6} | ${acl_settings}
617 | | And Honeycomb Assigns plugin-acl Chain To Interface
618 | | ... | ${dut_node} | ${dut_to_tg_if1} | ${acl_name_icmpv6} | ingress
619 | | Then Send ICMP packet with type and code and verify received packet
620 | | ... | ${tg_node}
621 | | ... | ${src_ip} | ${dst_ip}
622 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
623 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
624 | | ... | ${icmp_type} | ${icmp_code}
625 | | Then Send ICMP packet with type and code and verify received packet
626 | | ... | ${tg_node}
627 | | ... | ${src_ip} | ${dst_ip}
628 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
629 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
630 | | ... | ${classify_type} | ${icmp_code}
631 | | And Run Keyword And Expect Error | ICMP echo Rx timeout
632 | | ... | Send ICMP packet with type and code and verify received packet
633 | | ... | ${tg_node}
634 | | ... | ${src_ip} | ${dst_ip}
635 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
636 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
637 | | ... | ${classify_type} | ${classify_code}
638
639 | TC15: ACL reflexive IPv4 filtering through plugin-acl node - routed
640 | | [Documentation]
641 | | ... | [Top] TG=DUT1=TG.
642 | | ... | [Enc] Eth-IPv4-TCP.
643 | | ... | [Cfg] (Using Honeycomb API) On DUT1 set IPv4 addresses on both\
644 | | ... | interfaces to TG, add ARP entries and routes,\
645 | | ... | configure a "drop all" ACL on ingress and reflexive ACL on egress.
646 | | ... | [Ver] Send a simple TCP packet to VPP interface 1 and do not receive\
647 | | ... | it back. Then send the packet with reversed src/dst IP address\
648 | | ... | to VPP interface 2 and receive it from interface 1(this should create\
649 | | ... | a reflexive "permit" rule) Finally, send the original packet again\
650 | | ... | and receive it from interface 2.
651 | | ...
652 # CSIT-863: running ODL and HC on single node may cause out of memory errors
653 | | [Tags] | HC_REST_ONLY
654 | | ...
655 | | [Teardown] | Routed ACL test teardown - ipv4
656 | | ...
657 | | Given Setup Interface IPs And Routes For IPv4 plugin-acl Test
658 | | ... | reflex | ${acl_name_reflex}
659 | | And Add ARP on DUT
660 | | ... | ${node} | ${dut_to_tg_if1} | ${gateway2} | ${tg_to_dut_if1_mac}
661 | | And VPP Route Add
662 | | ... | ${node} | ${src_net} | ${prefix_length} | ${gateway2}
663 | | ... | interface=${dut_to_tg_if1} | use_sw_index=False
664 | | And VPP Route Add
665 | | ... | ${node} | ${classify_src_net} | ${prefix_length} | ${gateway2}
666 | | ... | interface=${dut_to_tg_if1} | use_sw_index=False
667 | | When Honeycomb Creates ACL Chain Through ACL plugin
668 | | ... | ${dut_node} | ${acl_name_reflex} | ${acl_settings}
669 | | And Honeycomb Assigns plugin-acl Chain To Interface
670 | | ... | ${dut_node} | ${dut_to_tg_if1} | ${acl_name_reflex} | egress
671 | | And Import Variables | resources/test_data/honeycomb/plugin_acl.py
672 | | ... | block_all | block_all
673 | | When Honeycomb Creates ACL Chain Through ACL plugin
674 | | ... | ${dut_node} | block_all | ${acl_settings}
675 | | And Honeycomb Assigns plugin-acl Chain To Interface
676 | | ... | ${dut_node} | ${dut_to_tg_if1} | block_all | ingress
677 | | And Run Keyword And Expect Error | TCP/UDP Rx timeout
678 | | ... | Send TCP or UDP packet and verify received packet | ${tg_node}
679 | | ... | ${classify_src} | ${classify_dst}
680 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
681 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
682 | | ... | TCP | ${src_port} | ${dst_port}
683 | | And Send TCP or UDP packet and verify received packet | ${tg_node}
684 | | ... | ${classify_dst} | ${classify_src}
685 | | ... | ${tg_to_dut_if2} | ${tg_to_dut_if2_mac}
686 | | ... | ${tg_to_dut_if1} | ${dut_to_tg_if2_mac}
687 | | ... | TCP | ${dst_port} | ${src_port}
688 | | And Send TCP or UDP packet and verify received packet | ${tg_node}
689 | | ... | ${classify_src} | ${classify_dst}
690 | | ... | ${tg_to_dut_if1} | ${tg_to_dut_if1_mac}
691 | | ... | ${tg_to_dut_if2} | ${dut_to_tg_if1_mac}
692 | | ... | TCP | ${src_port} | ${dst_port}
693
694 *** Keywords ***
695 | Setup interface IPs and routes for IPv4 plugin-acl test
696 | | [Documentation] | Import test variables, set interfaces up,
697 | | ... | configure IPv4 addresses, add neighbor entry and routes.
698 | | ...
699 | | [Arguments] | ${test_data_id} | ${acl_name}
700 | | ...
701 | | Configure path in 2-node circular topology
702 | | ... | ${nodes['TG']} | ${nodes['DUT1']} | ${nodes['TG']}
703 | | Import Variables | resources/test_data/honeycomb/plugin_acl.py
704 | | ... | ${test_data_id} | ${acl_name}
705 | | Honeycomb configures interface state | ${dut_node} | ${dut_to_tg_if1} | up
706 | | Honeycomb configures interface state | ${dut_node} | ${dut_to_tg_if2} | up
707 | | Honeycomb sets interface IPv4 address with prefix | ${dut_node}
708 | | ... | ${dut_to_tg_if1} | ${dut_to_tg_if1_ip} | ${prefix_length}
709 | | Honeycomb sets interface IPv4 address with prefix | ${dut_node}
710 | | ... | ${dut_to_tg_if2} | ${dut_to_tg_if2_ip} | ${prefix_length}
711 | | And Honeycomb adds interface IPv4 neighbor
712 | | ... | ${node} | ${dut_to_tg_if2} | ${gateway} | ${tg_to_dut_if2_mac}
713 | | VPP Route Add
714 | | ... | ${node} | ${dst_net} | ${prefix_length} | ${gateway}
715 | | ... | interface=${dut_to_tg_if2} | use_sw_index=False
716 | | VPP Route Add
717 | | ... | ${node} | ${classify_dst_net} | ${prefix_length} | ${gateway}
718 | | ... | interface=${dut_to_tg_if2} | use_sw_index=False
719
720 | Setup interfaces and bridge domain for plugin-acl test
721 | | [Documentation] | Import test variables, set interfaces up and bridge them.
722 | | ...
723 | | [Arguments] | ${test_data_id} | ${acl_name}
724 | | ...
725 | | Configure path in 2-node circular topology
726 | | ... | ${nodes['TG']} | ${nodes['DUT1']} | ${nodes['TG']}
727 | | Import Variables | resources/test_data/honeycomb/plugin_acl.py
728 | | ... | ${test_data_id} | ${acl_name}
729 | | Honeycomb configures interface state | ${dut_node} | ${dut_to_tg_if1} | up
730 | | Honeycomb configures interface state | ${dut_node} | ${dut_to_tg_if2} | up
731 | | Honeycomb Creates first L2 Bridge Domain
732 | | ... | ${dut_node} | ${bd_name} | ${bd_settings}
733 | | Honeycomb Adds Interfaces To Bridge Domain
734 | | ... | ${dut_node} | ${dut_to_tg_if1} | ${dut_to_tg_if2}
735 | | ... | ${bd_name} | ${bd_if_settings}
736
737 | Bridged ACL test teardown
738 | | [Documentation] | Log packet trace and ACL settings,
739 | | ... | then clean up bridge domains.
740 | | ...
741 | | Show Packet Trace on All DUTs | ${nodes}
742 | | Read plugin-ACL configuration from VAT | ${node}
743 | | Clear plugin-ACL configuration | ${node} | ${dut_to_tg_if1}
744 | | Honeycomb Removes All Bridge Domains
745 | | ... | ${node} | ${dut_to_tg_if1} | ${dut_to_tg_if2}
746
747 | Routed ACL test teardown - ipv4
748 | | [Documentation] | Log packet trace and ACL settings,
749 | | ... | then clean up IPv4 addresses and neighbors.
750 | | ...
751 | | Show Packet Trace on All DUTs | ${nodes}
752 | | Read plugin-ACL configuration from VAT | ${node}
753 | | Clear plugin-ACL configuration | ${node} | ${dut_to_tg_if1}
754 | | Honeycomb removes interface IPv4 addresses | ${node} | ${dut_to_tg_if1}
755 | | Honeycomb clears all interface IPv4 neighbors | ${node} | ${dut_to_tg_if1}
756
757 | Routed ACL test teardown - ipv6
758 | | [Documentation] | Log packet trace and ACL settings,
759 | | ... | then clean up IPv6 addresses and neighbors.
760 | | ...
761 | | Show Packet Trace on All DUTs | ${nodes}
762 | | Clear plugin-ACL configuration | ${node} | ${dut_to_tg_if1}
763 | | Read plugin-ACL configuration from VAT | ${node}
764 | | Honeycomb removes interface IPv6 addresses | ${node} | ${dut_to_tg_if1}
765 | | Honeycomb clears all interface IPv6 neighbors | ${node} | ${dut_to_tg_if1}