关于Cisco Packet Tracer三层交换机路由配置

Posted fat fat bird

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于Cisco Packet Tracer三层交换机路由配置相关的知识,希望对你有一定的参考价值。

步骤1:交换机trunk配置

交换机sw1配置

Switch>en
Switch#conf t
Switch(config)#ho sw1
sw1(config)#int f0/2
sw1(config-if)#sw mo tr

sw1(config-if)#exit

交换机sw2配置

Switch>en
Switch#conf t
Switch(config)#ho sw2
sw2(config)#int f0/2
sw2(config-if)#sw mo tr

sw2(config-if)#exit

三层交换机配置

Switch>en
Switch#conf t
Switch(config)#ho core
core(config)#int range f0/1 - 2
core(config-if-range)#switchport trunk encapsulation dot1q 
core(config-if-range)#sw mo tr
core(config-if-range)#exit

步骤2:交换机建立vlan

交换机sw1配置

sw1(config)#vlan 10
sw1(config-vlan)#exit

交换机sw2配置

sw2(config)#vlan 20
sw2(config-vlan)#exit

步骤3:交换机端口接入vlan

交换机sw1配置

sw1(config)#int f0/1
sw1(config-if)#sw ac vlan 10
sw1(config-if)#exit

交换机sw2配置

sw2(config)#int f0/1
sw2(config-if)#sw ac vlan 20
sw2(config-if)#exit

步骤4:三层交换机配置路由

core(config)#ip routing 
core(config)#int vlan 10
core(config-if)#ip add 10.1.1.254 255.255.255.0
core(config-if)#no sh
core(config-if)#exit
core(config)#int vlan 20
core(config-if)#ip add 20.1.1.254 255.255.255.0
core(config-if)#no sh
core(config-if)#exit

步骤5:三层交换机二层端口升级为三层端口配置

core(config)#int f0/3
core(config-if)#no switchport 
core(config-if)#ip add 30.1.1.1 255.255.255.0
core(config-if)#no sh

接下来就是路由部分配置,最终效果为全网互通。

三层交换机链路聚合实验-Cisco Packet Tracer

三层交换机链路聚合实验

一.实验内容

  • 互联网结构如图所示,三层交换机S1和S2的端口3-5构成端口通道,这一对端口通道作为实现S1和S2互连的三层接口。三层交换机S1和S2的端口6-8构成端口通道,这一对端口通道构成三层交换机Sl和S2之间的二层交换路径,且该交换路径被VLAN 2和VLAN 3共享。
  • 分别在三层交换机S1和S2中创建VLAN 2和VLAN 3,终端A和终端C属于VLAN 2,终端B和终端D属于VLAN 3,三层交换机S1中定义VLAN 2对应的IP接口,不允许定义VLAN 3对应的IP接口。三层交换机S2中定义VLAN 3对应的IP接口,不允许定义VLAN 2对应的IP接口。在满足上述要求的情况下,实现属于同一VLAN的两个终端之间的通信过程和属于不同VLAN的两个终端之间的通信过程。


二.实验目的
(1)进一步理解三层交换机的二层交换和三层路由功能。
(2)区分三层交换机三层接口与IP接口之间的差别。
(3)掌握三层交换机三层接口的端口通道配置过程。
(4)掌握三层交换机共享端口的端口通道配置过程。
(5)掌握三层交换机三层接口和IP接口的配置过程。
(6)验证IP分组VLAN间传输过程。
三.实验原理

  • 三层交换机S1和S2三层接口之间的聚合链路只能用于实现三层交换机S1和S2路由模块之间的互连,如逻辑结构图所示,为了实现VLAN内通信过程,必须建立三层交换机SI和S2之间的交换路径。
  • 由于三层交换机S1中不允许定义VLAN 3 对应的 IP接口,三层交换机S2中不允许定义VLAN 2对应的IP接口,因此,需要通过三层交换机S1和S2三层接口之间的聚合链路实现VLAN 2和VLAN 3之间的通信过程。

逻辑结构图


路由表

