跳转至

nc 命令


2014-01-14 by dongnan

举个栗子

测试upd端口,向rsyslog监听的514端口发送信息:

# 客户端发送数据包
echo "wow"|  nc -u localhost 514

验证
tail -n1 /var/log/messages
May 25 17:45:33 wow

扫描端口

nc -w 2 -nz 172.27.233.43 1-65535

Connection to 172.27.233.43 22 port [tcp/*] succeeded!
Connection to 172.27.233.43 53 port [tcp/*] succeeded!
Connection to 172.27.233.43 80 port [tcp/*] succeeded!
Connection to 172.27.233.43 111 port [tcp/*] succeeded!
Connection to 172.27.233.43 11211 port [tcp/*] succeeded!
Connection to 172.27.233.43 38521 port [tcp/*] succeeded!

注意,1-65535 表示端口范围。

命令帮助

NAME
     nc — arbitrary TCP and UDP connections and listens

SYNOPSIS
     nc [-46bCDdFhklNnrStUuvZz] [-I length] [-i interval] [-M ttl] 
        [-m minttl] [-O length] [-P proxy_username] [-p source_port] 
        [-q seconds] [-s source] [-T keyword] [-V rtable] [-W recvlimit] [-w timeout]
        [-X proxy_protocol] [-x proxy_address[:port]] [destination] [port]

DESCRIPTION
     The nc (or netcat) utility is used for just about anything under the sun involving TCP, UDP, or UNIX-domain sockets...

     Common uses include:

           •   simple TCP proxies
           •   shell-script based HTTP clients and servers
           •   network daemon testing
           •   a SOCKS or HTTP ProxyCommand for ssh(1)
           •   and much, much more

    -i   <延迟秒数>   设置时间间隔,以便传送信息及扫描通信端口。
    -l   使用监听模式,管控传入的资料。
    -n   直接使用IP地址,而不通过域名服务器。
    -p   <通信端口>   设置本地主机使用的通信端口。
    -r   乱数指定本地与远端主机的通信端口。
    -s   <来源位址>   设置本地主机送出数据包的IP地址。
    -u   使用UDP传输协议。
    -v   显示指令执行过程。
    -w   <超时秒数>   设置等待连线的时间。
    -z   使用0输入/输出模式,只在扫描通信端口时使用



回到页面顶部