netstat -tlnp 的作用和含义是什么?我读过 netstat 的手册页,但只找到了 -l 的答案,而没有找到其他选项
答案1
sudo netstat -tlnp
# t : Show TCP sockets only
# l : Show LISTENING sockets only
# n : Show numerical addresses
# p : Show the PID and name of the program to which each socket belongs
有关详细信息,请参阅手册页
http://manpages.ubuntu.com/manpages/bionic/man8/netstat.8.html