Closed daviduarte closed 5 years ago
There is something i'm missing?
I am not sure. I would guess it is a problem not directly related to osBrain, but rather with your IP configurations or firewalls.
If it is already working in your localhost then, before going to the cloud, I would first try to make it work in your LAN:
192.168.1.8:4444
in both the server and the client code?0.0.0.0:4444
on the server (while still using 192.168.1.8:4444
on the client) help?Also, you may want to try with 192.168.1.8:4444
on both client and server but running them from the same machine (the one with that IP). That could indicate the problem is in your LAN/firewalls.
Closing this as outdated. Feel free to reopen if the problem still persists.
I'm doing a distributed system, and I'm trying remote access from an agent to a nameserver.
I ran the following code:
client.py
server.py
In the server.py, I already tried:
I tried the following scenarios: 1- server.py and client.py in my current machine = WORKS! 2- server.py and client.py in my internal LAN = NOT WORK 3- server.py in my machine and client.py in a cloud = NOT WORK 4- client.py in my machine and server.py in a cloud = NOT WORK
I already configured port forwarding to 4444 and disabled UFW. I'm running in Ubuntu 16.04.
I tried a simple socket connection over my internal lan in the same port (situation 2 above), and works perfectly.
There is something i'm missing?