tldr/pages.zh/osx/netstat.md
Owen Voke 8f641ae8b5 Update pages.zh/osx/netstat.md
netstat: add missing curly braces

Co-Authored-By: wizarot <wizarot@qq.com>
2019-04-01 21:57:41 +01:00

439 B

netstat

显示与网络相关的信息,如打开的连接、打开的套接字端口等.

  • 列出所有端口:

netstat -a

  • 列出所有被侦听端口:

netstat -l

  • 列出侦听的TCP端口:

netstat -t

  • 显示监听给定协议监听的PID和程序名:

netstat -p {{协议}}

  • 连续列出信息(这条我电脑里netstat是不支持的.谁明白麻烦提交pr!):

netstat -c

  • 打印路由表:

netstat -nr