Informações de VLAN de voz


9

Estou ciente da capacidade de mostrar a VLAN de acesso atribuída a uma interface em um switch Cisco. Que tal mostrar especificamente a VLAN de voz que uma interface está atribuída?

#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

O comando show interface status mostra apenas a VLAN de acesso, não a VLAN de voz. Alguma sugestão de comandos para mostrar especificamente a VLAN de voz atribuída a uma porta do switch sem usar muito reg-ex ou procurar na configuração em execução?

Respostas:


9

Primeiro, uma ressalva: não sei por que você especificou o seguinte (ênfase minha),

Alguma sugestão de comandos para mostrar especificamente a vlan de voz atribuída a uma porta de switch sem usar muito reg-ex ou procurar na configuração em execução ?

No entanto, mesmo o comando reg-ex mais longo em um dispositivo Cisco pode ser reduzido pelo aliascomando. Na verdade, um dos meus aliases usados ​​com frequência é mostrar as informações exatas que você está procurando. Que eu incluirei abaixo.


Agora, existem várias maneiras de obter as informações que você procura, e isso depende do que exatamente você sabe e do que está tentando encontrar.

Se você sabe quais são as VLANs de voz nesse comutador específico e procura descobrir a quais portas elas estão atribuídas, basta emitir o comando:

show vlan id <voice-vlan-number>

Isso forneceria uma lista de todas as portas que utilizam essa 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,

Se você conhece a porta de interesse (ou deseja ver todas as portas) e deseja apenas ver qual VLAN de voz está em uso nessa porta, está procurando algo como o seguinte:

show interfaces switchport | include Name|Voice

Eu tenho esse comando com alias svv(para show voice vlan) assim:

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

Este é o comando que eu mais frequentemente uso para reunir essas informações e fornece a saída:

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)

Outra alternativa seria filtrar a show runsaída se você precisar dos nomes exatos da interface e das informações do switchport (para fins de script, por exemplo):

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

Isto dá:

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> switchportou show interfaces <interface> switchport | i Voicevocê o que procura.

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

ou

Switch# show interfaces gigabitethernet0/1 switchport | i Voice
Voice VLAN: none
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.