功能說(shuō)明:強(qiáng)大的網(wǎng)絡(luò)工具
linux nc (netcat)最新版源碼下載及nc命令詳解
http://netcat.sourceforge.net/
擴(kuò)展資料一: nc簡(jiǎn)單使用示例
簡(jiǎn)單用法舉例
擴(kuò)展資料二:命令linux nc命令傳輸文件
nc到底干嘛用的我不多描述,今天主要講下用nc傳輸文件。由于公司的設(shè)備sudo后沒有ssh,scp等遠(yuǎn)程接入命令,或host.deny里面設(shè)置了ssh的deny,不管怎樣的原因。我今天跨過(guò)大家常用的scp,來(lái)說(shuō)明下一個(gè)更有用的輕量級(jí)工具,nc的另一個(gè)強(qiáng)大的功—文件傳輸。
擴(kuò)展資料三: linux nc (NetCat)命令詳解
一、版本
通常的Linux發(fā)行版中都帶有NetCat(簡(jiǎn)稱nc),甚至在拯救模式光盤中也由busybox提供了簡(jiǎn)版的nc工具。但不同的版本,其參數(shù)的使用略有差異。
NetCat 官方地址:http://netcat.sourceforge.net/
二、常見使用
1、遠(yuǎn)程拷貝文件
從server1拷貝文件到server2上。需要先在server2上,用nc激活監(jiān)聽,server2上運(yùn)行:
[root@hatest2 tmp]# nc -lp 1234 > install.log
server1上運(yùn)行:
引用
[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、克隆硬盤或分區(qū)
操作與上面的拷貝是雷同的,只需要由dd獲得硬盤或分區(qū)的數(shù)據(jù),然后傳輸即可。
克隆硬盤或分區(qū)的操作,不應(yīng)在已經(jīng)mount的的系統(tǒng)上進(jìn)行。所以,需要使用安裝光盤引導(dǎo)后,進(jìn)入拯救模式(或使用Knoppix工具光盤)啟動(dòng)系統(tǒng)后,在server2上進(jìn)行類似的監(jiān)聽動(dòng)作:
server1上執(zhí)行傳輸,即可完成從server1克隆sda硬盤到server2的任務(wù):
※完成上述工作的前提,是需要落實(shí)光盤的拯救模式支持服務(wù)器上的網(wǎng)卡,并正確配置IP。
3、端口掃描
可以執(zhí)行:
引用
hatest2 [192.168.228.222] 22 (ssh) open
4、保存Web頁(yè)面
5、模擬HTTP Headers
引用
[root@hatest1 ~]# ncwww.linuxso.com 80
GET / HTTP/1.1
Host: ispconfig.org
Referrer: mypage.com
User-Agent: my-browser
HTTP/1.1 200 OK
Date: Tue, 16 Dec 2008 07:23:24 GMT
Server: 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.8
Set-Cookie: PHPSESSID=bbadorbvie1gn037iih6lrdg50; path=/
Expires: 0
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Cache-Control: private, post-check=0, pre-check=0, max-age=0
Set-Cookie: oWn_sid=xRutAY; expires=Tue, 23-Dec-2008 07:23:24 GMT; path=/
Vary: Accept-Encoding
Transfer-Encoding: chunked
Content-Type: text/html
[…]
在nc命令后,輸入紅色部分的內(nèi)容,然后按兩次回車,即可從對(duì)方獲得HTTP Headers內(nèi)容。
6、聊天
nc還可以作為簡(jiǎn)單的字符下聊天工具使用,同樣的,server2上需要啟動(dòng)監(jiān)聽:
[root@hatest2 tmp]# nc -lp 1234
server1上傳輸:
[root@hatest1 ~]# nc 192.168.228.222 1234
這樣,雙方就可以相互交流了。使用Ctrl+D正常退出。
7、傳輸目錄
從server1拷貝nginx-0.6.34目錄內(nèi)容到server2上。需要先在server2上,用nc激活監(jiān)聽,server2上運(yùn)行:
引用
[root@hatest2 tmp]# nc -l 1234 |tar xzvf -
server1上運(yùn)行:
引用
[root@hatest1 ~]# ll -d nginx-0.6.34
drwxr-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、參數(shù)簡(jiǎn)介
這僅是一個(gè)1.10版本的簡(jiǎn)單說(shuō)明,詳細(xì)的參數(shù)使用還是需要看man:
引用
想要連接到某處: nc [-options] hostname port[s] [ports] …
綁定端口等待連接: nc -l -p port [-options] [hostname] [port]
參數(shù):
-g gateway source-routing hop point[s], up to 8
-G num source-routing pointer: 4, 8, 12, …
-h 幫助信息
-i secs 延時(shí)的間隔
-l 監(jiān)聽模式,用于入站連接
-n 指定數(shù)字的IP地址,不能用hostname
-o file 記錄16進(jìn)制的傳輸
-p port 本地端口號(hào)
-r 任意指定本地及遠(yuǎn)程端口
-s addr 本地源地址
-u UDP模式
-v 詳細(xì)輸出——用兩個(gè)-v可得到更詳細(xì)的內(nèi)容
-w secs timeout的時(shí)間
-z 將輸入輸出關(guān)掉——用于掃描時(shí),其中端口號(hào)可以指定一個(gè)或者用lo-hi式的指定范圍。
三、版本差異
不用系統(tǒng)上提供的nc版本會(huì)有說(shuō)不同,其提供的參數(shù)使用方法也略有差異。
例如,紅旗Asianux 3.0 SP1拯救光盤上的版本是供使用的參數(shù)僅有一部分:
引用
BusyBox 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系統(tǒng)中提供的nc版本則是1.84的,按上面的參數(shù)用法寫會(huì)執(zhí)行不了:
引用
[root@ftpserver ~]# rpm -q nc
nc-1.84-10
[root@ftpserver ~]# nc -lp 1234
usage: 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文檔,可見在這個(gè)版本中,-l是不能與-s、-p、-z一起使用的,-w參數(shù)也會(huì)被忽略,所以,正確的用法是:
[root@ftpserver tmp]# nc -l 1234
四、用在腳本中
nc每次啟動(dòng)監(jiān)聽后,都會(huì)在客戶端連接完成并退出的同時(shí),服務(wù)端一同退出。所以,如果需要不斷的使用nc進(jìn)行數(shù)據(jù)傳輸,需要在腳本中使用循環(huán)。利用nc實(shí)現(xiàn)更多的功能,可參考其rpm提供的參考腳本:
引用
/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