> Linux教程 > linux基础 >

查看linux端口号占用情况

1)查看端口占用情况
 
netstat -ntlp|grep 端口号
 
 
 
2)查看某个端口的连接数
 
netstat -antlp |grep 端口号 |wc -l

 
(责任编辑:IT)