锐捷网络实验手册范本
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
实验一交换机的基本配置
1.基本配置:
网络拓扑
RG-Switch
实验环境
将RG-Switch的其中一以太网口连至PC的以太网口
实验配置
1.配置交换机主机名
Red-Giant>enable(注:从用户模式进入特权模式)
Red-Giant#configure terminal(注:从特权模式进入全局配置模式)
Red-Giant(config)#hostname SW1(注:将主机名配置为“SW1”)
SW1(config)#
2.配置交换机远程登陆密码
SW1(config)#enable secret level 1 0 star (注:将交换机远程登陆密码配置为“star”)
3.配置交换机特权模式口令
SW1(config)#enable secret level 15 0 star(注:将交换机特权模式口令配置为“star”)
4.为交换机分配管理IP地址
SW1(config)#interface vlan 1
SW1(config-if)#ip address 10.1.1.1 255.255.255.0
SW1(config-if)#no shutdown
注:为VLAN 1的管理接口分配IP地址(表示通过VLAN 1来管理交换机),设置交换机的IP地址为10.1.1.1,对应的子网掩码为255.255.255.0
5.显示交换机MAC地址表的记录
SW1#show mac-address-table
注:在PC上开一命令行窗口,运行命令:c:\>ping 10.1.1.1
能ping通则在交换机上执行show mac-address-table 可查看到PC 的MAC地址注:PC的MAC地址可以在命令行下输入: ipconfig /all查看.
6.修改交换机MAC地址的老化时间
SW1(config)#mac-address-table aging-time 注:将交换机MAC地址老化时间设置为10秒SW1(config)#end
注:从交换机全局配置模式返回至特权模式
SW1#show mac-address-table
注:显示交换机MAC地址表的记录
测试结果
从PC上TELNET到交换机.
验证命令
show int f0/1
show ip int
show run
ping
telnet
实验二 VLAN 配置
1.VLAN/802.1Q -本交换机隔离
网络拓扑
实验项目
VLAN/802.1Q -本交换机隔离测试
实验环境
PC1连接在交换机的0/5 口;PC2连接在交换机的0/15 口
实验配置
S2126G#configure terminal
注:进入交换机全局配置模式
S2126G(config)# vlan 10
注:创建vlan 10
S2126G(config-vlan)# name test10
注:将Vlan 10命名为test10
S2126G(config)# vlan 20
注:创建vlan 20
S2126G(config-vlan)# name test20
注:将Vlan 20命名为test20
S2126G(config-if)# interface fastethernet 0/5
注:进入fastethernet 0/5的接口配置模式
S2126G(config-if)# switch access vlan 10
注:将fastethernet 0/5端口加入vlan 10中
S2126G PC 1 PC 2
S2126G(config-if)# interface fastethernet 0/15
注:进入fastethernet 0/15的接口配置模式
S2126G(config-if)# switch access vlan 20
注:将fastethernet 0/15端口加入vlan 20中
实验过程
清空交换机原有vlan 配置,将fastethernet0/5口加入vlan 10 , 将fastethernet0/15口加入vlan 20 。
实验结果
PC1地址设成192.168.10.0/24的地址, PC2地址设成192.168.20.0/24的地址 PC1 与PC 2 不能相互ping 通。
2.VLAN/802.1Q -跨交换机VLAN
网络拓扑
实验项目
VLAN/802.1Q -跨交换机VLAN 测试
实验环境
两台交换机的fast0/24互联,其中一台交换机的fast0/5和fast0/15连接PC1和PC2,另一台交换机的fast0/5接PC3
实验配置
交换机S3550-24: SWITCH#configure terminal S2126G PC 1 vlan 10 PC3 vlan 10 S3550-24 PC 2 vlan 20
注:进入交换机全局配置模式
SWITCH(config)# vlan 10
注:创建vlan 10
SWITCH(config-vlan)# name test10
注:将Vlan 10命名为test10
SWITCH(config)# vlan 20
注:创建vlan 20
SWITCH(config-vlan)# name test20
注:将Vlan 20命名为test20
SWITCH(config-if)# interface fastethernet 0/5 注:进入fastethernet 0/5的接口配置模式SWITCH(config-if)# switch access vlan 10
注:将fastethernet 0/5端口加入vlan 10中SWITCH(config-if)# interface fastethernet 0/15 注:进入fastethernet 0/15的接口配置模式SWITCH(config-if)# switch access vlan 20
注:将fastethernet 0/15端口加入vlan 20中
SWITCH(config-if)# interface fastethernet 0/24 注:进入fastethernet 0/24的接口配置模式SWITCH(config-if)# switchport mode trunk
注:将fastethernet 0/24设为tag vlan模式
交换机S2126G:
SWITCH#configure terminal
注:进入交换机全局配置模式
SWITCH(config)# vlan 10
注:创建vlan 10
SWITCH(config-vlan)# name test10
注:将Vlan 10命名为test10
SWITCH(config-if)# interface fastethernet 0/5 注:进入fastethernet 0/5的接口配置模式SWITCH(config-if)# switch access vlan 10
注:将fastethernet 0/5端口加入vlan 10中
SWITCH(config-if)# interface fastethernet 0/24 注:进入fastethernet 0/24的接口配置模式SWITCH(config-if)# switchport mode trunk
注:将fastethernet 0/24设为tag vlan模式
实验过程