linux netstat 查看端口命令
时间: 2024-01-06 12:25:48 浏览: 197
Linux下用netstat查看网络状态、端口状态
以下是几个常用的Linux netstat命令来查看端口的方法:
1. 查看指定端口是否被占用:
```shell
netstat -an | grep <port>
```
其中,`<port>`是你要查看的端口号。
2. 查看服务器上所有服务及其对应的端口:
```shell
netstat -lanp
```
3. 查看UDP所有端口:
```shell
netstat -nupl
```
4. 显示所有端口的统计信息:
```shell
netstat -s
```
5. 显示TCP端口的统计信息:
```shell
netstat -st
```
6. 显示UDP端口的统计信息:
```shell
netstat -su
```
请注意,以上命令需要在Linux终端中执行。你可以根据需要选择适合你的情况的命令来查看端口信息。
阅读全文