Packet Tracer - 综合技能练习
地址分配表
设备 | 接口 | IP 地址 | 子网掩码 | 默认网关 | VLAN |
R1 | S0/0/0 | 172.31.1.2 | 255.255.255.0 | 不适用 | 不适用 |
G0/0.10 | 172.31.10.1 | 255.255.255.0 | 不适用 | 10 | |
G0/0.20 | 172.31.20.1 | 255.255.255.0 | 不适用 | 20 | |
G0/0.30 | 172.31.30.1 | 255.255.255.0 | 不适用 | 30 | |
G0/0.88 | 172.31.88.1 | 255.255.255.0 | 不适用 | 88 | |
G0/0.99 | 172.31.99.1 | 255.255.255.0 | 不适用 | 99 | |
S1 | VLAN 88 | 172.31.88.33 | 255.255.255.0 | 172.31.88.1 | 88 |
PC-A | NIC | 172.31.10.21 | 255.255.255.0 | 172.31.10.1 | 10 |
PC-B | NIC | 172.31.20.22 | 255.255.255.0 | 172.31.20.1 | 20 |
PC-C | NIC | 172.31.30.23 | 255.255.255.0 | 172.31.30.1 | 30 |
PC-D | NIC | 172.31.88.24 | 255.255.255.0 | 172.31.88.1 | 88 |
VLAN 表
VLAN | 名称 | 接口 |
10 | 销售 | F0/11-15 |
20 | 生产 | F0/16-20 |
30 | 营销 | F0/5-10 |
88 | 管理 | F0/21-24 |
99 | 本征 | G0/1 |
拓扑图
场景
在本活动中,您将演示和加强您配置路由器的 VLAN 间通信以及配置静态路由以访问网络之外的目标位置的能力。 在您演示的技能之中包括配置 VLAN 间路由、配置静态路由以及默认路由。
要求
· 根据地址分配表在 R1 上配置 VLAN 间路由。
· 在 S1 上配置中继。
· 在 HQ 上为每个 VLAN 配置四个直连静态路由:10、20、30 和 88。
· 在 HQ 上配置直连静态路由以访问外部主机。
- 配置通过串行 0/1/0 接口的主路径。
- 配置通过串行 0/1/1 接口且 AD 为 10 的备份路由。
· 在 R1 上配置直连默认路由。
· 通过确保所有 PC 可以 ping 到外部主机,验证连接。
实验步骤:
R1:在 R1 上配置 VLAN 间路由
R1>en
R1#cofn ter
R1(config)#int g0/0
R1(config-if)#no sh
R1(config-if)#int g0/0.10
R1(config-subif)#description Sales VLAN
R1(config-subif)#encapsulation dot1Q 10
R1(config-subif)#ip add 172.31.10.1 255.255.255.0
R1(config-subif)#int g0/0.20
R1(config-subif)#description Production VLAN
R1(config-subif)#en dot1Q 20
R1(config-subif)#ip add 172.31.20.1 255.255.255.0
R1(config-subif)#int g0/0.30
R1(config-subif)#description Marketing VLAN
R1(config-subif)#en dot1Q 30
R1(config-subif)#ip add 172.31.30.1 255.255.255.0
R1(config-subif)#int g0/0.88
R1(config-subif)#description Management VLAN
R1(config-subif)#en dot1Q 88
R1(config-subif)#ip add 172.31.88.1 255.255.255.0
R1(config-subif)#int g0/0.99
R1(config-subif)#description Native VLAN
R1(config-subif)#en dot1Q 99 native
R1(config-subif)#ip add 172.31.99.1 255.255.255.0
S1:在 S1 上配置中继。
S1(config)#int g0/1
S1(config-if)#switchport mode trunk
S1(config-if)#switchport trunk native vlan 99
HQ:在总部配置四个直接连接到每个 VLAN 10、20、30 和 88 的静态路由。
HQ(config)# ip route 172.31.10.0 255.255.255.0 Serial0/0/0
HQ(config)# ip route 172.31.20.0 255.255.255.0 Serial0/0/0
HQ(config)# ip route 172.31.30.0 255.255.255.0 Serial0/0/0
HQ(config)# ip route 172.31.88.0 255.255.255.0 Serial0/0/0
·在总部配置直接连接的静态路由以访问外部主机。
– 通过串行 0/1/0 接口配置主路径。
– 通过串行 0/1/1 接口配置备份路由,10 AD。
HQ(config)# ip route 209.165.200.0 255.255.255.224 Serial0/1/0
HQ(config)# ip route 209.165.200.0 255.255.255.224 Serial0/1/1 10
ISP1:在 ISP 上为整个 172.31.0.0/17 地址空间配置直接连接的主路由和备份摘要路由。
– 通过串行 0/1/1 接口配置主路径。
– 通过串行 0/1/0 接口配置 25 AD 的备份路由。
ISP(config)#ip route 172.31.0.0 255.255.128.0 Serial0/1/1
ISP(config)#ip route 172.31.0.0 255.255.128.0 Serial0/1/0 25
在 R1 上配置直接连接的默认路由。
R1(config)#ip route 0.0.0.0 0.0.0.0 Serial0/0/0
实验脚本:
R1:
encofn terint g0/0no shint g0/0.10description Sales VLANencapsulation dot1Q 10ip add 172.31.10.1 255.255.255.0int g0/0.20description Production VLANen dot1Q 20ip add 172.31.20.1 255.255.255.0int g0/0.30description Marketing VLANen dot1Q 30ip add 172.31.30.1 255.255.255.0int g0/0.88description Management VLANen dot1Q 88ip add 172.31.88.1 255.255.255.0int g0/0.99description Native VLANen dot1Q 99 nativeip add 172.31.99.1 255.255.255.0exitip route 0.0.0.0 0.0.0.0 Serial0/0/0endwrite
S1:
encofn terint g0/1switchport mode trunkswitchport trunk native vlan 99endwrite
HQ:
encofn terip route 172.31.10.0 255.255.255.0 Serial0/0/0ip route 172.31.20.0 255.255.255.0 Serial0/0/0ip route 172.31.30.0 255.255.255.0 Serial0/0/0ip route 172.31.88.0 255.255.255.0 Serial0/0/0ip route 209.165.200.0 255.255.255.224 Serial0/1/0ip route 209.165.200.0 255.255.255.224 Serial0/1/1 10endwrite
ISP1:
encofn terip route 172.31.0.0 255.255.128.0 Serial0/1/1ip route 172.31.0.0 255.255.128.0 Serial0/1/0 25endwrite
实验链接:https://pan.baidu.com/s/1MVr3hwYemLMkHfGDaU_bhw?pwd=6412
提取码:6412
--来自百度网盘超级会员V3的分享