列出 /dev/tcp/localhost/ 中所有打开的套接字

列出 /dev/tcp/localhost/ 中所有打开的套接字

是否可以列出/dev/tcp/localhost/Linux 机器上所有打开的套接字?

我想列出以下命令将返回的所有套接字0

timeout 2 bash -c "cat < /dev/null > /dev/tcp/localhost/8014"

答案1

要列出所有接受连接的 TCP 套接字,您只需使用netstat -nlt

相关内容