음성 VLAN 정보


9

시스코 스위치의 인터페이스에 할당 된 액세스 VLAN을 표시하는 기능을 알고 있습니다. 인터페이스에 할당 된 음성 VLAN을 구체적으로 표시하는 것은 어떻습니까?

#show run int fa1/47
interface FastEthernet1/47
 description Data&Voice
 switchport access vlan 1
 switchport mode access
 switchport voice vlan 2
end

#show int status module 1 | in Fa1/47
Port      Name             Status      Vlan    Duplex  Speed  Type
Fa1/47  Data&Voice  notconnect   1          full      100      10/100BaseTX

show interface status 명령은 음성 VLAN이 아닌 액세스 VLAN 만 표시합니다. 너무 많은 reg-ex를 사용하지 않거나 실행중인 구성을 탐색하지 않고 스위치 포트에 할당 된 음성 VLAN을 구체적으로 표시하는 명령에 대한 제안이 있으십니까?

답변:


9

첫째,주의 사항 : 왜 당신이 다음을 강조했는지 확실하지 않습니다 (강조 광산).

너무 많은 reg-ex를 사용하지 않거나 실행중인 구성을 탐색하지 않고 스위치 포트에 할당 된 음성 VLAN을 구체적으로 표시하는 명령에 대한 제안 ?

그러나 Cisco 장치에서 가장 긴 reg-ex 명령도 명령으로 단축 할 수 있습니다 alias. 실제로 자주 사용하는 별칭 중 하나는 원하는 정확한 정보를 표시하는 것입니다. 아래에 포함시킬 것입니다.


지금, 당신이 찾고있는 정보를 얻는 방법은 여러 가지가 있으며, 당신이 정확히 알고있는 것과 찾고자하는 것에 달려 있습니다.

특정 VLAN에있는 음성 VLAN이 무엇인지 알고 어떤 포트가 할당되어 있는지 찾으려면 다음 명령을 실행하면됩니다.

show vlan id <voice-vlan-number>

그러면 해당 VLAN을 사용하는 모든 포트 목록이 제공됩니다.

ATR4506-A1A-1#show vlan id 210 

VLAN Name                             Status    Ports
---- -------------------------------- --------- -------------------------------
210  ATRIUM-IP-PHONES                 active    Gi2/2, Gi2/3, Gi2/4, Gi2/5, Gi2/6,

관심있는 포트를 알고 있거나 모든 포트를 보려면 해당 포트에서 사용중인 음성 VLAN을 확인하려는 경우 다음과 같은 것을 찾고 있습니다.

show interfaces switchport | include Name|Voice

이 명령은 svv(음성 vlan을 표시 하기 위해) 별칭이 다음 과 같습니다.

conf t
alias exec svv show interfaces switchport | include Name|Voice

이 정보를 수집하기 위해 가장 자주 사용하는 명령이며 출력을 제공합니다.

ATR4506-A1A-1#svv                                      
Name: Te1/1
Voice VLAN: none
Name: Te1/2
Voice VLAN: none
Name: Gi2/2
Voice VLAN: 210 (ATRIUM-IP-PHONES)
Name: Gi2/3
Voice VLAN: 210 (ATRIUM-IP-PHONES)
Name: Gi2/4
Voice VLAN: 210 (ATRIUM-IP-PHONES)
Name: Gi2/5
Voice VLAN: 210 (ATRIUM-IP-PHONES)

또 다른 대안은 show run정확한 인터페이스 이름과 스위치 포트 정보가 필요한 경우 출력 을 필터링하는 것입니다 (예 : 스크립팅 목적으로).

show running-config | include interface GigabitEthernet|switchport voice vlan

이것은 다음을 제공합니다.

ATR4506-A1A-1#show running-config | include interface GigabitEthernet|switchport voice vlan 
interface GigabitEthernet1/3
interface GigabitEthernet1/4
interface GigabitEthernet1/5
interface GigabitEthernet1/6
interface GigabitEthernet2/1
interface GigabitEthernet2/2
 switchport voice vlan 210
interface GigabitEthernet2/3
 switchport voice vlan 210

6

show interfaces <interface> switchport또는 show interfaces <interface> switchport | i Voice당신이 찾고있는 것을 얻을 것입니다.

Switch# show interfaces gigabitethernet0/1 switchport
Name: Gi0/1
Switchport: Enabled
Administrative Mode: dynamic auto
Operational Mode: static access
Administrative Trunking Encapsulation: negotiate
Operational Trunking Encapsulation: native
Negotiation of Trunking: On
Access Mode VLAN: 1 (default)
Trunking Native Mode VLAN: 1 (default)
Voice VLAN: none
Administrative private-vlan host-association:10 (VLAN0010) 502 (VLAN0502)
Administrative private-vlan mapping: none 
Administrative private-vlan trunk native VLAN: none
Administrative private-vlan trunk encapsulation: dot1q
Administrative private-vlan trunk normal VLANs: none
Administrative private-vlan trunk private VLANs: none
Operational private-vlan: none
Trunking VLANs Enabled: ALL
Pruning VLANs Enabled: 2-1001
Capture Mode Disabled
Capture VLANs Allowed: ALL

또는

Switch# show interfaces gigabitethernet0/1 switchport | i Voice
Voice VLAN: none
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.