赞
踩
转载自:http://blog.csdn.net/zheng0518/article/details/41909127
Netcat 或者叫 nc 是 Linux 下的一个用于调试和检查网络工具包。可用于创建 TCP/IP 连接,最大的用途就是用来处理 TCP/UDP 套接字。
$ nc -l 2389
然后可以使用客户端模式来连接到 2389 端口:
$ nc localhost 2389
使用 Netcat 来传输文件
a.启动监听: nc -l 9999 > tmp.txt
b.传送文件: nc localhost 9999 < testfile
或则 cat testfile | nc localhost 2389
c.查看文件: cat tmp.txt
强制 Netcat 服务器端保持启动状态
通过 -k 参数来控制让服务器不会因为客户端的断开连接而退出。
$ nc -k -l 2389
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。