|
Navigation Articles
Linux Downloads Search Packages Error log Distros/ OS Softwares CMS Help & Man Pages
Others |
Main /
NetcatUtility
nc - arbitrary TCP and UDP connections and listensINSTALL
nc.x86_64 : Reads and writes data across network connections using TCP or UDP The nc (or netcat) utility is used for just about anything under the sun involving TCP or UDP. It can open TCP connections, send UDP packets, listen on arbitrary TCP and UDP ports, do port scanning, and deal with both IPv4 and IPv6. Unlike telnet(1), nc scripts nicely, and separates error messages onto standard error instead of sending them to standard output, as telnet(1) does with some.
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
EXAMPLE:
HELP
CLIENT/SERVER MODEL It is quite simple to build a very basic client/server model using nc. On one console, start nc listening on a specific port for a connection. For example:
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:
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’).
|