H3C 三层交换实验
程序员文章站
2022-06-13 12:31:40
...
H3C 三层交换实验
实验拓扑
实验需求
- 按照图示为 PC1 和 PC2 配置 IP 地址和网关
- PC1 属于 Vlan10,PC2 属于 Vlan20,在三层交换机上配置 Vlanif 三层接口实现 Vlan10 和 Vlan20 三层互通
- PC1 和 PC2 可以互通
实验解法
-
按图示为PC配置IP地址、网关
步骤 1:配置 PC1 的 IP 地址为 192.168.10.1/24 网关为192.168.10.254
步骤 2:配置 PC2 的 IP 地址为 192.168.20.1/24 网关为192.168.20.254
-
PC1 属于 Vlan10,PC2 属于 Vlan20,在三层交换机上配置 Vlanif 三层接口实现 Vlan10 和 Vlan20 三层互通
步骤 1:在 SW1 上创建 Vlan10 和 Vlan20,并把 g1/0/1 接口加入 Vlan10,把 g1/0/2 接口加入 Vlan20
[SW1]vlan 10 [SW1-vlan10]port g1/0/1 [SW1-vlan10]vlan 20 [SW1-vlan20]port g1/0/2
步骤 2:在 SW1 上对 Vlan10 和 Vlan20 开启 Vlanif 接口,并配置 Vlanif10 接口 IP 地址为 Vlan10 的网关地址 192.168.1.254/24,配置 Vlanif20 接口 IP 地址为 Vlan20 的网关地址 192.168.2.254/24
[SW1]interface Vlan-interface 10 [SW1-Vlan-interface10]ip address 192.168.1.254 24 [SW1]interface Vlan-interface 20 [SW1-Vlan-interface20]ip address 192.168.2.254 24
-
测试在 PC1 上 Ping PC2 ,可以 Ping 通 PC2
<H3C>ping 192.168.20.1 Ping 192.168.20.1 (192.168.20.1): 56 data bytes, press CTRL_C to break 56 bytes from 192.168.20.1: icmp_seq=0 ttl=254 time=2.000 ms 56 bytes from 192.168.20.1: icmp_seq=1 ttl=254 time=2.000 ms 56 bytes from 192.168.20.1: icmp_seq=2 ttl=254 time=2.000 ms 56 bytes from 192.168.20.1: icmp_seq=3 ttl=254 time=2.000 ms 56 bytes from 192.168.20.1: icmp_seq=4 ttl=254 time=2.000 ms
上一篇: 设计模式学习–适配器模式