cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
741
Views
1
Helpful
5
Replies

Catalyst 1000 switch

TechBhole241
Level 1
Level 1

Hello guys,

                 Can anyone tell me that Catalyst 1000-24P-4G-L model switch is capable to carry voice traffic or not because I have tried every way and related command to allow voice traffic on switch like as: 

switchport mode access

switchport voice vlan vlanid

Mohan Singh
5 Replies 5

Torbjørn
VIP
VIP

It is capable of running voice VLAN. Does the VLAN exist on the switch? Which voice device are you testing with(does it run CDP/LLDP)? Can you see the mac address of the phone in the voice VLAN?

Happy to help! Please mark as helpful/solution if applicable.
Get in touch: https://torbjorn.dev

Blue_Bird
VIP
VIP

Hello mohansingh2015knp,

The Cisco Catalyst 1000 series switch supports Voice vlans...with ios version release 15.2(7)E1.

Please check your switch ios version(show version)....if your switch is have lower ios version....it may not support voice vlans.

Reference: https://www.cisco.com/c/en/us/td/docs/switches/lan/catalyst1000/software/releases/15_2_7_e/configuration_guides/vlan/b_1527e_vlan_c1000_cg/configuring_voice_vlan.html

Best regards
******* If This Helps, Please Rate *******

If switch doesn't support an access port voice VLAN it might be possible to make a similar port using a trunk port.

NB: it's what we did decades ago before there were access port voice VLANs.

thank you for your reply and please tell me one thing that if my catalyst
1000 series switch ios version is (c1000-universalk9-mz.152-7.E9.bin) then
voice vlan traffic will flow or not.

Mohan Singh

1) even without a "voice vlan" the switch can process voice traffic in a "normal" vlan
2) other contributors already declared the switch supports the "voice vlan" command
3) so what is the nature of your question ?
    is it just an inquiry prior to planning for a voice vlan, ?
    or are you implementing a voice vlan, but it does not work ?

4) the commands you mention must be given in interface configuration mode,
    and the voice-vlan id is a number you must choose and assign, it is not the string 
switch> enable
switch#   configure terminal
switch(config)#vlan 100               !  in this example 100 is the voice vlan id , and the vlan is created
switch(config-vlan)# name voice  ! it is not necessary to give it a name, but it can be helpful
switch(config-vlan) exit
switch(config)# interface  Gi1/0/1
switch(config-if)# switchport mode access
switch(config-if)# switchport voice vlan 100  ! here the same vlan-id as the vlan created above
switch(config-if)#end
switch# write memory               ! or just "wr"  or "copy running-configuration startup-configuration"