Netcat is a featured networking utility which reads and writes data across network connections, using the TCP/IP protocol.
5
votes
5answers
3k views
Netcat (nc) traditional package for RHEL 6.x?
I'm trying to use the Percona Apache Monitoring [Cacti] Template for Memcached.
They do indeed warn that you can't use the openbsd version of the package and provide a solution for Ubuntu/Debian ...
1
vote
1answer
83 views
netcat doesn't transfer complete file when using UDP
I use the following in order to transfer bigfile (11GB):
cat bigfile | pv -L 11m | nc -u 10.0.0.1 3333
After 1.6GB the client stop to transfer (in the target machine i dont see packets )
This is ...
0
votes
1answer
203 views
How do I make ncat not send a line-feed?
I'm on Windows 7 Powershell and have ncat from http://nmap.org/ncat/
I'm trying to send "foo" to some network device
PS> ncat -u 192.168.1.255 6061
foo
but it sends "foo\n" (66 6f 6f 0a) and ...
0
votes
1answer
395 views
Using netcat in windows to forward a tcp door to another machine
I have a computer with windows 7 under a firewall which can only initiate connections to other computers. It has a proxy server on it (port 9000) and I want to forward it to another machine ...