두 개의 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>
내가 무엇을 놓치고 있습니까?