大家都知道 Ping 是一個很好用的測試網路工具,但是他是基於 ICMP 協定,在嚴謹的網路環境中都會拒絕 ICMP 回應,使得無法測得主機是否回應
這時候就可以使用 TCP / UDP 的方式來測試網路工具,也就是 Tcpping 這個工具,可以直接繞過多數 L3 防火牆進行檢測
Tcpping 運作方式:
- Client: send TCP SYN (default 80)
- Server: response TCP ACK (success)
- Server: response TCP RST (fail)
Tcpping 使用的是『半開連接技術』,依賴已經擁有此技術的 tcptraceroute 工具
TCPPING 安裝
安裝相依工具 tcptraceroute
$ yum -y install tcptraceroute
安裝 Tcpping
$ wget http://www.vdberg.org/~richard/tcpping
使用 Tcpping
$ chmod +x tcpping $ ./tcpping www.google.com #指定Port $ ./tcpping www.google.com 25 #參數 -c 可以配合 gnuplot script 製成圖表 $ ./tcpping -c www.google.com
官網有提到 gnuplot script,下一篇來研究如何搭配使用