1

我使用 nc 来检查与我的服务器的连接:

echo -e -n "" | nc 192.168.15.200 8080

并且想知道nc连接服务器使用的源ip地址。

如果无法使用 nc 命令提取源 IP 地址,是否有其他替代方法可以检索连接到我的服务器时使用的源 IP 地址?

4

1 回答 1

1

以下脚本检索 nc 在连接到您的目标时使用的源 IP 地址。

#!/bin/sh

dest=192.168.15.200 # You can put an ip address or a name address
port=8080

isIP=`echo "$dest"|grep -v -e [a-zA-Z]`

echo -e -n "" | nc $dest $port

if [ "_$isIP" != "_" ];then
    ip=`netstat -t -n|grep $dest:$port|sed 's/ \+/ /g'|cut -f4 -d " "|cut -f1 -d:`
else
    for addr in `nslookup $dest|grep -v \#|grep Address|cut -f2 -d:|sed 's/\ //g'`;do
        ip=`netstat -t -n|grep $addr:$port|sed 's/ \+/ /g'|cut -f4 -d " "|cut -f1 -d:`
        if [ "_$ip" != "_" ];then
            break
        fi
    done
fi
echo $ip
于 2012-05-18T10:16:59.673 回答