Main index | Section 1 | Options |
Common uses include:
The options are as follows:
| |
Forces nc to use IPv4 addresses only. | |
| |
Forces nc to use IPv6 addresses only. | |
| |
Enable debugging on the socket. | |
| |
Do not attempt to read from stdin. | |
| |
Shortcut for " -e 'in ipsec esp/transport//require' -e 'out ipsec esp/transport//require' ", which enables IPsec ESP transport mode in both directions. | |
| |
If IPsec support is available, then one can specify the IPsec policies to be used using the syntax described in ipsec_set_policy(3). This flag can be specified up to two times, as typically one policy for each direction is needed. | |
| |
Pass the first connected socket using
sendmsg(2)
to stdout and exit.
This is useful in conjunction with
| |
| |
Prints out nc help. | |
| |
Specifies the size of the TCP receive buffer. | |
| |
Specifies a delay time interval between lines of text sent and received. Also causes a delay time between connections to multiple ports. | |
| |
Forces
nc
to stay listening for another connection after its current connection
is completed.
It is an error to use this option without the
| |
| |
Used to specify that
nc
should listen for an incoming connection rather than initiate a
connection to a remote host.
It is an error to use this option in conjunction with the
| |
| |
shutdown(2) the network socket after EOF on the input. Some servers require this to finish their work. | |
| |
Do not do any DNS or service lookups on any specified addresses, hostnames or ports. | |
| |
Disables the use of TCP options on the socket, by setting the boolean TCP_NOOPT socket option. | |
| |
Use SCTP instead of the default option of TCP. | |
| |
Specifies the size of the TCP send buffer. | |
| |
Specifies a username to present to a proxy server that requires authentication. If no username is specified then authentication will not be attempted. Proxy authentication is only supported for HTTP CONNECT proxies at present. | |
| |
Specifies the source port
nc
should use, subject to privilege restrictions and availability.
It is an error to use this option in conjunction with the
| |
| |
Specifies that source and/or destination ports should be chosen randomly instead of sequentially within a range or in the order that the system assigns them. | |
| |
Enables the RFC 2385 TCP MD5 signature option. | |
| |
Specifies the IP of the interface which is used to send the packets.
For
Unix Ns -domain
datagram sockets, specifies the local temporary socket file
to create and use so that datagrams can be received.
It is an error to use this option in conjunction with the
| |
| |
Change IPv4 TOS value. toskeyword may be one of critical, inetcontrol, lowdelay, netcontrol, throughput, reliability, or one of the DiffServ Code Points: ef, af11 ... af43, cs0 ... cs7; or a number in either hex or decimal. | |
| |
Causes nc to send RFC 854 DON'T and WON'T responses to RFC 854 DO and WILL requests. This makes it possible to use nc to script telnet sessions. | |
| |
Specifies to use Unix Ns -domain sockets. | |
| |
Use UDP instead of the default option of TCP.
For
Unix Ns -domain
sockets, use a datagram socket instead of a stream socket.
If a
Unix Ns -domain
socket is used, a temporary receiving socket is created in
/tmp
unless the
| |
| |
Set the routing table ("FIB") to be used. | |
| |
Have nc give more verbose output. | |
| |
Connections which cannot be established or are idle timeout after
timeout
seconds.
The
| |
| |
Requests that nc should use the specified protocol when talking to the proxy server. Supported protocols are "4" (SOCKS v.4), "5" (SOCKS v.5) and "connect" (HTTPS proxy). If the protocol is not specified, SOCKS version 5 is used. | |
| |
Specifies that
nc
should just scan for listening daemons, without sending any data to them.
It is an error to use this option in conjunction with the
| |
destination
can be a numerical IP address or a symbolic hostname
(unless the
port
can be a single integer or a range of ports.
Ranges are in the form nn-mm.
In general,
a destination port must be specified,
unless the
$ nc -l 1234
nc is now listening on port 1234 for a connection. On a second console (or a second machine), connect to the machine and port being listened on:
$ nc 127.0.0.1 1234
There should now be a connection between the ports. Anything typed at the second console will be concatenated to the first, and vice-versa. After the connection has been set up, nc does not really care which side is being used as a 'server' and which side is being used as a 'client'. The connection may be terminated using an EOF ('^D').
Start by using nc to listen on a specific port, with output captured into a file:
$ nc -l 1234 > filename.out
Using a second machine, connect to the listening nc process, feeding it the file which is to be transferred:
$ nc -N host.example.com 1234 < filename.in
After the file has been transferred, the connection will close automatically.
$ printf "GET / HTTP/1.0\r\n\r\n" | nc host.example.com 80
Note that this also displays the headers sent by the web server. They can be filtered, using a tool such as sed(1), if necessary.
More complicated examples can be built up when the user knows the format of requests required by the server. As another example, an email may be submitted to an SMTP server using:
$ nc localhost 25 << EOF HELO host.example.com MAIL FROM:<user@host.example.com> RCPT TO:<user2@host.example.com> DATA Body of email. amp;. QUIT EOF
$ nc -z host.example.com 20-30 Connection to host.example.com 22 port [tcp/ssh] succeeded! Connection to host.example.com 25 port [tcp/smtp] succeeded!
The port range was specified to limit the search to ports 20 - 30.
Alternatively, it might be useful to know which server software
is running, and which versions.
This information is often contained within the greeting banners.
In order to retrieve these, it is necessary to first make a connection,
and then break the connection when the banner has been retrieved.
This can be accomplished by specifying a small timeout with the
$ echo "QUIT" | nc host.example.com 20-30 SSH-1.99-OpenSSH_3.6.1p2 Protocol mismatch. 220 host.example.com IMS SMTP Receiver Version 0.84 Ready
$ nc -p 31337 -w 5 host.example.com 42
Open a UDP connection to port 53 of host.example.com:
$ nc -u host.example.com 53
Open a TCP connection to port 42 of host.example.com using 10.1.2.3 as the IP for the local end of the connection:
$ nc -s 10.1.2.3 host.example.com 42
Open a TCP connection to port 42 of host.example.com using IPsec ESP for incoming and outgoing traffic.
$ nc -E host.example.com 42
Open a TCP connection to port 42 of host.example.com using IPsec ESP for outgoing traffic only.
$ nc -e 'out ipsec esp/transport//require' host.example.com 42
Create and listen on a Unix Ns -domain stream socket:
$ nc -lU /var/tmp/dsocket
Connect to port 42 of host.example.com via an HTTP proxy at 10.2.3.4, port 8080. This example could also be used by ssh(1); see the ProxyCommand directive in ssh_config(5) for more information.
$ nc -x10.2.3.4:8080 -Xconnect host.example.com 42
The same example again, this time enabling proxy authentication with username "ruser" if the proxy requires it:
$ nc -x10.2.3.4:8080 -Xconnect -Pruser host.example.com 42
NC (1) | September 26, 2015 |
Main index | Section 1 | Options |
Please direct any comments about this manual page service to Ben Bullock. Privacy policy.
“ | You have successfully logged in, Now press any key to log out | ” |