来自 ss 的扩展套接字信息

来自 ss 的扩展套接字信息

运行以下命令可以为我提供扩展的套接字信息。

$ss -tuen
Netid State      Recv-Q Send-Q                                   Local Address:Port                                       Peer Address:Port   
tcp   CLOSE-WAIT 1      0                                                  ::1:51826                                               ::1:ipp      ino:19094 sk:00000002 -->

如果我理解正确的话,ino:19094 是套接字的 inode 编号。以下是什么意思?

sk:00000002 -->

答案1

这部分输出是由于选项-e。从中man ss你可以看到:

-e、--扩展

Show detailed socket information. The output format is:
  uid:<uid_number> ino:<inode_number> sk:<cookie>
  <uid_number>
    the user id the socket belongs to
  <inode_number>
    the socket's inode number in VFS
  <cookie>
    an uuid of the socket

所以这意味着它是套接字的通用唯一标识符(uuid)。

相关内容