[20171201]nc快速判斷埠是否開啟.txt
[20171201]nc快速判斷埠是否開啟.txt
--//nc快速判斷埠是否開啟,例子:
$ echo exit | nc -w 1 -n -v 192.168.xxx.xx 1521
Connection to 192.168.xxx.xx 1521 port [tcp/*] succeeded!
$ echo exit | nc -w 1 -n -v 192.168.xxx.xx 22
Connection to 192.168.xxx.xx 22 port [tcp/*] succeeded!
SSH-1.99-OpenSSH_3.9p1
Protocol mismatch.
$ echo exit | nc -w 1 -n -v 192.168.xxx.xx 80
Connection to 192.168.xxx.xx 80 port [tcp/*] succeeded!
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>501 Method Not Implemented</title>
</head><body>
<h1>Method Not Implemented</h1>
exit to / not supported.
<hr>
<address>Apache/2.0.52 (Red Hat) Server at 192.168.xxx.xx Port 80</address>
</body></html>
$ echo quit | nc -w 1 -n -v 192.168.xxx.xx 23
Connection to 192.168.xxx.xx 23 port [tcp/*] succeeded!
????
--//關閉23埠測試:
# /etc/rc.d/init.d/xinetd restart
Stopping xinetd: [ OK ]
Starting xinetd: [ OK ]
$ echo quit | nc -w 1 -n -v 192.168.xxx.xx 23
nc: connect to 192.168.xxx.xx port 23 (tcp) failed: Connection refused
--//其中-w引數設定超時.
-w timeout
If a connection and stdin are idle for more than timeout seconds, then the connection is silently closed. The -w
flag has no effect on the -l option, i.e. nc will listen forever for a connection, with or without the -w flag. The
default is no timeout.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2148121/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Linux命令--nc (測試伺服器埠是否開啟)Linux伺服器
- [20190211]簡單測試埠是否開啟.txt
- [20190211]簡單測試埠是否開啟(補充).txt
- iOS開發-如何判斷手機是否開啟了放大模式iOS模式
- 判斷自身開方是否是整數
- ASP.NET CORE中判斷是否移動端開啟網頁ASP.NET網頁
- 判斷字串是否唯一字串
- python判斷是否為listPython
- 判斷URL字串是否合法字串
- 判斷字串是否為空字串
- python 判斷是否為中文Python
- ios 判斷使用者是否開啟許可權---並跳轉設iOS
- 如何檢視遠端埠是否開啟
- 判斷一個物件是否為空物件,判斷一個物件中是否有空值物件
- 判斷協議是否出網協議
- QJsonObject判斷欄位是否存在JSONObject
- MySQL判斷表名是否存在MySql
- Delphi Variant 判斷是否為空
- java判斷物件是否為空Java物件
- jQuery 判斷元素是否隱藏jQuery
- mysql如何判斷是否為空MySql
- js判斷字串是否為空JS字串
- postgresql如何判斷表是否存在SQL
- JavaScript 判斷是否是陣列JavaScript陣列
- 判斷網路是否連線
- JavaScript 判斷函式是否存在JavaScript函式
- Activiti判斷流程是否結束
- python 判斷檔案是否存在Python
- java判斷字串是否為空Java字串
- golang判斷檔案是否存在Golang
- JavaScript判斷字串是否為空JavaScript字串
- js判斷物件是否為空JS物件
- js判斷checkbox是否選中JS
- golang中判斷兩個slice是否相等與判斷值下的 陣列是否相等Golang陣列
- nginx判斷路徑是否含有某個引數做判斷Nginx
- 如何從10億資料中快速判斷是否存在某一個元素
- 如何判斷 JavaScript 物件是否為空?JavaScript物件
- js判斷兩個物件是否相等JS物件
- 如何判斷是否遭到DDOS攻擊