我正在向两个 Cisco Catalyst 交换机(3750 的)之间的现有中继端口添加一个新的 VLAN。在添加新 VLAN 的过程中,似乎我已经删除了中继上现有的允许 VLAN...这怎么可能?
现有中继端口配置:
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
我使用以下语法也允许 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
但是现在,我在 g1/0/49 上运行的配置缺少 VLAN 10 和 20!
<SNIP>
switchport trunk allowed vlan 30
</SNIP>
我错过了什么?