cisco-vlan 配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cisco-vlan 配置相关的知识,希望对你有一定的参考价值。
交换机接口类型:
- access : 接入模式,PC通过交换机上网通过这种方式
- trunk : 中继模式,交换机间连接通过这种方式
交换机vlan创建方式方式:
- 数据库配置模式
- 全局配置模式
数据库配置模式:
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 配置的主要内容,如果未能解决你的问题,请参考以下文章