linux nc命令<netcat> 功能說明:功能強大的網路工具語 法:nc [-hlnruz][-g<網關...>][-G<指向器數目>][-i<延遲秒數>][-o<輸出檔案>][-p<通訊連接埠>][-s<來源位址>][-v...][-w<逾時秒數>][主機名稱][通訊連接埠...]參 數: -g<網關> 設定路由器躍程通訊網關,最丟哦可設定8個。 -G<指向器數目> 設定來源路由指向器,其數值為4的倍數。 -h 線上協助。 -i<延遲秒數> 設定時間間隔,以便傳送資訊及掃描通訊連接埠。 -l 使用監聽模式,管控傳入的資料。 -n 直接使用IP地址,而不通過網域名稱伺服器。 -o<輸出檔案> 指定檔案名稱,把往來傳輸的資料以16進位字碼傾倒成該檔案儲存。 -p<通訊連接埠> 設定本地主機使用的通訊連接埠。 -r 亂數指定本地與遠端主機的通訊連接埠。 -s<來源位址> 設定本地主機送出資料包的IP地址。 -u 使用UDP傳輸協議。 -v 顯示指令執行過程。 -w<逾時秒數> 設定等待連線的時間。 -z 使用0輸入/輸出模式,只在掃描通訊連接埠時使用。 擴充資料一: nc簡單使用樣本 簡單用法舉例1)連接埠掃描# nc -v -w 2 192.168.2.34 -z 21-24nc: connect to 192.168.2.34 port 21 (tcp) failed: Connection refusedConnection to 192.168.2.34 22 port [tcp/ssh] succeeded!nc: connect to 192.168.2.34 port 23 (tcp) failed: Connection refusednc: connect to 192.168.2.34 port 24 (tcp) failed: Connection refused 2)從192.168.2.33拷貝檔案到192.168.2.34在192.168.2.34上: nc -l 1234 > test.txt在192.168.2.33上: nc 192.168.2.34 < test.txt 3)簡單聊天工具在192.168.2.34上: nc -l 1234在192.168.2.33上: nc 192.168.2.34 1234這樣,雙方就可以相互交流了。使用ctrl+C(或D)退出。 3.用nc命令操作memcached1)儲存資料:printf “set key 0 10 6rnresultrn” |nc 192.168.2.34 112112)擷取資料:printf “get keyrn” |nc 192.168.2.34 112113)刪除資料:printf “delete keyrn” |nc 192.168.2.34 112114)查看狀態:printf “statsrn” |nc 192.168.2.34 112115)類比top命令查看狀態:watch “echo stats” |nc 192.168.2.34 112116)清空緩衝:printf “flush_allrn” |nc 192.168.2.34 11211 (小心操作,清空了緩衝就沒了) nc -l 1234 nc 127.0.0.1 1234在連接埠1234建立串連,互相發送輸入 nc -p 1234 -w 5 host.example.com 80建立從本地1234連接埠到host.example.com的80連接埠串連,5秒逾時nc -u host.example.com 53u為UDP串連 echo -n "GET / HTTP/1.0"r"n"r"n" | nc host.example.com 80串連到主機並執行 nc -v -z host.example.com 70-80掃描連接埠(70到80),可指定範圍。-v輸出詳細資料。 擴充資料二:命令linux nc 命令傳輸檔案 nc到底幹嘛用的我不多描述,今天主要講下用nc傳輸檔案。由於公司的裝置sudo後沒有ssh,scp等遠程接入命令,或host.deny裡面設定了ssh的deny,不管怎樣的原因。我今天跨過大家常用的scp,來說明下一個更有用的輕量級工具,nc的另一個強大的功---檔案傳輸。 範例如下: 目的主機監聽 nc -l 監聽連接埠 > 要接收的檔案名稱nc -l 4444 > cache.tar.gz 源主機發起請求nc 目的主機ip 目的連接埠 nc 192.168.0.85 4444 netstat 如下[root@localhost jiangbao]# netstat -tpln tcp 0 0 0.0.0.0:4444 0.0.0.0:* LISTEN 18166/nc 英文描述如下 DATA TRANSFERStart by using nc to listen on a specific port, with output captured into a file: $ nc -l 1234 > filename.outUsing a second machine, connect to the listening nc process, feeding it the file which is to be transferred: $ nc host.example.com 1234 擴充資料三: linux nc (NetCat) 命令詳解,這篇文章對nc的介紹非常詳細,和以上資料有部分重複. 一、版本 通常的Linux發行版中都帶有NetCat(簡稱nc),甚至在拯救模式光碟片中也由busybox提供了簡版的nc工具。但不同的版本,其參數的使用略有差異。 [root@hatest1 ~]# cat /etc/asianux-releaseAsianux release 2.0 (Trinity SP2)[root@hatest1 ~]# cat /etc/redflag-releaseRed Flag DC Server release 5.0 (Trinity SP2)[root@hatest1 ~]# type -a ncnc is /usr/bin/nc[root@hatest1 ~]# rpm -q ncnc-1.10-22建議在使用前,先用man nc看看協助。這裡以紅旗DC Server 5.0上的1.10版本進行簡單說明。假設兩伺服器資訊: 引用 server1: 192.168.228.221server2: 192.168.228.222 二、常見使用 1、遠程拷貝檔案 從server1拷貝檔案到server2上。需要先在server2上,用nc啟用監聽,server2上運行: [root@hatest2 tmp]# nc -lp 1234 > install.logserver1上運行: 引用 [root@hatest1 ~]# ll install.log-rw-r–r– 1 root root 39693 12月 20 2007 install.log[root@hatest1 ~]# nc -w 1 192.168.228.222 1234 < install.log 2、複製硬碟或分區 操作與上面的拷貝是雷同的,只需要由dd獲得硬碟或分區的資料,然後傳輸即可。複製硬碟或分區的操作,不應在已經mount的的系統上進行。所以,需要使用安裝光碟片引導後,進入拯救模式(或使用Knoppix工具光碟片)啟動系統後,在server2上進行類似的監聽動作: # nc -l -p 1234 | dd of=/dev/sda server1上執行傳輸,即可完成從server1複製sda硬碟到server2的任務: # dd if=/dev/sda | nc 192.168.228.222 1234 ※完成上述工作的前提,是需要落實光碟片的拯救模式支援伺服器上的網卡,並正確配置IP。 3、連接埠掃描 可以執行: 引用 # nc -v -w 1 192.168.228.222 -z 1-1000hatest2 [192.168.228.222] 22 (ssh) open 4、儲存Web頁面 # while true; do nc -l -p 80 -q 1 < somepage.html; done 5、類比HTTP Headers 引用 [root@hatest1 ~]# nc www.linuxso.com 80GET / HTTP/1.1Host: ispconfig.orgReferrer: mypage.comUser-Agent: my-browser HTTP/1.1 200 OKDate: Tue, 16 Dec 2008 07:23:24 GMTServer: Apache/2.2.6 (Unix) DAV/2 mod_mono/1.2.1 mod_python/3.2.8 Python/2.4.3 mod_perl/2.0.2 Perl/v5.8.8Set-Cookie: PHPSESSID=bbadorbvie1gn037iih6lrdg50; path=/Expires: 0Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0Pragma: no-cacheCache-Control: private, post-check=0, pre-check=0, max-age=0Set-Cookie: oWn_sid=xRutAY; expires=Tue, 23-Dec-2008 07:23:24 GMT; path=/Vary: Accept-EncodingTransfer-Encoding: chunkedContent-Type: text/html[......]在nc命令後,輸入紅色部分的內容,然後按兩次斷行符號,即可從對方獲得HTTP Headers內容。 6、聊天 nc還可以作為簡單的字元下聊天工具使用,同樣的,server2上需要啟動監聽: [root@hatest2 tmp]# nc -lp 1234 server1上傳輸: [root@hatest1 ~]# nc 192.168.228.222 1234 這樣,雙方就可以相互交流了。使用Ctrl+D正常退出。 7、傳輸目錄 從server1拷貝nginx-0.6.34目錄內容到server2上。需要先在server2上,用nc啟用監聽,server2上運行: 引用 [root@hatest2 tmp]# nc -l 1234 |tar xzvf -server1上運行: 引用 [root@hatest1 ~]# ll -d nginx-0.6.34drwxr-xr-x 8 1000 1000 4096 12-23 17:25 nginx-0.6.34[root@hatest1 ~]# tar czvf – nginx-0.6.34|nc 192.168.228.222 1234 8、參數簡介 這僅是一個1.10版本的簡單說明,詳細的參數使用還是需要看man: 引用 想要串連到某處: nc [-options] hostname port[s] [ports] …綁定連接埠等待串連: nc -l -p port [-options] [hostname] [port]參數:-g gateway source-routing hop point[s], up to 8-G num source-routing pointer: 4, 8, 12, …-h 協助資訊-i secs 延時的間隔-l 監聽模式,用於入站串連-n 指定數位IP地址,不能用hostname-o file 記錄16進位的傳輸-p port 本地連接埠號碼-r 任意指定本地及遠程連接埠-s addr 本地源地址-u UDP模式-v 詳細輸出——用兩個-v可得到更詳細的內容-w secs timeout的時間-z 將輸入輸出關掉——用於掃描時,其中連接埠號碼可以指定一個或者用lo-hi式的指定範圍。 三、版本差異 不用系統上提供的nc版本會有說不同,其提供的參數使用方法也略有差異。例如,紅旗Asianux 3.0 SP1拯救光碟片上的版本是供使用的參數僅有一部分: 引用 # nc -hBusyBox v1.2.0 (2008.04.14-01:35+0000) multi-call binary Usage: nc [OPTIONS] [IP] [port] Netcat opens a pipe to IP:port Options: -l listen mode, for inbound connects -p PORT local port number -i SECS delay interval for lines sent -e PROG program to exec after connect (dangerous!) -w SECS timeout for connects and final net reads而在Asianux 3.0 SP1系統中提供的nc版本則是1.84的,按上面的參數用法寫會執行不了: 引用 [root@ftpserver ~]# rpm -q ncnc-1.84-10[root@ftpserver ~]# nc -lp 1234usage: nc [-46DdhklnrStUuvzC] [-i interval] [-p source_port] [-s source_ip_address] [-T ToS] [-w timeout] [-X proxy_version] [-x proxy_address[:port]] [hostname] [port[s]]講查看man文檔,可見在這個版本中,-l是不能與-s、-p、-z一起使用的,-w參數也會被忽略,所以,正確的用法是: [root@ftpserver tmp]# nc -l 1234 四、用在指令碼中 nc每次啟動監聽後,都會在用戶端串連完成並退出的同時,服務端一同退出。所以,如果需要不斷的使用nc進行資料轉送,需要在指令碼中使用迴圈。利用nc實現更多的功能,可參考其rpm提供的參考指令碼: 引用 # rpm -qd nc/usr/share/doc/nc-1.10/Changelog/usr/share/doc/nc-1.10/README/usr/share/doc/nc-1.10/scripts/README/usr/share/doc/nc-1.10/scripts/alta/usr/share/doc/nc-1.10/scripts/bsh/usr/share/doc/nc-1.10/scripts/dist.sh/usr/share/doc/nc-1.10/scripts/irc /usr/share/doc/nc-1.10/scripts/iscan/usr/share/doc/nc-1.10/scripts/ncp/usr/share/doc/nc-1.10/scripts/probe/usr/share/doc/nc-1.10/scripts/web/usr/share/doc/nc-1.10/scripts/webproxy/usr/share/doc/nc-1.10/scripts/webrelay/usr/share/doc/nc-1.10/scripts/websearch/usr/share/man/man1/nc.1.gz