快速配置CISCO语音VLAN

 

 

1.在三层上新建VLAN
 

 

  
  
  
  
  1. en  
  2. vlan database        #进vlan配置  
  3. vlan 125 name awaya125  #创建vlan  
  4. exit            
  5. conf t  
  6. int vlan125                             #进单个vlan配置  
  7. ip add 192.168.125.1 255.255.255.0   #配置VLAN网关  
  8. no shut  
  9. show ip int b          #查看端口状态    ?  
  10. wr  


 
2.在二层交换机配置voicevlan

  
  
  
  
  1. en  
  2. conf t  
  3. lldp run                                        #起lldp服务  
  4. int ra f0/1-48                               #进对应端口  
  5. sw mode acc voice vlan 125    #划入语音VLAN  
  6. no shut  
  7. wr  


-----------------------------------------
3.在二层交换机上配置端口绑定

  
  
  
  
  1. #conf t  
  2. <config>#int range f0/1-24  
  3. <config>#switchport port-security mac-address sticky  
  4. <config>#switchport port-security max 2  
  5. <config>#switchport port-security violation protect  
  6. <config>#switchport port-security  
  7. <config>#end#wr如果需要清空端口学习到的MAC信息,需要进入这个端口,no掉port-security的信息,然后再重新开启:  
  8. <config>#int range f0/1-24  
  9. <config>#no switchport port-security mac-address sticky  
  10. <config>#no switchport port-security max 2  
  11. <config>#no switchport port-security violation protect  
  12. <config>#no switchport port-security  
  13. <config>#switchport port-security mac-address sticky  
  14. <config>#switchport port-security max 2  
  15. <config>#switchport port-security violation protect  
  16. <config>#switchport port-security  
  17. <config>#shutdown  
  18. <config>#no shutdown  
  19. <config>#end#wr 

本文出自 “飞仔��--分享即是快乐...” 博客,转载请与作者联系!

你可能感兴趣的:(Cisco,快速配置,语音vlan)