cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
2757
Views
0
Helpful
14
Replies

VOIP phone VLAN

Andy White
Level 3
Level 3

Hello,

We have bought 2 VOIP phones to test with, one is by AudioCodes (420HD) the other is by Polycom (CX600).

If I plug the AudioCodes and the phone goes onto VLAN 62 and the PC that connects off it is on VLAN 41, perfect.  However the Polycom stays in VLAN 1 and only goes into VLAN 41, any ideas what is wrong with my config, maybe the phone though....

interface GigabitEthernet2/0/7
switchport access vlan 41
switchport mode access
switchport voice vlan 62
srr-queue bandwidth share 1 30 35 5
priority-queue out
mls qos trust dscp
spanning-tree portfast
spanning-tree bpduguard enable
service-policy input SOFTPHONE-PC
end

Thanks

1 Accepted Solution

Accepted Solutions

hmmm see this maybe try lldp instead of cdp might pick up voice

http://community.polycom.com/t5/VoIP/Polycom-CX600-and-cisco-voice-vlan/td-p/7198

View solution in original post

14 Replies 14

Mark Malone
VIP Alumni
VIP Alumni

Hey Andy Cisco port is configured correct and recommended for voip phone theres nothing you need to change there. If you plugged Cisco phone into that config it should work fine , more likely the phone. As you seen the other vendor works fine.

hmmm see this maybe try lldp instead of cdp might pick up voice

http://community.polycom.com/t5/VoIP/Polycom-CX600-and-cisco-voice-vlan/td-p/7198

Thanks Mark,

I will try and see how I can configure the port for lldp instead.

lldp is same as cdp just the open source version of it that's becoming more popular these days , that's all you should need below for Cisco port or lldp run in global config

CORE65A(config)#int g1/4/46

CORE65A(config-if)#lldp ?
  med-tlv-select  Selection of LLDP MED TLVs to send
  receive         Enable LLDP reception on interface
  transmit        Enable LLDP transmission on interface
CORE65A(config-if)#lldp receive
CORE65A(config-if)#lldp transmit

I wonder if it is a global setting, I've enabled on the port, but:

LAN-2960G-01#sh lldp neighbors
% LLDP is not enabled

Disclaimer

The Author of this posting offers the information contained within this posting without consideration and with the reader's understanding that there's no implied or expressed suitability or fitness for any purpose. Information provided is for informational purposes only and should not be construed as rendering professional advice of any kind. Usage of this posting's information is solely at reader's own risk.

Liability Disclaimer

In no event shall Author be liable for any damages wha2tsoever (including, without limitation, damages for loss of use, data or profit) arising out of the use or inability to use the posting's information even if Author has been advised of the possibility of such damage.

Posting

Older IOSs and/or platforms don't support LLDP.  What's the platform and IOS version?

Model: WS-C2960X-48FPD-L         

IOS: 15.2(2)E3            

Version: C2960X-UNIVERSALK9-M

does it take the command globally ? would have thought the switch/ios is new enough for lldp

Will try, will there be any sort of blip or can do during business hours as I have a few 100 users in this stack?

shouldn't be its only discovery protocol same as enabling cdp should not effect prod traffic but it doesn't specifically say in the doc so if you don't want to take the chance just wait if its not critical to get it up and running

Just enabled it on one of my test switches ran constant ping to couple devices connected it didnt drop any pings

I will set tonight I think and try in the morning again Mark.

Looks like a global setting is required first, just checking if the stack of switches will blip during this

To disable LLDP, use the no lldp run global configuration command. To disable LLDP on an interface, use the no lldp transmit and the no lldp receive interface configuration commands.

This example shows how to globally enable LLDP.

Switch# configure terminal
Switch(config)# lldp run
Switch(config)# end

This example shows how to enable LLDP on an interface.

Switch# configure terminal
Switch(config)# interface gigabitethernet0/1
Switch(config-if)# lldp transmit
Switch(config-if)# lldp receive
Switch(config-if)# end

Mark that did the trick!

Thanks

ah great good to know :)