如何确定Ubuntu 8.04上是否有端口可用?

前端之家收集整理的这篇文章主要介绍了如何确定Ubuntu 8.04上是否有端口可用?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否有任何命令我可以从bash运行,它会告诉我端口是否已打开?
使用“netstat”检查当前使用的端口.
netstat -antp

Proto Recv-Q Send-Q Local Address        Foreign Address   State    PID/Program name
tcp        0      0 xxx.xxx.xxx.xxx      0.0.0.0:*         LISTEN   16297/named     
tcp        0      0 xxx.xxx.xxx.xxx:53   0.0.0.0:*         LISTEN   16297/named     
tcp        0      0 xxx.xxx.xxx.xxx:53   0.0.0.0:*         LISTEN   16297/named     
tcp        0      0 127.0.0.1:53         0.0.0.0:*         LISTEN   16297/named     
原文链接:https://www.f2er.com/ubuntu/349087.html

猜你在找的Ubuntu相关文章