2014-03-03 11:22:40 +01:00
|
|
|
# nc
|
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
> Reads and writes tcp or udp data.
|
2014-03-03 11:22:40 +01:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Listen on a specified port:
|
2014-03-03 11:22:40 +01:00
|
|
|
|
|
|
|
`nc -l {{port}}`
|
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Connect to a certain port (you can then write to this port):
|
2014-03-03 11:22:40 +01:00
|
|
|
|
|
|
|
`nc {{ip_address}} {{port}}`
|
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Set a timeout:
|
2014-03-03 11:22:40 +01:00
|
|
|
|
|
|
|
`nc -w {{timeout_in_seconds}} {{ipaddress}} {{port}}`
|
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Serve a file:
|
2014-03-03 11:22:40 +01:00
|
|
|
|
|
|
|
`cat somefile.txt | nc -l {{port}}`
|
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Receive a file:
|
2014-03-03 11:22:40 +01:00
|
|
|
|
|
|
|
`nc {{ip_address}} {{port}} > somefile.txt`
|
2014-03-08 03:37:44 +01:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Server stay up after client detach:
|
2014-03-08 03:37:44 +01:00
|
|
|
|
|
|
|
`nc -k -l {{port}}`
|
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Client stay up after EOF:
|
2014-03-08 03:37:44 +01:00
|
|
|
|
|
|
|
`nc -q {{timeout}} {{ip_address}}`
|