I have a python script(UBUNTU) reading and writing info from local serial port.It works fine! what if instead of using the local serial port , i want to use another machine serial port, remotely ?

how would you implement this:

-between 2 ubuntu machines?

-between 1 ubuntu and one windows machine?

its not so simple to explain so i made this little diagram

enter image description here

link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

between 2 ubuntu machines

Serial Over IP

between 1 ubuntu and one windows machine

Ubuntu ser2net, Windows HW VSP3

link|improve this answer
feedback

the most generic way I can think of is by reading the local serial console, and redirecting it to a netcat port. then on the receiving side, a netcat listener, or python itself, can pick up the datastream

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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