使用 Telnet 測試 TCP Port

想知道遠端 port 是否由開通,使用 telnet 測試就對了!

安裝 Telnet

在 Mac 下使用 Homebrew 安裝

1
$ brew install telnet

測試遠端 port

1
2
3
4
5
$ telnet 172.28.7.100 80

Trying 172.28.7.100...
Connected to 172.28.7.100.
Escape character is '^]'.

遠端連線成功,表示 80 port 已開啟。

1
2
3
4
5
$ telnet 172.28.7.100 25

Trying 172.28.7.100...
telnet: connect to address 172.28.7.100: Connection refused
telnet: Unable to connect to remote host

遠端拒絕連線,表示 25 port 未開啟。

Reference