shell检测服务端口

  • 生产实践:

    批量检测远程主机指定端口是否打开

  • 学习技巧:

    while循环 nc使用

  • 脚本内容:

#!/bin/bash
############################################################
# $Name:         port-ck.sh
# $Version:      v1.0
# $Function:     check remote server ports
# $Author:       Zhihe An
# $organization: chegva.com
# $Create Date:  2017-10-16
############################################################
port=$1
while read line
do
    nc -vz $line $port > /dev/null 2>&1
    if [ $? = 0 ]
    then
        echo "$line $port is open!";
    else
        echo "$line $port is down!";
    fi
done < ../file/IPA

◎查看效果shell检测服务端口

anzhihe 安志合个人博客,版权所有 丨 如未注明,均为原创 丨 转载请注明转自:https://chegva.com/2528.html | ☆★★每天进步一点点,加油!★★☆ | 

您可能还感兴趣的文章!

发表评论

电子邮件地址不会被公开。 必填项已用*标注