📌  相关文章
📜  检查端口是否在 ubuntu 中运行 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:40.890000             🧑  作者: Mango

代码示例3
# Any of the following
sudo lsof -i -P -n | grep LISTEN
sudo netstat -tulpn | grep LISTEN
sudo lsof -i:22 # Port
sudo nmap -sTU -O IP-address-Here