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