实验二VLAN以及Trunk实验(思科)
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
实验二VLAN以及Trunk配置
(第2 次课 1 学时)
一、【实验目的】
1.了解交换机的工作原理,掌握交换机的基本配置命令。
1、掌握VLAN基本配置。
2、掌握静态接口VLAN划分。
二、【实验器材】
1.思科3400交换机2台、PC机每组个2台。
2.连接console电缆线两条、标准网线若干。
三、【实验重点和难点】
1.熟练使用交换机的常用配置命令。
2. 验证VLAN实现两个PC之间的连通性。
四、【实现功能】
通过VLAN实现两个PC之间的连通性。
五、【思考题】
不同VLAN间的PC是否可以相互访问,相同VLAN间的PC是否可以相互访问。
实验内容
一、基本VLAN实验
实验拓扑:
实验需求:在交换机switch上面创建两个VLAN,vlan2和vlan3,vlan 名称分别为HR、ENG ,将主机PC1、PC2分别划入两个VLAN中
步骤一:创建VLAN2与VLAN3
Switch#config terminal
Switch(config)#vlan 2
Switch(config-vlan)name HR
Switch(config-vlan) exit
Switch(config)#vlan 3
Switch(config-vlan) name ENG
步骤二:将与两台PC连接的两个接口分别划入相同的VLAN2中Switch(config)#int f0/1
Switch(config-if) switch access vlan 2
Switch(config-if)port nni
//将接口划入指定VLAN中
Switch(config-if)int f0/2
Switch(config-if) switch access vlan 2
Switch(config-if)port nni
//将接口划入指定VLAN中
Switch(config-if)exit
验证结果:使用show vlan 2查看试验结果,在PC1以及PC2上使用ping 命令查看连通性。
使用show mac-add interface f0/1,show mac-add interface f0/2查看MAC地址,并在PC1以及PC2使用ipconfig/all查看本机MAC地址与交换机上的是否一致。
步骤三:将与两台PC连接的两个接口分别划入两个不通的VLAN2,
VLAN3中。
Switch(config)#int f0/1
Switch(config-if) switch access vlan 2
Switch(config-if)port nni
//将接口划入指定VLAN中
Switch(config-if)int f0/2
Switch(config-if) switch access vlan 3
Switch(config-if)port nni
//将接口划入指定VLAN中
Switch(config-if)exit
分别使用show vlan id 2, show vlan id 3命令查看试验结果,在PC1以及PC2上使用ping命令查看连通性。
VLAN Name Status Ports
---- -------------------------------- --------- -------------------------------
2 HR active f0/2
VLAN Type SAID MTU Parent RingNo BridgeNo Stp BrdgMode Trans1 Trans2 ---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------
2 enet 100022 1500 - - - - - 0 0 Remote SPAN VLAN
----------------
Disabled
Primary Secondary Type Ports
------- --------- ----------------- ------------------------------------------
VLAN Type Ports
---- ----------------- -------------------------------------------------------
步骤三:
二、Vlan Trunk 实验
实验拓扑:
实验需求:在交换机SW1与SW2上创建VLAN2,并将两个交换机之间的链路设置成trunk链路,使vlan数据能够跨越交换机
步骤一:在交换机SW1、SW2上创建VLAN2,并将其与主机连接的接口划入对应VLAN中
SW1上的配置:
Switch#confi term
Switch(config)hostame Switch1
Switch1(config)vlan 2
Switch1(config-vlan)description HR
Switch1(config-vlan)exit
Switch1(config)int f0/1
Switch1(config-if)port nni
Switch1(config-if) switch access vlan 2
SW2上的配置:
Switch#confi term
Switch(config)hostame Switch2
Switch2(config)vlan 2
Switch2(config-vlan)description HR
Switch2(config-vlan)exit
Switch2(config)int f0/2
Switch2(config-if)port nni
Switch2(config-if) switch access vlan 2
步骤二:将两个交换机之间的链路配置为Trunk链路Switch1(config)int f0/20
Switch1(config-if)switch trunk allowed vlan 2
Switch1(config-if)switch mode trunk
// 把当前端口设置为trunk并允许vlan2通过
Switch2(config)int f0/20
Switch2(config-if)switch mode trunk
Switch2(config-if)switch trunk allowed vlan 2
步骤三:使用show vlan命令查看实验结果,在PC1以及PC2上使用ping 命令查看连通性。