一、公告内容
在有网络防火墙等安全设备的网络环境下,经常会出现相关存储功能配置失败情况,如跨网段访问NAS、跨网段配置仲裁者、跨网段配置复制等。此时需要先排查网络连通性,包括TCP/UDP相关网络端口是否能正常通信,测试方法如下:
1、检查Linux客户端是否安装netcat软件,如未安装则使用操作系统镜像安装:
[root@localhost ~]# which nc /usr/bin/nc [root@localhost ~]# rpm -qa | grep nmap nmap-ncat-6.40-7.el7.x86_64 [root@localhost ~]# #如未安装则使用以下命令安装 [root@localhost ~]# yum install nc.x86_64
2、检测UCP端口连通信(nc -u 存储IP 端口号):
#测试udp端口连通性 [root@localhost ~]# nc -u 172.0.64.212 53 s Ncat: Connection refused. #以上输入任意字符,回车后提示Connection refused,表示客户端到主机172.0.64.212的udp 53端口不通 [root@localhost ~]# nc -u 172.0.64.212 13030 as ^C #以上输入任意字符,回车后无提示,表示客户端到主机172.0.64.212的udp 13030端口可以正常通信 [root@localhost ~]#
3、检查TCP端口连通信(nc 存储IP 端口号):
--测试TCP端口连通性 [root@localhost ~]# nc 172.0.64.212 16509 a s ^C #以上输入任意字符,回车后无提示,表示客户端到主机172.0.64.212的tcp 16509端口通讯正常 [root@localhost ~]# nc 172.0.64.212 16508 Ncat: Connection refused. #提示Connection refused,表示客户端到主机172.0.64.212的tcp 16508端口不通