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的主要内容,如果未能解决你的问题,请参考以下文章

linux 命令之nc

Linux之nc命令

Linux之nc命令(连接与扫描指定端口监测服务端口的使用情况)解析详解实例邮件告警

Linux系统中mount和nc命令详细使用方法

安卓实训作孽之Linux命令手册

linux怎么使用nc命令来发送一串使用udp协议的数据?或者不是NC也可以的命令