配置图

  • 三层交换机的三层接口等同于路由器物理接口,因此,三层接口无须与VLAN绑定,只能接收、发送不携带VLAN ID的MAC帧,不能建立跨三层接口的VLAN。
  • 根据配置图所示,终端A至终端D IP分组传输路径由三部分组成:一是终端A至S1路由模块;二是S1路由模块至S2路由模块,这一段路径只经过两个三层接口之间的聚合链路;三是 S2路由模块至终端D. 由此可见,终端A至终端D的IP分组传输路径无须经过S1和S2之间的二层交换路径。
  • 终端A至终端B的IP分组传输路径也由三部分组成,一是终端A至S1路由模块,二是S1路由模块至S2路由模块,这一段路径只经过两个三层接口之间的聚合链路,三是S2路由模块至终端B,这一段路径需要经过S1和S2之间的二层交换路径。

四.命令接口配置过程
1.Multilayer Switch1命令接口配置过程

Switch>enable
Switch#configure terminal
Switch(config)#hostname Switch1
Switch1(config)#vlan 2
Switch1(config-vlan)#name v2
Switch1(config-vlan)#exit
Switch1(config)#vlan 3
Switch1(config-vlan)#name v3
Switch1(config-vlan)#exit
SWitch1(config)#interface FastEthernet 0/1
SWitch1(config-if)#switchport mode access
SWitch1(config-if)#switchport access vlan 2
SWitch1(config-if)#exit
SWitch1(config)#interface FastEthernet 0/2
SWitch1(config-if)#switchport mode access
SWitch1(config-if)#switchport access vlan 3
SWitch1(config-if)#exit
SWitch1(config)#interface vlan 2
SWitch1(config-if)#ip address 192.1.1.254 255.255.255.0
SWitch1(config-if)#exit
SWitch1(config)#interface FastEthernet 0/3
SWitch1(config-if)#no switchport
SWitch1(config-if)#no ip address
SWitch1(config-if)#channel-group 1 mode active
SWitch1(config-if)#channel-protocol lacp
SWitch1(config-if)#exit
SWitch1(config)#interface FastEthernet 0/4
SWitch1(config-if)#no switchport
SWitch1(config-if)#no ip address
SWitch1(config-if)#channel-group 1 mode active
SWitch1(config-if)#channel-protocol lacp
SWitch1(config-if)#exit
SWitch1(config)#interface FastEthernet 0/5
SWitch1(config-if)#no switchport
SWitch1(config-if)#no ip address
SWitch1(config-if)#channel-group 1 mode active
SWitch1(config-if)#channel-protocol lacp
SWitch1(config-if)#exit
SWitch1(config)#interface port-channel 1
SWitch1(config-if)#ip address 192.1.3.1 255.255.255.252
SWitch1(config-if)#exit
SWitch1(config)#interface FastEthernet 0/6
SWitch1(config-if)#switchport trunk encapsulation dotlq
SWitch1(config-if)#switchport mode trunk
SWitch1(config-if)#channel-group 2 mode active
SWitch1(config-if)#channel-protocol lacp
SWitch1(config-if)#exit
SWitch1(config)#interface FastEthernet 0/7
SWitch1(config-if)#switchport trunk encapsulation dotlq
SWitch1(config-if)#switchport mode trunk
SWitch1(config-if)#channel-group 2 mode active
SWitch1(config-if)#channel-protocol lacp
SWitch1(config-if)#exit
SWitch1(config)#interface FastEthernet 0/8
SWitch1(config-if)#switchport trunk encapsulation dotlq
SWitch1(config-if)#switchport mode trunk
SWitch1(config-if)#channel-group 2 mode active
SWitch1(config-if)#channel-protocol lacp
SWitch1(config-if)#exit
SWitch1(config)#interface port-channel 2
SWitch1(config-if)#switchport trunk encapsulation dotlq
SWitch1(config-if)#switchport mode trunk
SWitch1(config-if)#exit
SWitch1(config)#ip routing
SWitch1(config)#router rip
SWitch1(config-router)#version 2
SWitch1(config-router)#no auto-summary
SWitch1(config-router)#network 192.1.1.0
SWitch1(config-router)#network 192.1.3.0
SWitch1(config-router)#exit

2.Multilayer Switch2命令接口配置过程

