使用 Telnet 測試 TCP Port Posted on 2019-04-10 In development Symbols count in article: Reading time ≈ NaN:aN 想知道遠端 port 是否由開通,使用 telnet 測試就對了! 安裝 Telnet在 Mac 下使用 Homebrew 安裝 1$ brew install telnet 測試遠端 port12345$ telnet 172.28.7.100 80Trying 172.28.7.100...Connected to 172.28.7.100.Escape character is '^]'. 遠端連線成功,表示 80 port 已開啟。 12345$ telnet 172.28.7.100 25Trying 172.28.7.100...telnet: connect to address 172.28.7.100: Connection refusedtelnet: Unable to connect to remote host 遠端拒絕連線,表示 25 port 未開啟。 Reference 使用 Telnet 診斷各種伺服器與網路連線問題 How to use telnet to test connectivity to TCP ports