mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 07:24:55 +02:00
637 B
637 B
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:
cat somefile.txt | nc -l {{port}}
- Receive a file:
nc {{ip_address}} {{port}} > somefile.txt
- 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 }}