linux系统上/ proc / self / fd / socket文件的含义是什么,以及如何找到端口

时间:2014-10-08 11:34:53

标签: linux sockets networking

我对以下输出感到困惑:

cd /proc/2045 ; ls -l fd
lrwx------ 1 root root 64 10月  8 19:04 66 -> socket:[294364529]

socket:[294364529]是什么意思?

我想它应该是这个帖子打开的套接字,但这个数字是什么意思?

如何找到与此对应的portUnix socket路径?

谢谢!

1 个答案:

答案 0 :(得分:2)

根据你的例子" 2045"是过程的pid数和" 294364529"是套接字的inode编号。在Linux套接字中使用普通文件操作,这就是为什么它们具有inode编号。

实施例: 假设我在系统套接字中有inode编号4654214。

用netstat:

netstat -alep | egrep -i "Inode|4654214"
Proto Recv-Q Send-Q Local Address           Foreign Address         State       User       Inode       PID/Program name
tcp        0      0 *:9999                  *:*                     LISTEN      root       4654214     10619/nc  

LSOF:

lsof -i | grep "4654214"
nc        10619            root    3u  IPv4 4654214      0t0  TCP *:9999 (LISTEN)

更多原始信息(fot tcp):

 grep -i "4654214" /proc/net/tcp
   5: 00000000:270F 00000000:0000 0A 00000000:00000000 00:00000000 00000000     0        0 4654214 1 cc2c5f00 300 0 0 2 -1 

这是如何获得有关套接字的有用信息的方法。另外看一下ss命令。