试验拓扑
试验环境:PacketTracer 5.0
试验要求:
1.两个三层交换机用两条一台链路组成以太网通道,提高带宽。
2.在网络中配置VTP,统一管理VLAN,<?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" />3L-1为整个VTP域中的Server,其他交换机为Cline,域名为vtpdomain,密码为123。
3.网络中4个vlan,分别为vlan10,vlan20,vlan30,vlan40,开启STP防止广播风暴,3L-1为vlan20,vlan20的根网桥,3L-2为vlan30,vlan40的根网桥。
4.在三层交换机上开启路由功能,实现个vlan间的互通。
5.使用RIP协议实现内网个网络与ISP之间的通信。
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
端口及IP规划:
ISP F0/0(10.0.0.2/8)---ROUTER F0/0 (10.0.0.1/8)
ROUTER F0/1(172.16.10.2/16)---3L-1 F0/24(172.16.10.1/16)
3L-1 F0/1 – 2和3L-2 F0/ – 2组成以太网通道
3L-1 F0/23和3L-2 F0/23配成TRUNK传输VTP信息
3L-1 F0/3 – 6依次连接交换机D、C、B、A的F0/23
3L-2 F0/3 – 6依次连接交换机D、C、B、A的F0/24
VLAN 10 网关192.168.10.1/24,192.168.10.2/24
VLAN 20 网关192.168.20.1/24,192.168.20.2/24
VLAN 30 网关192.168.30.1/24,192.168.30.2/24
VLAN 40 网关192.168.40.1/24,192.168.40.2/24
试验步骤:
1.首先开启两台三层交换机上的路由功能以及配置以太网通道
3L-1(config)#ip routing
3L-1(config)#int range f0/1 – 2
3L-1(config-if-range)# switchport mode trunk
3L-1(config-if-range)# channel-group 1 mode on
3L-1#show run
3L-2配置同3L-1
2.配置VTP,并且在3L-1上创建4个VLAN
3L-1(config)#int f0/23
3L-1(config-if)# switchport mode trunk (配置成中继传输VTP信息)
3L-1(config)#int range f0/3 – 6
3L-1(config-if-range)# switchport mode trunk
3L-1(config)#vtp domain vtpdomain
3L-1(config)#vtp password 123
3L-1(config)#vtp mode server
3L-1(config)#vtp version 2
3L-1(config)#vtp pruning
3L-1#show vtp status
3L-1#vlan database
3L-1(valn)#vlan 10
3L-1(valn)#vlan 20
3L-1(valn)#vlan 30
3L-1(valn)#vlan 40
3L-2(config)#int f0/23
3L-2(config-if)# switchport mode trunk
3L-2(config)#int range f0/3 – 6
3L-2(config-if-range)# switchport mode trunk
3L-2(config)#vtp domain vtpdomain
3L-2(config)#vtp password 123
3L-2(config)#vtp mode cline
3L-2#show vlan brief
交换机A、B、C、D把F0/23 – 24配成TRUNK其他配置同3L-2。
3.开启STP
3L-1(config)# spanning-tree vlan 10
3L-1(config)# spanning-tree vlan 20
3L-1(config)# spanning-tree vlan 30
3L-1(config)# spanning-tree vlan 40(默认开启)
3L-2同3L-1
4.配置根网桥
3L-1(config)# spanning-tree vlan 10 root primary
3L-1(config)# spanning-tree vlan 20 root primary(配置3L-1为vlan10,20的根网桥)
3L-2(config)# spanning-tree vlan 30 root primary
3L-2(config)# spanning-tree vlan 40 root primary(配置3L-2为vlan30,40的根网桥)
3L-2#show run
5.在三层交换机上为每个vlan配置网关,实现个vlan间的通信
3L-1(config)#int valn 10
3L-1(config-if)# ip address 192.168.10.1 255.255.255.0
3L-1(config)#int valn 20
3L-1(config-if)# ip address 192.168.20.1 255.255.255.0
3L-1(config)#int valn 30
3L-1(config-if)# ip address 192.168.30.1 255.255.255.0
3L-1(config)#int valn 40
3L-1(config-if)# ip address 192.168.40.1 255.255.255.0
3L-2(config)#int valn 10
3L-2(config-if)# ip address 192.168.10.2 255.255.255.0
3L-2(config)#int valn 20
3L-2(config-if)# ip address 192.168.20.2 255.255.255.0
3L-2(config)#int valn 30
3L-2(config-if)# ip address 192.168.30.2 255.255.255.0
3L-2(config)#int valn 40
3L-2(config-if)# ip address 192.168.40.2 255.255.255.0
现在个vlan间已经可以正常通信了
测试在192.168.10.10上ping192.168.30.20
6.在路由端口上配置IP并开启端口
3L-1(config)#int f0/24
3L-1(config-if)#no switchport
3L-1(config-if)#ip address 172.16.10.1 255.255.0.0
3L-1(config-if)#no shutdown
Router(config)#int f0/1
Router(config-if)#ip address 172.16.10.2 255.255.0.0
Router(config-if)#no shutdown
Router(config)#int f0/0
Router(config-if)#ip address 10.0.0.1 255.0.0.0
Router(config-if)#no shutdown
ISP(config)#int f0/0
ISP(config-if)#ip address 10.0.0.2 255.0.0.0
ISP(config-if)#no shutdown
7.配置RIP实现内网与外网的通信
3L-1(config)#router rip
3L-1(config-router)#network 192.168.10.0
3L-1(config-router)#network 192.168.20.0
3L-1(config-router)#network 192.168.30.0
3L-1(config-router)#network 192.168.40.0
3L-1(config-router)#network 172.16.0.0
Router(config)#router rip
Router(config-router)#network 172.16.0.0
Router(config-router)#network 10.0.0.0
ISP(config)#router rip
ISP(config-router)#network 10.0.0.0
3L-1#show ip route
Router#show ip route
I SP#show ip route
测试内部PC与ISP的通信
全部都用RIP比较省事,有不足之处希望大家多多纠正~~~
转载于:https://blog.51cto.com/yuwen/114830