Estou adicionando uma nova VLAN a uma porta de tronco existente entre dois comutadores Cisco Catalyst (3750). No processo de adição da nova VLAN, parece que removi as VLANs permitidas existentes no tronco ... Como isso é possível?
Configuração da porta de tronco existente:
SW-LAB-1#show run int g1/0/49
Building configuration...
Current configuration : 255 bytes
!
interface GigabitEthernet1/0/49
description SW-LAB-2 G1/0/48
switchport trunk encapsulation dot1q
switchport trunk native vlan 10
switchport trunk allowed vlan 10,20
switchport mode trunk
switchport nonegotiate
ip dhcp snooping trust
end
Usei a seguinte sintaxe para também permitir a VLAN 30:
SW-LAB-1#conf t
Enter configuration commands, one per line. End with CNTL/Z.
SW-LAB-1(config)#interface g1/0/49
SW-LAB-1(config-if)#switchport trunk allow vlan 30
No entanto, agora, minha configuração em execução no g1 / 0/49 está ausente nas VLANs 10 e 20!
<SNIP>
switchport trunk allowed vlan 30
</SNIP>
o que estou perdendo?