tldr/pages/common/nc.md

40 lines
619 B
Markdown
Raw Normal View History

2014-03-03 10:22:40 +00:00
# nc
> Reads and writes tcp or udp data.
2014-03-03 10:22:40 +00:00
- Listen on a specified port:
2014-03-03 10:22:40 +00:00
`nc -l {{port}}`
- Connect to a certain port (you can then write to this port):
2014-03-03 10:22:40 +00:00
`nc {{ip_address}} {{port}}`
- Set a timeout:
2014-03-03 10:22:40 +00:00
`nc -w {{timeout_in_seconds}} {{ipaddress}} {{port}}`
- Serve a file:
2014-03-03 10:22:40 +00:00
`nc -l {{port}} < {{file}}`
2014-03-03 10:22:40 +00:00
- Receive a file:
2014-03-03 10:22:40 +00:00
`nc {{ip_address}} {{port}} > {{file}}`
2014-03-08 02:37:44 +00:00
- Server stay up after client detach:
2014-03-08 02:37:44 +00:00
`nc -k -l {{port}}`
- Client stay up after EOF:
2014-03-08 02:37:44 +00:00
`nc -q {{timeout}} {{ip_address}}`
2016-06-13 04:54:36 +01:00
- Port scanning:
`nc -v -z {{ip_address}} {{port}}`
- Proxy and port forwarding:
`nc -l {{port}} | nc {{hostname}} {{port}}`