5

我正在尝试在 SunOS 上使用端口 7085 附加进程。我尝试了以下命令。

netstat -ntlp | grep 7085没有返回任何东西

netstat -anop | grep 7085也试过这个。此开关在 SunO 中无效

我得到以下输出。

#netstat -anop

netstat: illegal option -- o

usage: netstat [-anv] [-f address_family]

netstat [-n] [-f address_family] [-P protocol] [-g | -p | -s [interval [count]]]

netstat -m [-v] [interval [count]]

netstat -i [-I interface] [-an] [-f address_family] [interval [count]]

netstat -r [-anv] [-f address_family|filter]

netstat -M [-ns] [-f address_family]

netstat -D [-I interface] [-f address_family]

SunOS 的版本是 SunOS 5.10。我相信 netstat 是唯一可以做到这一点的命令。

netstat 的确切开关是什么,它将为我提供端口附加的进程 ID?

4

3 回答 3

10
pfiles /proc/* 2>/dev/null | nawk '
/^[0-9]*:/ { pid=$0 }
/port: 7085$/ { printf("%s %s\n",pid,$0);}'
  • pfiles /proc/*正在检索所有进程文件描述符详细信息
  • 2>/dev/null由于瞬态过程在此期间死亡而丢弃错误
  • 每行以数字开头,后跟冒号报告进程 ID 和详细信息,它存储在 awk pid 变量中
  • 当一行以字符串结尾port: <portnumber>(这里是 7085)时,会显示相应的 pid 变量。

注意:您需要所需的权限才能从您不拥有的进程中获取端口信息(root 拥有所有权限)。

于 2012-11-07T09:37:55.460 回答
3

看看lsof http://linux.about.com/library/cmd/blcmdl8_lsof.htm命令。

该命令描述了哪些进程正在使用哪些文件描述符。请记住,端口 7085 上的任何内容都将具有自己的文件描述符,您可以使用它来追溯使用它的进程。

我会尝试类似的东西:

$ lsof -i :7085

希望它可以提供帮助。

于 2012-11-06T16:29:06.743 回答
0

我从这里得到了他的剧本。登录到 Solaris 系统。打开 vi 编辑器。进入插入模式。复制并粘贴此脚本。保存文件并命名为 PCP。授予执行权限。使用 -p 或 -P swithc 运行此脚本。它将提供带有 PID、PROCESS 名称和端口的输出。

确保您需要在 ksh shell 中执行它。

PCP 是一个脚本,它使管理员能够查看 Solaris 系统上正在使用的开放 TCP 端口。它将端口映射到 PID,反之亦然。它接受通配符,并且一目了然地显示所有打开的端口及其相应的 PID。很好的脚本提供了非常好的输出。就试一试吧。

例子: #pcp -p PORT_NUMBER or #pcp -P PROCESS_ID

#!/usr/bin/ksh
#
# # PCP (PID con Port)
# v1.10 08/10/2010 Sam Nelson sam @ unix.ms
#
# If you have a Solaris 8, 9 or 10 box and you can't
# install lsof, try this. It maps PIDS to ports and vice versa.
# It also shows you which peers are connected on which port.
# Wildcards are accepted for -p and -P options.
#
# Many thanks Daniel Trinkle trinkle @ cs.purdue.edu
# for the help, much appreciated.

#
i=0
while getopts :p:P:a opt
do
case "${opt}" in
p ) port="${OPTARG}";i=3;;
P ) pid="${OPTARG}";i=3;;
a ) all=all;i=2;;
esac
done
if [ $OPTIND != $i ]
then
echo >&2 "usage: $0 [-p PORT] [-P PID] [-a] (Wildcards OK) "
exit 1
fi
shift `expr $OPTIND - 1`
if [ "$port" ]
then
# Enter the port number, get the PID
#
port=${OPTARG}
echo "PID\tProcess Name and Port"
echo "_________________________________________________________"
for proc in `ptree -a | awk '/ptree/ {next} {print $1};'`
do
result=`pfiles $proc 2> /dev/null| egrep "port: $port$"`
if [ ! -z "$result" ]
then
program=`ps -fo comm= -p $proc`
echo "$proc\t$program\t$port\n$result"
echo "_________________________________________________________"
fi
done
elif [ "$pid" ]
then
# Enter the PID, get the port
#
pid=$OPTARG
# Print out the information
echo "PID\tProcess Name and Port"
echo "_________________________________________________________"
for proc in `ptree -a | awk '/ptree/ {next} $1 ~ /^'"$pid"'$/ {print $1};'`
do
result=`pfiles $proc 2> /dev/null| egrep port:`
if [ ! -z "$result" ]
then
program=`ps -fo comm= -p $proc`
echo "$proc\t$program\n$result"
echo "_________________________________________________________"
fi
done
elif [ $all ]
then
# Show all PIDs, Ports and Peers
#
echo "PID\tProcess Name and Port"
echo "_________________________________________________________"
for proc in `ptree -a | sort -n | awk '/ptree/ {next} {print $1};'`
do
out=`pfiles $proc 2>/dev/null| egrep "port:"`
if [ ! -z "$out" ]
then
name=`ps -fo comm= -p $proc`
echo "$proc\t$name\n$out"
echo "_________________________________________________________"
fi
done
fi
exit 0
于 2012-11-07T07:11:55.670 回答