marcelomd / mux_serial

Serial port multiplexer over TCP.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Connection from other clients

DeLocke opened this issue · comments

Hello,

your tool works nearly perfect. But I can't connect from clients with other IP then the system who mux_server is running.

I can connect from localhost - ok

But it isn't possibile to connect to the server when the client is running an an other system.

Late answer, but perhaps it helps others too. You have to change the following line in the source code:

self.server.bind((self.host, self.port))
-->
self.server.bind(('0.0.0.0', self.port))