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 computer (say IP 10.0.0.4) can listen to this port via nc or anything else. Please suggest.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Not directly. The program listening on the port must be on the local machine (meaning 10.0.0.3 in your example). You could arrange for a program on the local machine to listen and send the information to another machine, but the socket connection can only be established on the host.

link|improve this answer
Thanks Jonathan, I did try that before raising the question. Is there something else besides netcat who could listen to remote ports? Thanks for your help. – Sushant Khurana Nov 2 '11 at 8:26
No - the design of sockets is such that your program has to be on the machine where you want to open it. – Jonathan Leffler Nov 2 '11 at 14:38
Provided your machine is on the subnet as your remote machine, you could use something like WireShark to watch the packets go by. But these days most networks are switched, which means that your machine will only ever get packets that are explicitly addressed to it (and broadcast packets), so making it impossible to eavesdrop on another computer. You'd have to try it and see. – David Given Nov 2 '11 at 16:29
feedback

http://support.microsoft.com/default.aspx?scid=kb;en-us;310099

here it is :D

link|improve this answer
Thanks lancecherry, but my problem was pretty specific to unix or unix-like systems. (also mentioned in tags of the question). – Sushant Khurana Feb 18 at 7:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.