RG-S21交换机802.1q vlan 的配置方法.doc_第1页
RG-S21交换机802.1q vlan 的配置方法.doc_第2页
RG-S21交换机802.1q vlan 的配置方法.doc_第3页
RG-S21交换机802.1q vlan 的配置方法.doc_第4页
RG-S21交换机802.1q vlan 的配置方法.doc_第5页
已阅读5页,还剩3页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

21交换机802.1q vlan 的配置方法.锐捷网络远程技术支持中心技术热线:4008-111-000配置VLAN创建、修改一个VLAN步骤如下:song#configure terminal!进入全局模式Enter configuration commands, one per line. End with CNTL/Z.song(config)#vlan 2! 输入一个vlan id,如果输入的是一个新的vlan id,则交换机会创建一个vlan,如果输入的是已经存在的vlan id,则修改相应的vlan。在此是创建一个vlan号为2的。并进入vlan 2修改2006-03-14 10:13:53 5-CONFIG:Configured from outbandsong(config-vlan)#name vlan2name!设置vlan 2的名字为vlan2name2006-03-14 10:14:09 5-CONFIG:Configured from outbandsong(config-vlan)#end!退回到特权模式2006-03-14 10:14:14 5-CONFIG:Configured from outbandsong#show vlan id 2!查看vlan 2的信息VLAN Name Status Ports- - - -2 vlan2name activesong#wr!保存当前所有设置Building configuration.OK如果您想把vlan的名字改回缺省名字,如下配置song# configure terminalEnter configuration commands, one per line. End with CNTL/Z.song(config)#vlan 22006-03-14 10:22:56 5-CONFIG:Configured from outbandsong(config-vlan)#no name!将vlan 2的名字改为缺省名字2006-03-14 10:22:59 5-CONFIG:Configured from outbandsong(config-vlan)#end2006-03-14 10:23:09 5-CONFIG:Configured from outbandsong#show vlan id 2VLAN Name Status Ports- - - -2 VLAN0002 active删除一个VLAN步骤如下:song# configure terminal!进入全局模式Enter configuration commands, one per line. End with CNTL/Z.song(config)# no vlan 2!输入一个vlan id。删除它2006-03-14 10:27:34 5-CONFIG:Configured from outbandsong(config)# end!退回到特权模式2006-03-14 10:27:36 5-CONFIG:Configured from outbandsong# show vlanVLAN Name Status Ports- - - -1 default active Fa0/1 ,Fa0/2 ,Fa0/3 ,Fa0/4 Fa0/5 ,Fa0/6 ,Fa0/7 ,Fa0/8 Fa0/9 ,Fa0/10,Fa0/11,Fa0/12 Fa0/13,Fa0/14,Fa0/15,Fa0/16 Fa0/17,Fa0/18,Fa0/19,Fa0/20 Fa0/21,Fa0/22,Fa0/23,Fa0/24!检查一下是否删除vlan 2song#wr!保存Building configuration.OK向VLAN分配Access口步骤如下:song# configure terminal!进入全局配置模式Enter configuration commands, one per line. End with CNTL/Z.2006-03-14 10:57:54 5-CONFIG:Configured from outbandsong(config)# interface fastEthernet 0/3!输入想要加入vlan的interface id2006-03-14 10:57:57 5-CONFIG:Configured from outbandsong(config-if)# switchport mode access!定义该接口的VLAN成员类型2006-03-14 10:58:18 5-CONFIG:Configured from outbandsong(config-if)#switchport access vlan 3!将这个端口分配到vlan 3中2006-03-14 10:58:32 5-CONFIG:Configured from outband%Warning : Access VLAN does not exist. Creating vlan 3song(config-if)#end!退回到特权模式2006-03-14 10:58:37 5-CONFIG:Configured from outbandsong# show interfaces fastEthernet 0/3 switchportInterface Switchport Mode Access Native Protected VLAN lists- - - - - - -Fa0/3 Enabled Access 3 1 Disabled All!检查接口的完整信息song# write!保存Building configuration.OKsong#配置VLAN TrunksTrunk口基本配置步骤如下:song# configure terminalEnter configuration commands, one per line. End with CNTL/Z.song(config)# interface fastEthernet 0/4!输入你所要设置成trunk的接口2006-03-14 11:09:53 5-CONFIG:Configured from outbandsong(config-if)#switchport mode trunk!定义该接口为二层trunk口2006-03-14 11:10:22 5-CONFIG:Configured from outbandsong(config-if)#switchport trunk native vlan 3!为这个接口指定一个vlan号2006-03-14 11:10:38 5-CONFIG:Configured from outbandsong(config-if)#end2006-03-14 11:10:40 5-CONFIG:Configured from outbandsong#show interfaces fastEthernet 0/4 switchportInterface Switchport Mode Access Native Protected VLAN lists- - - - - - -Fa0/4 Enabled Trunk 1 3 Disabled All!检查接口完整信息song#show interfaces fastEthernet 0/4 trunkInterface Mode Native VLAN VLAN lists- - - -Fa0/4 On 3 All!显示这个接口的trunk设置song#wrBuilding configuration.OK定义Trunk口的许可VLAN列表注:一个trunk口缺省可以传输本交换机支持的所有vlan(1-4094)的流量。但是,您也可以通过设置Trunk口的许可VLAN列表来限制某些VLAN的流量不能通过这个Trunk口如把vlan 3从端口0/15中移出的例子步骤如下:song# configure terminalEnter configuration commands, one per line. End with CNTL/Z.song(config)# interface fastEthernet 0/15!输入想要修改许可VLAN列表的Trunk口的interface id2006-03-14 11:24:15 5-CONFIG:Configured from outband!定义该接口的类型为二层Trunk口song(config-if)# switchport trunk allowed vlan remove 2!把vlan2从端口15中移出2006-03-14 11:24:31 5-CONFIG:Configured from outbandsong(config-if)#end2006-03-14 11:24:35 5-CONFIG:Configured from outbandsong# show interfaces fastEthernet 0/15 switchportInterface Switchport Mode Access Native Protected VLAN lists- - - - - - -Fa0/15 Enabled Access 1 1 Disabled 1,3-4094配置Native VLAN步骤如下:song# configure terminalEnter configuration commands, one per line. End with CNTL/Z.song(config)# interface fastEthernet 0/6!输入需要配置成native vlan的trunk口的interface id2006-03-14 11:32:59 5-CONFIG:Configured from outbandsong(config-if)# switchport trunk native vlan 5!配置native VLAN2006-03-14 11:33:23 5-CONFIG:Configured from outbandsong(config-if)# end2006-03-14 11:33:26 5-CONFIG:Configured from outbandsong# show interfaces fastEthernet 0/6 switchport!验证配置Interface Switchport Mode Access Native Protected

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论