How to check listening ports on MacOS
时间:2021-03-18 09:55:30
收藏:0
阅读:56
On macOS Big Sur and later, use this command:
sudo lsof -i -P | grep LISTEN
or to just see just IPv4:
sudo lsof -nP -i4TCP:$PORT | grep LISTEN原文:https://www.cnblogs.com/mouseleo/p/14553245.html
评论(0)