Link to home
Start Free TrialLog in
Avatar of Maphew
MaphewFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Cisco Catalyst 2960S POE LLDP VLAN ip phones

Please can anyone help me ensure that I can create 3 vlans but use a voice vlan for yea link T28 IP phones.  I have been told I have to use lldp for the phones to be used inline with pcs.

But I can't get the switches to recognise them or the pbx   .......

Thanks for your time
Avatar of RKnebel512
RKnebel512
Flag of United States of America image

lldp should be enabled by default.  But you can use the command "show lldp" to make sure it isn't disabled.  If you are using Cisco phones, the switch will use cdp instead, but that should be enabled as well already.

Are you plugging the phone into the switch, and the PC into the phone?

If not, then just make sure that the interface that the phone is plugged into is on the voice vlan with the interface command "switchport vlan 10" substituting "10" for your voice vlan number.

If you are plugging the pc into the phone and the phone into the switch, then you will need to configure the interface with both vlans using the following commands:
"switchport vlan 5" substituting "5" for the vlan number that your PC is on.
"switchport voice vlan 10" substituting "10" for the vlan number your phone is on.

You will need both commands if both devices are in the same port on the switch.
Avatar of Maphew

ASKER

Thank you kindly for responding.

I am plugging the phone into switch and PC into phone... Therefore one floor port.

I have tried the voice vlan but still will not recognise. Is there anything I'm missing on set up of a voice vlan over same range of ports as data vlan . Ie do I have to specify anything for the voice vlan and Lldp tlv's.....

Thank you for your time
Actually I think I missed a keyword in there.  You need to put the word "access" in the first command to tell the switch that there will be both types of traffic.  When you don't, it will assume there is only one type of traffic and not allow the second command.

"switchport access vlan 5" substituting "5" for the vlan number that your PC is on.
"switchport voice vlan 10" substituting "10" for the vlan number your phone is on.

First you will need to take off the other command by typing:
"no switchport vlan 5" substituting "5" for the vlan number that your PC is on.

Make sure you are typing these in at the interface level, so the prompt where you type in should say "(config-if)#"
Avatar of Maphew

ASKER

Thank you again, do I need to encapsulate using dot1q for both vlans ?
ASKER CERTIFIED SOLUTION
Avatar of RKnebel512
RKnebel512
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Maphew

ASKER

thank you for your interest and support RKnebel512