本文是我开通51CTO技术博客以来的第一篇博文!希望基于此篇交换技术的博文,我以后能坚持写下去,巩固知识!
实验环境:Packet Tracer 5.0
实验拓扑:
实验配置:
SW-2L
1、创建VLAN,并将相应端口加入VLAN
SW-2L#vlan database
SW-2L(vlan)#vlan 2
SW-2L(vlan)#vlan 3
SW-2L(config)#interface f0/2
SW-2L(config-if)#switch access vlan 2
SW-2L(config)#interface f0/3
SW-2L(config-if)#switch access vlan 3
2、创建TRUNK
SW-2L(config)#interface f0/24
SW-2L(config-if)switch mode trunk
SW-3L
1、创建VLAN
SW-3L#vlan database
SW-3L(vlan)#vlan 2
SW-3L(vlan)#vlan3
2、创建TRUNK
SW-3L(config)#interface f0/24
SW-3L(config-if)#switch mode trunk
3、开启三层交换路由功能
SW-3L(conifg)#ip routing
4、配置VLAN的IP
SW-3L(config)#interface vlan 1
SW-3L(config-if)#ip address 192.168.1.254 255.255.255.0
SW-3L(config-if)#no shutdown
SW-3L(config)#interface vlan 2
SW-3L(config-if)#ip address 192.168.2.254 255.255.255.0
SW-3L(config-if)#no shutdown
SW-3L(conifg)#interface vlan3
SW-3L(config-if)#ip address 192.168.3.254 255.255.255.0
SW-3L(config-if)#no shutdown
5、配置三层交换路由接口
SW-3L(config)#interface f0/23
SW-3L(config-if)#no switchport
SW-3L(config-if)#ip address 10.1.1.1 255.255.255.0
SW-3L(config-if)#no shutdown
6、配置RIP路由
SW-3L(config)#router rip
SW-3L(config-router)#no auto-summary
SW-3L(config-router)#network 192.168.1.0
SW-3L(config-router)#network 192.168.2.0
SW-3L(config-router)#network 192.168.3.0
SW-3L(conifg-router)#network 10.1.1.0
RA
1、配置端口IP
RA(config)#interface f0/0
RA(config-if)#ip address 10.1.1.2 255.255.255.0
RA(config-if)#no shutdown
RA(config)#interface f0/1
RA(config-if)#ip address 172.16.1.1 255.255.255.0
RA(config-if)#no shutdown
2、配置RIP路由
RA(config)#router rip
RA(config-router)#no auto-summary
RA(config-router)#network 10.1.1.0
RA(config-router)#network 172.16.1.0
RB
1、配置端口IP
RB(config)#interface f0/0
RB(config-if)#ip address 172.16.1.2 255.255.255.0
RB(config-if)#no shutdown
2、配置RIP路由
RB(config)#router rip
RB(config-router)#no auto-summary
RB(config-router)#network 172.16.1.0
整个实验的文档,我都已经通过附件上传,需要可以下载!