mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* Applying the snake_case convention throughout the repo - Also removing the file extension where not needed - Adding {{ }} on a few old pages * Addressing concerns - Added {{ }} where they were missed out - Removed spaces inside {{ }} - Reverting "file" to "filename" to make it clearer * Fixing the comments on nc page
39 lines
619 B
Markdown
39 lines
619 B
Markdown
# nc
|
|
|
|
> Reads and writes tcp or udp data.
|
|
|
|
- Listen on a specified port:
|
|
|
|
`nc -l {{port}}`
|
|
|
|
- Connect to a certain port (you can then write to this port):
|
|
|
|
`nc {{ip_address}} {{port}}`
|
|
|
|
- Set a timeout:
|
|
|
|
`nc -w {{timeout_in_seconds}} {{ipaddress}} {{port}}`
|
|
|
|
- Serve a file:
|
|
|
|
`nc -l {{port}} < {{file}}`
|
|
|
|
- Receive a file:
|
|
|
|
`nc {{ip_address}} {{port}} > {{file}}`
|
|
|
|
- Server stay up after client detach:
|
|
|
|
`nc -k -l {{port}}`
|
|
|
|
- Client stay up after EOF:
|
|
|
|
`nc -q {{timeout}} {{ip_address}}`
|
|
|
|
- Port scanning:
|
|
|
|
`nc -v -z {{ip_address}} {{port}}`
|
|
|
|
- Proxy and port forwarding:
|
|
|
|
`nc -l {{port}} | nc {{hostname}} {{port}}`
|