在 Mac 上可以使用 ping 命令来检查与另一台计算机或网络设备的连通性。要 ping 一个端口,你需要使用另一个命令 nc(也称为 netcat)。
例如,假设你想要 ping 端口 8080(通常用于 HTTP 代理服务器),你可以使用以下命令:
nc -vz localhost 8080
如果端口 8080 处于打开状态,你将会看到类似以下内容的输出:
Connection to localhost 8080 port [tcp/http-alt] succeeded!
如果端口没有打开,你将会看到类似以下内容的输出:
nc: connect to localhost port 8080 (tcp) failed: Connection refused