We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bafebf9 commit 5ae30d2Copy full SHA for 5ae30d2
show/main.py
@@ -1472,8 +1472,12 @@ def brief(verbose):
1472
ports_value = str(key[1])
1473
ports_tagging = vlan_ports_data[key]['tagging_mode']
1474
if ports_key in vlan_ports_dict:
1475
+ if get_interface_mode() == "alias":
1476
+ ports_value = iface_alias_converter.name_to_alias(ports_value)
1477
vlan_ports_dict[ports_key].append(ports_value)
1478
else:
1479
1480
1481
vlan_ports_dict[ports_key] = [ports_value]
1482
if ports_key in vlan_tagging_dict:
1483
vlan_tagging_dict[ports_key].append(ports_tagging)
0 commit comments