码迷,mamicode.com
首页 > 系统相关 > 详细

cisco-vlan 配置

时间:2017-11-06 11:06:02      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:模式   命令   使用   log   enc   全局   中继   名称   配置   

交换机接口类型:

  1. access  :  接入模式,PC通过交换机上网通过这种方式
  2. trunk   :  中继模式,交换机间连接通过这种方式

 

交换机vlan创建方式方式:

  1. 数据库配置模式
  2. 全局配置模式

数据库配置模式:

switch#vlan database
switch(vlan)#vlan 20 name vlan20(VLAN名称可选)
switch(vlan)#exit

全局配置模式:

switch#config t
switch(config)#vlan 20
switch(config-vlan)#name vlan20 (vlan名称可选)
switch(config-vlan)#exit

交换机vlan删除方式:

  在vlan数据库配置模式下配置的时候通过 switch(vlan)#no vlan 20(具体vlan的id) 可以删除需要被删除的vlan;

  也可以在全局配置模式下直接删除vlan,比如 switch(config)#no vlan 20 


 把交换机接口加入vlan:

  • 逐个接口加入vlan
  • 同时配置多个接口加入vlan

逐个加入vlan:

#将接口加入vlan,access模式:
switch#config t
switch(config)#interface f0/1
switch(config-if)#switchport mode access
switch(config-if)#switchport access vlan 20
switch(config-if)#exit

#使用中继模式在交换机之间连接:
switch(config)# interface f0/1(与另一个交换机相连接的接口)
switch(config-if)#switchport mode trunk

多个接口同时配置:

switch(config)#int range f0/1 - 5  
switch(config-if)#switchport mode access
switch(config-if)#switchport access vlan 20
switch(config-if)#exit 

把接口从vlan中移除:


其他vlan命令:

  • show vlan brief
  • switch(config)#switchport trunk encapsulation{isl|dotiq|negotiate} (与不同品牌的交换机连接需要配置封装类型)
  • switch(config-if)#switchport trunk allowed vlan remove vlan-id(中继模式时候不传输莫个vlan的数据)

 

cisco-vlan 配置

标签:模式   命令   使用   log   enc   全局   中继   名称   配置   

原文地址:http://www.cnblogs.com/luohaonan/p/7791586.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!