linux端口检测,Linux下批量检测端口的连通性的几种方式

1.Linux下端口的几种状态

通常Linux下端口存在以下状态

端口开放且已经有服务占用该端口

open

端口开放但没有服务占用该端口

Connection refused

端口被禁用(如:防火墙限制)

Connection timed out

2.timeout+bash批量检测端口连通性

背景需求:162服务器需要对197从6000到6010端口进行连通性检测

通过查看197服务器上端口得知

当前6001-6010端均被redis-server占用,

6000端口当前无服务占用,

人工执行iptables对6001和6005,6008端口做iptables限制,模拟端口被禁用

linux端口检测,Linux下批量检测端口的连通性的几种方式_第1张图片

iptables -A INPUT -p tcp --dport 6001 -j DROP

iptables -A INPUT -p tcp --dport 6005 -j DROP

iptables -A INPUT -p tcp --dport 6008 -j DROP

linux端口检测,Linux下批量检测端口的连通性的几种方式_第2张图片

编写小脚本对端口进行来连通性检测

#!/bin/bash

PORT_LIST="6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010"

REMOTE_HOST=10.186.61.197

TIMEOUT_SEC=5

for PORT in $PORT_LIST

do

timeout $TIMEOUT_SEC bash -c "/dev/null; res=$?

if [[ $res -eq 0 ]]

then

echo "$PORT OPEN"

elif [[ $res -eq 1 ]]

then

echo "$PORT OPEN BUT NOT LISTEN"

elif [[ $res -eq 124 ]]

then

echo "$PORT NOT OPEN"

else

echo "$PORT UNKONWN ERROR"

fi

done

检测结果示例

OPEN BUT NOT LISTEN

端口开放但没有服务占用该端口

OPEN

端口开放且已经有服务占用该端口

NOT OPEN

端口被禁用(如:防火墙限制)

linux端口检测,Linux下批量检测端口的连通性的几种方式_第3张图片

3.使用nc检测端口连通性

[[email protected] ~]# nc -w 5 10.186.61.197 6000

Ncat: Connection refused.

1

[[email protected] ~]# nc -w 5 10.186.61.197 6001

Ncat: Connection timed out.

1

[[email protected] ~]# nc -w 5 10.186.61.197 6002

0

参考链接

原文:https://www.cnblogs.com/zhenxing/p/13502090.html

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