본문 바로가기

IT/네트워크

[Cisco switch] 시스코 스위치 Trunk 안될 때

반응형

시스코 스위치에서 trunk 안될 때

스위치에서 Trunk 설정을 하려했을때 아래와 같은 문구가 뜬다면 이 글을 잘 찾아오셨습니다.

Switch(config-if)#switchport mode trunk 
Command rejected: An interface whose trunk encapsulation is "Auto" can not be configured to "trunk" mode.

Command rejected: An interface whose trunk encapsulation is "Auto" can not be configured to "trunk" mode

 

어떻게 해결해야 할까요?

 

 

해결 방법은 아래와 같이 캡슐화 해주는 것 입니다.

Switch(config-if)#switchport trunk encapsulation dot1q 
Switch(config-if)#switchport mode trunk

그럼 정상적으로 trunk 설정을 하실 수 있게 됩니다


Config

Switch(config)#interface gigabitEthernet 1/0/24
Switch(config-if)#switchport mode trunk 
Command rejected: An interface whose trunk encapsulation is "Auto" can not be configured to "trunk" mode.
Switch(config-if)#
Switch(config-if)#
Switch(config-if)#
Switch(config-if)#switchport trunk encapsulation ?
  dot1q      Interface uses only 802.1q trunking encapsulation when trunking
  isl        Interface uses only ISL trunking encapsulation when trunking
  negotiate  Device will negotiate trunking encapsulation with peer on
             interface

Switch(config-if)#switchport trunk encapsulation dot1q 
Switch(config-if)#switchport mode trunk
반응형