mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 11:24:56 +02:00
439 B
439 B
netstat
显示与网络相关的信息,如打开的连接、打开的套接字端口等.
- 列出所有端口:
netstat -a
- 列出所有被侦听端口:
netstat -l
- 列出侦听的TCP端口:
netstat -t
- 显示监听给定协议监听的PID和程序名:
netstat -p {{协议}}
- 连续列出信息(这条我电脑里netstat是不支持的.谁明白麻烦提交pr!):
netstat -c
- 打印路由表:
netstat -nr