Switch>enable
Switch#configure terminal
Switch(config)#hostname Switch2
Switch2(config)#vlan 2
Switch2(config-vlan)#name v2
Switch2(config-vlan)#exit
Switch2(config)#vlan 3
Switch2(config-vlan)#name v3
Switch2(config-vlan)#exit
SWitch2(config)#interface FastEthernet 0/1
SWitch2(config-if)#switchport mode access
SWitch2(config-if)#switchport access vlan 2
SWitch2(config-if)#exit
SWitch2(config)#interface FastEthernet 0/2
SWitch2(config-if)#switchport mode access
SWitch2(config-if)#switchport access vlan 3
SWitch2(config-if)#exit
SWitch2(config)#interface vlan 3
SWitch2(config-if)#ip address 192.1.2.254 255.255.255.0
SWitch2(config-if)#exit
SWitch2(config)#interface FastEthernet 0/3
SWitch2(config-if)#no switchport
SWitch2(config-if)#no ip address
SWitch2(config-if)#channel-group 1 mode active
SWitch2(config-if)#channel-protocol lacp
SWitch2(config-if)#exit
SWitch2(config)#interface FastEthernet 0/4
SWitch2(config-if)#no switchport
SWitch2(config-if)#no ip address
SWitch2(config-if)#channel-group 1 mode active
SWitch2(config-if)#channel-protocol lacp
SWitch2(config-if)#exit
SWitch2(config)#interface FastEthernet 0/5
SWitch2(config-if)#no switchport
SWitch2(config-if)#no ip address
SWitch2(config-if)#channel-group 1 mode active
SWitch2(config-if)#channel-protocol lacp
SWitch2(config-if)#exit
SWitch2(config)#interface port-channel 1
SWitch2(config-if)#ip address 192.1.3.2 255.255.255.252
SWitch2(config-if)#exit
SWitch2(config)#interface FastEthernet 0/6
SWitch2(config-if)#switchport trunk encapsulation dotlq
SWitch2(config-if)#switchport mode trunk
SWitch2(config-if)#channel-group 2 mode active
SWitch2(config-if)#channel-protocol lacp
SWitch2(config-if)#exit
SWitch2(config)#interface FastEthernet 0/7
SWitch2(config-if)#switchport trunk encapsulation dotlq
SWitch2(config-if)#switchport mode trunk
SWitch2(config-if)#channel-group 2 mode active
SWitch2(config-if)#channel-protocol lacp
SWitch2(config-if)#exit
SWitch2(config)#interface FastEthernet 0/8
SWitch2(config-if)#switchport trunk encapsulation dotlq
SWitch2(config-if)#switchport mode trunk
SWitch2(config-if)#channel-group 2 mode active
SWitch2(config-if)#channel-protocol lacp
SWitch2(config-if)#exit
SWitch2(config)#interface port-channel 2
SWitch2(config-if)#switchport trunk encapsulation dotlq
SWitch2(config-if)#switchport mode trunk
SWitch2(config-if)#exit
SWitch2(config)#ip routing
SWitch2(config)#router rip
SWitch2(config-router)#version 2
SWitch2(config-router)#no auto-summary
SWitch2(config-router)#network 192.1.2.0
SWitch2(config-router)#network 192.1.3.0
SWitch2(config-router)#exit

五、实验查看及验证
1.Multilayer Switch1的端口状态

2.Multilayer Switch2的端口状态


软件版本:Cisco Packet Tracer 7.2
链接:https://pan.baidu.com/s/1vcBwRC6PLYS4g03yYcHx3w
提取码:ce8g

以上是关于关于Cisco Packet Tracer三层交换机路由配置的主要内容,如果未能解决你的问题,请参考以下文章

1.cisco packet tracer 中cisco 2950-24 交换机怎么配置IP地址?命令我知道 ip address ip mask,

Cisco Packet Tracer的基本使用

通过思科模拟器CISCO PACKET TRACER学习网络4——VLAN间路由

5.Cisco Packet Tracer里关于交换机或路由器配置文件和系统映像备份与恢复

cisco packet tracer 5.3中怎么验证FTP服务?就是要怎么访问设置好的FTP服务?

Cisco Packet Tracer 交换机 2950-24 配置