1、IP 地址配置举例1. 组网需求Switch 的端口(属于 VLAN 1)连接一个局域网,局域网中的计算机分别属于2个网段:172.16.1.0/24和172.16.2.0/24。要求这两个网段的主机都可以通过Switch 与外部网络通信,且这两个网段中的主机能够互通。2. 组网图图1-3 IP 地址配置组网图3. 配置步骤针对上述的需求,如果在 Switch 的 VLAN 接口1上只配置一个 IP 地址,则只有一部分主机能够通过 Switch 与外部网络通信。为了使局域网内的所有主机都能够通过 Switch 访问外部网络,需要配置 VLAN 接口1的从 IP 地址。为了使两个网段中的主机能够
2、互通,两个网段中的主机需要分别将 Switch 上 VLAN 接口1的主 IP 地址和从 IP 地址设置为网关。# 配置 VLAN 接口1的主 IP 地址和从 IP 地址。system-viewSwitch interface vlan-interface 1Switch-Vlan-interface1 ip address 172.16.1.1 255.255.255.0Switch-Vlan-interface1 ip address 172.16.2.1 255.255.255.0 sub# 在172.16.1.0/24网段中的主机上配置网关为172.16.1.1;在172.16.2.0
3、/24网段中的主机上配置网关为172.16.2.1。# 使用 ping 命令检测 Switch 与网络172.16.1.0/24内主机的连通性。ping 172.16.1.2PING 172.16.1.2: 56 data bytes, press CTRL_C to breakReply from 172.16.1.2: bytes=56 Sequence=1 ttl=255 time=25 msReply from 172.16.1.2: bytes=56 Sequence=2 ttl=255 time=27 msReply from 172.16.1.2: bytes=56 Sequen
4、ce=3 ttl=255 time=26 msReply from 172.16.1.2: bytes=56 Sequence=4 ttl=255 time=26 msReply from 172.16.1.2: bytes=56 Sequence=5 ttl=255 time=26 ms- 172.16.1.2 ping statistics -5 packet(s) transmitted5 packet(s) received0.00% packet lossround-trip min/avg/max = 25/26/27 ms显示信息表示 Switch 与网络172.16.1.0/2
5、4内的主机可以互通。# 使用 ping 命令检测 Switch 与网络172.16.2.0/24内主机的连通性。ping 172.16.2.2PING 172.16.2.2: 56 data bytes, press CTRL_C to breakReply from 172.16.2.2: bytes=56 Sequence=1 ttl=255 time=25 msReply from 172.16.2.2: bytes=56 Sequence=2 ttl=255 time=26 msReply from 172.16.2.2: bytes=56 Sequence=3 ttl=255 tim
6、e=26 msReply from 172.16.2.2: bytes=56 Sequence=4 ttl=255 time=26 msReply from 172.16.2.2: bytes=56 Sequence=5 ttl=255 time=26 ms- 172.16.2.2 ping statistics -5 packet(s) transmitted5 packet(s) received0.00% packet lossround-trip min/avg/max = 25/25/26 ms显示信息表示 Switch 与网络172.16.2.0/24内的主机可以互通。# 使用 ping 命令检测网络172.16.1.0/24和网络172.16.2.0/24内主机的连通性。在 Host A 上可以 ping 通 Host B。