We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c02921e commit 380104cCopy full SHA for 380104c
netsim/devices/iosvl2.py
@@ -41,13 +41,7 @@ def vlan_1_tagged(node: Box, topology: Box) -> None:
41
def lag_remove_virtual(node: Box, topology: Box) -> None:
42
for intf in node.interfaces:
43
if intf.get('type') == 'lag' and 'virtual_interface' in intf:
44
- del intf['virtual_interface']
45
- report_quirk(
46
- f'Cisco IOS layer-2 image: PortChannel interface will be treated as a physical interface.',
47
- more_data=f'Removing virtual_interface tag from (node {node.name} {intf.ifname})',
48
- node=node,
49
- quirk='lag_remove_virtual',
50
- category=Warning)
+ del intf['virtual_interface']
51
52
class IOSvL2(_IOS):
53
@classmethod
0 commit comments