Below are some excerpts from one of the switches in question. Using the NAV "Configure Ports" button from the device page to get the entire list of ports, I set the name of g1/0/30 to "NAV Test" and the VLAN to 501. The same result is seen while using the "Configure Port" button from the specific port page.
"Before" shows that g1/0/30 is not in VLAN 501 and has no description using "show vlan id", "sh run int" and "sh int desc".
"After" shows that "sh vlan id" has g1/0/30 in vlan 501 and that "sh int desc" has the correct description while a "show run int" does not reflect these changes.
#sh ver
Cisco IOS Software, IOS-XE Software, Catalyst L3 Switch Software (CAT3K_CAA-UNIVERSALK9-M), Version 03.06.01E RELEASE SOFTWARE (fc3)
Before:
#sh vlan id 501
...
VLAN Name Status Ports
---- -------------------------------- --------- -------------------------------
501 wla-adi1 active Po1
...
#sh run int g1/0/30
...
interface GigabitEthernet1/0/30
switchport mode access
power inline never
spanning-tree portfast
service-policy input Policy-3850-Input
end
#sh int description | inc 30
Gi1/0/30 down down
...
After:
#sh vlan id 501
VLAN Name Status Ports
---- -------------------------------- --------- -------------------------------
501 wla-adi1 active Gi1/0/30, Po1
#sh run int g1/0/30
...
interface GigabitEthernet1/0/30
switchport mode access
power inline never
spanning-tree portfast
service-policy input Policy-3850-Input
end
#sh int description | inc 30
Gi1/0/30 admin down down NAV Test
...