1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 13:44:56 +02:00
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

27 lines
439 B
Markdown

# netstat
> 显示与网络相关的信息,如打开的连接、打开的套接字端口等.
- 列出所有端口:
`netstat -a`
- 列出所有被侦听端口:
`netstat -l`
- 列出侦听的TCP端口:
`netstat -t`
- 显示监听给定协议监听的PID和程序名:
`netstat -p {{协议}}`
- 连续列出信息(这条我电脑里netstat是不支持的.谁明白麻烦提交pr!):
`netstat -c`
- 打印路由表:
`netstat -nr`