shell 用telnet检查服务端口是否打开 【高效】

[root@logserver sbclog]# cat checksbc1.sh 
#!/bin/bash
nport=`echo ""|telnet 10.134.41.1 23 2>/dev/null|grep "\^]"|wc -l`
if [ "$nport" -eq "0" ];then
mail -s 'xxxxxx' [email protected] < /home/sbclog/sx30001/check.txt 
fi

用telnet检查服务端口是否打开

你可能感兴趣的:(端口检测)