一、组网图
无
二、问题描述
当存储、网关(NS2300\NS2100)多个接口配置IP后,如何检测不同网口的通讯情况。
eno33559296 网口:10.1.1.70/24 gateway:10.1.1.36
eno50338560 网口:192.168.10.70/24 gateway:192.168.10.36
三、解决方法
在存储、网关的命令行界面ping ,-I 后跟网卡或者网卡IP。
指定ping命令从eno33559296发出
[root@server7 ~]# ping -I 10.1.1.70 10.1.1.36 PING 10.1.1.36 (10.1.1.36) from 10.1.1.70 : 56(84) bytes of data. 64 bytes from 10.1.1.36: icmp_seq=1 ttl=64 time=0.232 ms 64 bytes from 10.1.1.36: icmp_seq=2 ttl=64 time=0.108 ms 64 bytes from 10.1.1.36: icmp_seq=3 ttl=64 time=0.091 ms
指定ping命令从eno50338560发出
[root@server7 ~]# ping -I eno50338560 192.168.10.36 PING 192.168.10.36 (192.168.10.36) from 192.168.10.70 eno50338560: 56(84) bytes of data. 64 bytes from 192.168.10.36: icmp_seq=1 ttl=64 time=0.100 ms 64 bytes from 192.168.10.36: icmp_seq=2 ttl=64 time=0.102 ms 64 bytes from 192.168.10.36: icmp_seq=3 ttl=64 time=0.094 ms
补充说明:Windows 系统的ping命令参数不同,-S(大写)。
C:\Users\Administrator>ping -S 10.1.1.214 10.1.1.36 正在 Ping 10.1.1.36 从 10.1.1.214 具有 32 字节的数据: 来自 10.1.1.36 的回复: 字节=32 时间<1ms TTL=64 来自 10.1.1.36 的回复: 字节=32 时间<1ms TTL=64 来自 10.1.1.36 的回复: 字节=32 时间<1ms TTL=64 来自 10.1.1.36 的回复: 字节=32 时间<1ms TTL=64
四、风险提示
无
五、关键字
ping,指定端口,网络检测。