2022年1月7日 星期五

使用powershell,測試 TCP 連線,比 Telnet 更好的方法

Windows powershell 測試 TCP 連線,比 Telnet 更好的方法。

過去以來,要測試某個 IP 的某個 Port 通不通,我最常用的做法是開 Cmd (命令提示字元),下指令 telnet server_ip port_no,如果失敗會得到 "無法開啟到主機的連線 / Could not open connection to the host" 的錯誤訊息,如果成功則會畫面一黑等你輸入指令:

用這種做法檢測 TCP 連線還算簡便,美中不足之處是成功是畫面清空一面黑,只能肉眼觀察沒法擷圖當作呈堂證供,而進入輸入指令模式,想結束得 Ctrl-[ 輸入 quit 或設法讓伺服器主動斷線。

最近我學到更好的 TCP Port 檢測方法 - PowerShell Test-NetConnection。

資料來源: blog.darkthread.net
 

PS C:\> Test-NetConnection -computerName www.google.com -Port 9527
警告: TCP connect to (172.217.160.68 : 9527) failed


ComputerName : www.google.com
RemoteAddress : 172.217.160.68
RemotePort : 9527
InterfaceAlias : 乙太網路
SourceAddress : 192.168.1.155
PingSucceeded : True
PingReplyDetails (RTT) : 3 ms
TcpTestSucceeded : False

 

PS C:\> Test-NetConnection -computerName www.google.com -Port 443


ComputerName : www.google.com
RemoteAddress : 172.217.160.68
RemotePort : 443
InterfaceAlias : 乙太網路
SourceAddress : 192.168.1.155
TcpTestSucceeded : True

 

PS C:\> Test-NetConnection -computerName 172.217.160.68 -Port 443


ComputerName : 172.217.160.68
RemoteAddress : 172.217.160.68
RemotePort : 443
InterfaceAlias : 乙太網路
SourceAddress : 192.168.1.155
TcpTestSucceeded : True

 

 

沒有留言:

TeraTerm是一款開放原始碼的遠程客戶端操作軟體

因為工作需求,有時我們需要從遠端登入某設備或是主機,又或者因為故障排除,需要透過serial port連入某設備進行檢查和操控。 偶然看到某SI的工程師,使用這個工具,想說也來使用看看。心中相信這應該是好工具,人家才會用它。 我自己通常都是簡單使用的話用 putty,想要用好一...