Tagged Questions
0
votes
1answer
69 views
Can netcat listen to a port of a remote computer?
I am relaying the output of my script to a local port in my system viz -
$python script.py | nc 127.0.0.1 8033
Let's assume that my computer has ip 10.0.0.3
Now, Is it possible that some other ...
0
votes
1answer
701 views
How to create a netcat relay on OS X?
I'm trying to troubleshoot my postfix so I decided to route its traffic to my isp smtp relay trough a netcat relay:
nc -l <someport> 0<backpipe | nc <isp-smtp> 26 | tee backpipe
And ...