CSIT-158: Tap interface tests
[csit.git] / tests / suites / honeycomb / 060_sub_interface.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/default.robot
16 | Resource | resources/libraries/robot/honeycomb/sub_interface.robot
17 | Resource | resources/libraries/robot/honeycomb/bridge_domain.robot
18 | Resource | resources/libraries/robot/honeycomb/interfaces.robot
19 | Variables | resources/test_data/honeycomb/sub_interfaces.py
20 | Suite Teardown | Honeycomb removes all bridge domains | ${node}
21 | Force Tags | honeycomb_sanity
22 | Documentation | *Honeycomb sub-interface management test suite.*
23 | ...
24 | ...           | This test suite tests if it is posible to create, modify and \
25 | ...           | delete a sub-interface.
26
27 *** Variables ***
28 # Test interface 1 and its sub-interface parameters:
29 | ${super_if}= | ${node['interfaces']['port1']['name']}
30 | ${sub_if_id}= | ${sub_if_1_settings['identifier']}
31 | ${sub_if_name}= | ${super_if}.${sub_if_id}
32
33 *** Test Cases ***
34 | Honycomb creates sub-interface
35 | | [Documentation] | Check if Honeycomb creates a sub-interface.
36 | | ...
37 | | Given interface state is | ${node} | ${super_if} | down
38 | | And sub-interface configuration from Honeycomb should be empty
39 | | ... | ${node} | ${super_if} | ${sub_if_id}
40 | | And interface configuration from VAT should be empty
41 | | ... | ${node} | ${sub_if_name}
42 | | When Honeycomb creates sub-interface | ${node} | ${super_if}
43 | | ... | ${sub_if_1_match} | ${sub_if_1_tags} | ${sub_if_1_settings}
44 | | Then run keyword and continue on failure
45 | | ... | Sub-interface configuration from Honeycomb should be
46 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${sub_if_1_oper}
47 | | And run keyword and continue on failure
48 | | ... | Sub-interface configuration from VAT should be
49 | | ... | ${node} | ${sub_if_name} | ${sub_if_1_oper}
50 | | And sub-interface indices from Honeycomb and VAT should correspond
51 | | ... | ${node} | ${super_if} | ${sub_if_id}
52
53 | Honeycomb sets interface and sub-interface up
54 | | [Documentation] | Honeycomb changes the state of interface up and then \
55 | | ... | changes the state of its sub-interface up, in this order.
56 | | ...
57 | | Given interface state from Honeycomb should be
58 | | ... | ${node} | ${super_if} | down
59 | | And interface state from VAT should be
60 | | ... | ${node} | ${super_if} | down
61 | | When Honeycomb sets interface state
62 | | ... | ${node} | ${super_if} | up
63 | | Then interface state from Honeycomb should be
64 | | ... | ${node} | ${super_if} | up
65 | | And interface state from VAT should be
66 | | ... | ${node} | ${super_if} | up
67 | | Given run keyword and continue on failure
68 | | ... | Sub-interface state from Honeycomb should be
69 | | ... | ${node} | ${super_if} | ${sub_if_id} | down | down
70 | | And run keyword and continue on failure
71 | | ... | Sub-interface state from VAT should be
72 | | ... | ${node} | ${sub_if_name} | down | down
73 | | When Honeycomb sets the sub-interface up
74 | | ... | ${node} | ${super_if} | ${sub_if_id}
75 | | Then run keyword and continue on failure
76 | | ... | Sub-interface state from Honeycomb should be
77 | | ... | ${node} | ${super_if} | ${sub_if_id} | up | up
78 | | And sub-interface state from VAT should be
79 | | ... | ${node} | ${sub_if_name} | up | up
80
81 | Honeycomb sets sub-interface down while its super-interface is up
82 | | [Documentation] | Honeycomb sets the sub-interface down while its \
83 | | ... | super-interface is up. It must be possible.
84 | | ...
85 | | [Teardown] | Set super and sub interfaces up
86 | | ... | ${node} | ${super_if} | ${sub_if_id}
87 | | ...
88 | | Given sub-interface state from Honeycomb should be
89 | | ... | ${node} | ${super_if} | ${sub_if_id} | up | up
90 | | And sub-interface state from VAT should be
91 | | ... | ${node} | ${sub_if_name} | up | up
92 | | And interface state from Honeycomb should be
93 | | ... | ${node} | ${super_if} | up
94 | | And interface state from VAT should be
95 | | ... | ${node} | ${super_if} | up
96 | | When Honeycomb sets the sub-interface down
97 | | ... | ${node} | ${super_if} | ${sub_if_id}
98 | | Then sub-interface state from Honeycomb should be
99 | | ... | ${node} | ${super_if} | ${sub_if_id} | down | down
100 | | And sub-interface state from VAT should be
101 | | ... | ${node} | ${sub_if_name} | down | down
102 | | And interface state from Honeycomb should be
103 | | ... | ${node} | ${super_if} | up
104 | | And interface state from VAT should be
105 | | ... | ${node} | ${super_if} | up
106
107 | Honeycomb sets interface and sub-interface down
108 | | [Documentation] | Honeycomb changes the state of interface down and then \
109 | | ... | changes the state of its sub-interface down, in this order.
110 | | ...
111 | | [Teardown] | Set super and sub interfaces down
112 | | ... | ${node} | ${super_if} | ${sub_if_id}
113 | | ...
114 | | Given interface state from Honeycomb should be
115 | | ... | ${node} | ${super_if} | up
116 | | And interface state from VAT should be
117 | | ... | ${node} | ${super_if} | up
118 | | When Honeycomb sets interface state
119 | | ... | ${node} | ${super_if} | down
120 | | Then interface state from Honeycomb should be
121 | | ... | ${node} | ${super_if} | down
122 | | And interface state from VAT should be
123 | | ... | ${node} | ${super_if} | down
124 | | Given sub-interface state from Honeycomb should be
125 | | ... | ${node} | ${super_if} | ${sub_if_id} | up | down
126 | | And sub-interface state from VAT should be
127 | | ... | ${node} | ${sub_if_name} | up | down
128 | | When Honeycomb sets the sub-interface down
129 | | ... | ${node} | ${super_if} | ${sub_if_id}
130 | | Then sub-interface state from Honeycomb should be
131 | | ... | ${node} | ${super_if} | ${sub_if_id} | down | down
132 | | And sub-interface state from VAT should be
133 | | ... | ${node} | ${sub_if_name} | down | down
134
135 | Honeycomb fails to set sub-interface up while its super-interface is down
136 | | [Documentation] | Honeycomb tries to set the sub-interface up while its \
137 | | ... | super-interface is down. It must not be possible.
138 | | ...
139 | | Given interface state from Honeycomb should be
140 | | ... | ${node} | ${super_if} | down
141 | | And interface state from VAT should be
142 | | ... | ${node} | ${super_if} | down
143 | | And sub-interface state from Honeycomb should be
144 | | ... | ${node} | ${super_if} | ${sub_if_id} | down | down
145 | | And sub-interface state from VAT should be
146 | | ... | ${node} | ${sub_if_name} | down | down
147 | | When Honeycomb fails to set sub-interface up
148 | | ... | ${node} | ${super_if} | ${sub_if_id}
149 | | Then interface state from Honeycomb should be
150 | | ... | ${node} | ${super_if} | down
151 | | And interface state from VAT should be
152 | | ... | ${node} | ${super_if} | down
153 | | And sub-interface state from Honeycomb should be
154 | | ... | ${node} | ${super_if} | ${sub_if_id} | down | down
155 | | And sub-interface state from VAT should be
156 | | ... | ${node} | ${sub_if_name} | down | down
157
158 | Honeycomb fails to delete sub-interface
159 | | [Documentation] | Check if Honeycomb can delete an existing sub-interface.
160 | | ...
161 | | [Setup] | Set super and sub interfaces down
162 | | ... | ${node} | ${super_if} | ${sub_if_id}
163 | | ...
164 | | Given sub-interface configuration from Honeycomb should be
165 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${sub_if_1_oper}
166 | | And sub-interface configuration from VAT should be
167 | | ... | ${node} | ${sub_if_name} | ${sub_if_1_oper}
168 | | When Honeycomb fails to remove all sub-interfaces
169 | | ... | ${node} | ${super_if}
170 | | Then sub-interface configuration from Honeycomb should be
171 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${sub_if_1_oper}
172 | | And sub-interface configuration from VAT should be
173 | | ... | ${node} | ${sub_if_name} | ${sub_if_1_oper}
174
175 | Honeycomb adds sub-interface to new bridge domain
176 | | [Documentation] | Check if Honeycomb adds a sub-interface to bridge domain.
177 | | ...
178 | | [Setup] | Set super and sub interfaces down
179 | | ... | ${node} | ${super_if} | ${sub_if_id}
180 | | ...
181 | | Given sub-interface configuration from Honeycomb should be
182 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${sub_if_1_oper}
183 | | And sub-interface configuration from VAT should be
184 | | ... | ${node} | ${sub_if_name} | ${sub_if_1_oper}
185 | | When Honeycomb creates L2 bridge domain
186 | | ... | ${node} | ${bd_name} | ${bd_settings}
187 | | Then bridge domain configuration from Honeycomb should be
188 | | ... | ${node} | ${bd_name} | ${bd_settings}
189 | | When Honeycomb adds sub-interface to bridge domain
190 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${sub_bd_settings}
191 | | Then sub-interface bridge domain configuration from Honeycomb should be
192 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${sub_bd_settings}
193 | | And sub-interface bridge domain configuration from VAT should be
194 | | ... | ${node} | ${sub_if_name} | ${sub_bd_settings}
195 | | And sub-interface configuration from VAT should be
196 | | ... | ${node} | ${sub_if_name} | ${sub_if_1_oper}
197
198 | Honeycomb enables tag-rewrite pop 1
199 | | [Documentation] | Check if Honeycomb enables tag-rewrite and sets its \
200 | | ... | parameters correctly. Case: pop 1.
201 | | ...
202 | | [Teardown] | Honeycomb disables tag rewrite
203 | | ... | ${node} | ${super_if} | ${sub_if_id}
204 | | ...
205 | | Given rewrite tag from Honeycomb should be empty
206 | | ... | ${node} | ${super_if} | ${sub_if_id}
207 | | When Honeycomb configures tag rewrite
208 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${tag_rewrite_pop_1}
209 | | Then rewrite tag from Honeycomb should be
210 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${tag_rewrite_pop_1_oper}
211 | | And rewrite tag from VAT should be
212 | | ... | ${node} | ${sub_if_name} | ${tag_rewrite_pop_1_VAT}
213
214 | Honeycomb enables tag-rewrite push
215 | | [Documentation] | Check if Honeycomb enables tag-rewrite and sets its \
216 | | ... | parameters correctly. Case: push.
217 | | ...
218 | | [Teardown] | Honeycomb disables tag rewrite
219 | | ... | ${node} | ${super_if} | ${sub_if_id}
220 | | ...
221 | | Given rewrite tag from Honeycomb should be empty
222 | | ... | ${node} | ${super_if} | ${sub_if_id}
223 | | When Honeycomb configures tag rewrite
224 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${tag_rewrite_push}
225 | | Then rewrite tag from Honeycomb should be
226 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${tag_rewrite_push_oper}
227 | | And rewrite tag from VAT should be
228 | | ... | ${node} | ${sub_if_name} | ${tag_rewrite_push_VAT}
229
230 | Honeycomb enables tag-rewrite translate 1-2
231 | | [Documentation] | Check if Honeycomb enables tag-rewrite and sets its \
232 | | ... | parameters correctly. Case: translate 1-2.
233 | | ...
234 | | [Teardown] | Honeycomb disables tag rewrite
235 | | ... | ${node} | ${super_if} | ${sub_if_id}
236 | | ...
237 | | Given rewrite tag from Honeycomb should be empty
238 | | ... | ${node} | ${super_if} | ${sub_if_id}
239 | | When Honeycomb configures tag rewrite
240 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${tag_rewrite_translate_1_2}
241 | | Then rewrite tag from Honeycomb should be
242 | | ... | ${node} | ${super_if} | ${sub_if_id}
243 | | ... | ${tag_rewrite_translate_1_2_oper}
244 | | And rewrite tag from VAT should be
245 | | ... | ${node} | ${sub_if_name} | ${tag_rewrite_translate_1_2_VAT}
246
247 | Honeycomb disables tag-rewrite
248 | | [Documentation] | Check if Honeycomb disables the tag-rewrite.
249 | | ...
250 | | [Teardown] | Honeycomb disables tag rewrite
251 | | ... | ${node} | ${super_if} | ${sub_if_id}
252 | | ...
253 | | When Honeycomb configures tag rewrite
254 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${tag_rewrite_pop_1}
255 | | Then rewrite tag from Honeycomb should be
256 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${tag_rewrite_pop_1_oper}
257 | | When Honeycomb configures tag rewrite
258 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${tag_rewrite_disabled}
259 | | Then rewrite tag from Honeycomb should be empty
260 | | ... | ${node} | ${super_if} | ${sub_if_id}
261 | | And rewrite tag from VAT should be
262 | | ... | ${node} | ${sub_if_name} | ${tag_rewrite_disabled_VAT}
263
264 | Honeycomb enables tag-rewrite pop 1 again
265 | | [Documentation] | Check if Honeycomb can enable tag-rewrite again, once it \
266 | | ... | was disabled by Honeycomb.
267 | | ...
268 | | [Teardown] | Honeycomb disables tag rewrite
269 | | ... | ${node} | ${super_if} | ${sub_if_id}
270 | | ...
271 | | Given rewrite tag from Honeycomb should be empty
272 | | ... | ${node} | ${super_if} | ${sub_if_id}
273 | | When Honeycomb configures tag rewrite
274 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${tag_rewrite_pop_1}
275 | | Then rewrite tag from Honeycomb should be
276 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${tag_rewrite_pop_1_oper}
277 | | And rewrite tag from VAT should be
278 | | ... | ${node} | ${sub_if_name} | ${tag_rewrite_pop_1_VAT}
279
280 | Honeycomb modifies the tag-rewrite
281 | | [Documentation] | Honeycomb sets the tag-rewrite:
282 | | ... | 1. pop 1, then
283 | | ... | 2. push, then
284 | | ... | 3. translate 1 - 2
285 | | ... | Then Honeycomb disables the tag-rewrite.
286 | | ...
287 | | [Teardown] | Honeycomb disables tag rewrite
288 | | ... | ${node} | ${super_if} | ${sub_if_id}
289 | | ...
290 | | Given rewrite tag from Honeycomb should be empty
291 | | ... | ${node} | ${super_if} | ${sub_if_id}
292 | | When Honeycomb configures tag rewrite
293 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${tag_rewrite_pop_1}
294 | | Then rewrite tag from Honeycomb should be
295 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${tag_rewrite_pop_1_oper}
296 | | And rewrite tag from VAT should be
297 | | ... | ${node} | ${sub_if_name} | ${tag_rewrite_pop_1_VAT}
298 | | When Honeycomb configures tag rewrite
299 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${tag_rewrite_push}
300 | | Then rewrite tag from Honeycomb should be
301 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${tag_rewrite_push_oper}
302 | | And rewrite tag from VAT should be
303 | | ... | ${node} | ${sub_if_name} | ${tag_rewrite_push_VAT}
304 | | When Honeycomb configures tag rewrite
305 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${tag_rewrite_translate_1_2}
306 | | Then rewrite tag from Honeycomb should be
307 | | ... | ${node} | ${super_if} | ${sub_if_id}
308 | | ... | ${tag_rewrite_translate_1_2_oper}
309 | | And rewrite tag from VAT should be
310 | | ... | ${node} | ${sub_if_name} | ${tag_rewrite_translate_1_2_VAT}
311 | | When Honeycomb configures tag rewrite
312 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${tag_rewrite_disabled}
313 | | Then rewrite tag from Honeycomb should be empty
314 | | ... | ${node} | ${super_if} | ${sub_if_id}
315 | | And rewrite tag from VAT should be
316 | | ... | ${node} | ${sub_if_name} | ${tag_rewrite_disabled_VAT}
317
318 | Honeycomb fails to set wrong vlan-type in tag-rewrite
319 | | [Documentation] | Check that Honeycomb does not accept wrong values of \
320 | | ... | vlan-type in tag-rewrite.
321 | | ...
322 | | Given rewrite tag from Honeycomb should be empty
323 | | ... | ${node} | ${super_if} | ${sub_if_id}
324 | | When Honeycomb fails to set wrong rewrite tag
325 | | ... | ${node} | ${super_if} | ${sub_if_id}
326 | | ... | ${tag_rewrite_translate_1_2_wrong}
327 | | Then rewrite tag from Honeycomb should be empty
328 | | ... | ${node} | ${super_if} | ${sub_if_id}
329 | | And rewrite tag from VAT should be
330 | | ... | ${node} | ${sub_if_name} | ${tag_rewrite_disabled_VAT}
331
332 | Honeycomb configures sub-interface ipv4 address
333 | | [Documentation] | Check if Honeycomb can configure an ipv4 address on the\
334 | | ... | sub-interface.
335 | | ...
336 | | Given sub-interface ipv4 address from Honeycomb should be empty
337 | | ... | ${node} | ${super_if} | ${sub_if_id}
338 | | And sub-interface ipv4 address from VAT should be empty
339 | | ... | ${node} | ${sub_if_name}
340 | | When Honeycomb sets sub-interface ipv4 address
341 | | ... | ${node} | ${super_if} | ${sub_if_id}
342 | | ... | ${ipv4['address']} | ${ipv4['prefix-length']}
343 | | Then sub-interface ipv4 address from Honeycomb should be
344 | | ... | ${node} | ${super_if} | ${sub_if_id}
345 | | ... | ${ipv4['address']} | ${ipv4['prefix-length']}
346 | | And sub-interface ipv4 address from VAT should be
347 | | ... | ${node} | ${sub_if_name}
348 | | ... | ${ipv4['address']} | ${ipv4['prefix-length']}
349
350 | Honeycomb removes sub-interface ipv4 address
351 | | [Documentation] | Check if Honeycomb can remove configured ipv4 addresses\
352 | | ... | from the sub-interface.
353 | | ...
354 | | Given sub-interface ipv4 address from Honeycomb should be
355 | | ... | ${node} | ${super_if} | ${sub_if_id}
356 | | ... | ${ipv4['address']} | ${ipv4['prefix-length']}
357 | | And sub-interface ipv4 address from VAT should be
358 | | ... | ${node} | ${sub_if_name}
359 | | ... | ${ipv4['address']} | ${ipv4['prefix-length']}
360 | | When Honeycomb removes all sub-interface ipv4 addresses
361 | | ... | ${node} | ${super_if} | ${sub_if_id}
362 | | Then sub-interface ipv4 address from Honeycomb should be empty
363 | | ... | ${node} | ${super_if} | ${sub_if_id}
364 | | And sub-interface ipv4 address from VAT should be empty
365 | | ... | ${node} | ${sub_if_name}
366
367 | Honeycomb modifies existing sub-interface ipv4 address
368 | | [Documentation] | Check if Honeycomb can modify an ipv4 address already\
369 | | ... | configured on the sub-interface.
370 | | [Teardown] | Honeycomb removes all sub-interface ipv4 addresses
371 | | ... | ${node} | ${super_if} | ${sub_if_id}
372 | | Given sub-interface ipv4 address from Honeycomb should be empty
373 | | ... | ${node} | ${super_if} | ${sub_if_id}
374 | | And sub-interface ipv4 address from VAT should be empty
375 | | ... | ${node} | ${sub_if_name}
376 | | When Honeycomb sets sub-interface ipv4 address
377 | | ... | ${node} | ${super_if} | ${sub_if_id}
378 | | ... | ${ipv4['address']} | ${ipv4['prefix-length']}
379 | | And Honeycomb sets sub-interface ipv4 address
380 | | ... | ${node} | ${super_if} | ${sub_if_id}
381 | | ... | ${ipv4_2['address']} | ${ipv4_2['prefix-length']}
382 | | Then sub-interface ipv4 address from Honeycomb should be
383 | | ... | ${node} | ${super_if} | ${sub_if_id}
384 | | ... | ${ipv4_2['address']} | ${ipv4_2['prefix-length']}
385 | | And sub-interface ipv4 address from VAT should be
386 | | ... | ${node} | ${sub_if_name}
387 | | ... | ${ipv4_2['address']} | ${ipv4_2['prefix-length']}
388
389 *** Keywords ***
390 | Set super and sub interfaces up
391 | | [Documentation] | Honeycomb sets super-interface and sub-interface up, in \
392 | | ... | this order.
393 | | ...
394 | | ... | *Arguments:*
395 | | ... | - node - Information about a DUT node. Type: dictionary
396 | | ... | - super_interface - Super interface. Type: string
397 | | ... | - identifier - Sub-interface identifier. Type: integer or string
398 | | ...
399 | | ... | *Example:*
400 | | ... | \| Set super and sub interfaces up\
401 | | ... | \| ${nodes['DUT1']} \| GigabitEthernet0/8/0 \| 1 \|
402 | | ...
403 | | [Arguments] | ${node} | ${super_interface} | ${identifier}
404 | | ...
405 | | Honeycomb sets interface state
406 | | ... | ${node} | ${super_interface} | up
407 | | Honeycomb sets the sub-interface up
408 | | ... | ${node} | ${super_interface} | ${identifier}
409
410 | Set super and sub interfaces down
411 | | [Documentation] | Honeycomb sets super-interface and sub-interface down, in\
412 | | ... | this order.
413 | | ...
414 | | ... | *Arguments:*
415 | | ... | - node - Information about a DUT node. Type: dictionary
416 | | ... | - super_interface - Super interface. Type: string
417 | | ... | - identifier - Sub-interface identifier. Type: integer or string
418 | | ...
419 | | ... | *Example:*
420 | | ... | \| Set super and sub interfaces down\
421 | | ... | \| ${nodes['DUT1']} \| GigabitEthernet0/8/0 \| 1 \|
422 | | ...
423 | | [Arguments] | ${node} | ${super_interface} | ${identifier}
424 | | ...
425 | | Honeycomb sets interface state
426 | | ... | ${node} | ${super_interface} | down
427 | | Honeycomb sets the sub-interface down
428 | | ... | ${node} | ${super_interface} | ${identifier}
429
430 | Honeycomb disables tag rewrite
431 | | [Documentation] |
432 | | ...
433 | | ... | *Arguments:*
434 | | ... | - node - Information about a DUT node. Type: dictionary
435 | | ... | - super_if - Super-interface. Type: string
436 | | ... | - identifier - Sub-interface ID. Type: integer or string
437 | | ...
438 | | ... | *Example:*
439 | | ... | \| Honeycomb disables tag rewrite \
440 | | ... | \| ${nodes['DUT1']} \| GigabitEthernet0/8/0 \| 1 \|
441 | | ...
442 | | [Arguments] | ${node} | ${super_if} | ${sub_if_id}
443 | | ...
444 | | Honeycomb configures tag rewrite
445 | | ... | ${node} | ${super_if} | ${sub_if_id} | ${tag_rewrite_disabled}