CCNA综合实验 实例解析
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
三层交换机和vtp协议的配置实验报告时间:2011年7月14日
地点:西一楼5实验机房
目的:1)了解三层交换机的原理及其的扩展应用,并掌握其配置方法。
2) 理解VTP协议的原理及应用,掌握VTP的配置技巧。
3)巩固对ACL列表的了解,并练习其配置方法。
内容:一、拓扑设计 二、设备配置 三、项目总结
一、拓扑图:
二、设备配置
1、初始化设备命令
en
conf t
no ip domain-look
line con 0
logging syn
exec 0 0
pass 0
login
line vty 0 4
pass 0
login
end
conf t
enable pass 0
2、三层交换机上的捆绑通道命令
Sw0上的端口封装:
conf t
int rang f0/1- 2
channel-protocol lacp
channel-group 1 mode active switchport trunk encapsulation dot1q switchport mode trunk
show的结果显示:
修改端口模式为trunk:
conf t
int rang f0/4-5
switchport trunk encapsulation dot1q switchport mode trunk
show的结果显示:
同理在Sw1上进行通道封装,三层交换机Sw1上的配置类似Sw0的配置。
3、在三层交换机Sw0和Sw1上 配置VTP协议
conf t
vtp domain test
vtp mode server
vtp pass 0
show命令显示结果:
Sw1的配置类似Sw0的配置。
在一般交换机sw0---sw3上配置VTP协议:
conf t
vtp domain test
vtp mode client
vtp pass 0
其余交换机的VTP配置类似Sw0的配置。
4、三层交换机SW0上vlan配置
conf t
vlan 2
vlan 3
vlan 4
vlan 5
end
显示结果:
5、启用路由
conf t
ip routing
end
6、三层交换机sw0和sw1上配置vlan间的网关IP conf t
int vlan 2
ip add 192.168.2.254 255.255.255.0
no sh
end
conf t
int vlan 3
ip add 192.168.3.254 255.255.255.0
no sh
end
conf t
int vlan 4
ip add 192.168.4.254 255.255.255.0
no sh
end
conf t
int vlan 5
ip add 192.168.5.254 255.255.255.0
no sh
end
7、三层交换路由RIP配置
conf t
int f0/3
no switch
ip add 40.1.1.1 255.255.255.0
no sh
exit
router rip
ver 2
net 192.168.2.0
net 192.168.3.0
net 40.1.1.0
no au
end
conf t
int f0/3
no switch
ip add 30.1.1.1 255.255.255.0
no sh
exit
router rip
ver 2
net 192.168.4.0
net 192.168.5.0
net 30.1.1.0
no au
end
8、在三层交换机Sw0上配置DHCP
conf t
ip dhcp pool vlan2
network 192.168.2.0 255.255.255.0 default-router 192.168.2.254
dns-server 202.196.1.1
exit
ip dhcp excluded-address 192.168.2.254
end
conf t
ip dhcp pool vlan3
network 192.168.3.0 255.255.255.0 default-router 192.168.3.254
dns-server 202.196.1.1
exit
ip dhcp excluded-address 192.168.3.254 end
show running 的显示结果(部分):
9、在三层交换机Sw1上配置DHCP
conf t
ip dhcp pool vlan4
network 192.168.4.0 255.255.255.0 default-router 192.168.4.254
dns-server 202.196.1.1
exit
ip dhcp excluded-address 192.168.4.254 end
conf t
ip dhcp pool vlan5
network 192.168.5.0 255.255.255.0 default-router 192.168.5.254
dns-server 202.196.1.1
exit
ip dhcp excluded-address 192.168.5.254 end