We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
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))
self.server.bind((self.host, self.port))
self.server.bind(('0.0.0.0', self.port))
Sorry, something went wrong.
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: