nc [选项] [主机] [端口(s)]
-l 开启 listen 模式
-c 执行命令
nc 与 netcat、ncat 同义。
当作服务器或客户端
$ nc -l 1234 # 服务器$ nc 127.0.0.1 1234 # 客户端
端口扫描
$ nc -z www.baidu.com 80-81
端口转发
$ nc -l 80 -c "nc www.baidu.com 80" # 将发往本机 80 端口的数据转发给 google.com 的 80 端口
数据传输
文件从 client 传到 server;反过来也可以。
$ nc -l 1234 > filename.out$ nc host.example.com 1234 < filename.in
参考
man nc
比 man nc 多讲了些不常用的参数。