linux 命令之nc
Posted i-shu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 命令之nc相关的知识,希望对你有一定的参考价值。
nc使用示例
端口扫描
nc -v -w 2 192.168.2.34 -z 21-24
nc: connect to 192.168.2.34 port 21 (tcp) failed: Connection refused
Connection to 192.168.2.34 22 port [tcp/ssh] succeeded!
nc: connect to 192.168.2.34 port 23 (tcp) failed: Connection refused
nc: connect to 192.168.2.34 port 24 (tcp) failed: Connection refused
从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
简单聊天工具
在192.168.2.34上: nc -l 1234
在192.168.2.33上: nc 192.168.2.34 1234
这样,双方就可以相互交流了。使用ctrl+C(或D)退出。
用nc命令操作memcached
1)存储数据:printf “set key 0 10 6rnresultrn” |nc 192.168.2.34 11211
参考:https://blog.csdn.net/wuxintdrh/article/details/81750281
以上是关于linux 命令之nc的主要内容,如果未能解决你的问题,请参考以下文章