Connection Question
I got Ruby installed and was messing with the GServer class and am binding it to port 9000. Now I can connect from my node (in another putty session) to my node with telnet, but I can't connect to it from my machine remotely. I'm using ubuntu 10, do I have to do something special to open the port or anything?
Thanks
5 Replies
1) iptables is blocking you, so you need to open the port
or 2) you are binding to port 9000 on 127.0.0.1 and so you need to bind on all interfaces
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
I don't really know what that means, but I don't see anything port specific in there so I can't be specifically blocking 9000 right?
DEFAULT_HOST on GServer is localhost (127.0.0.1)… sorry this is probably ending up being a dev question not meant for this forum. If I should look elsewhere please let me know and I'll mosey on over to StackOverflow
Second that DEFAULT_HOST looks like it's the problem try setting it to your servers IP.
Thank you for the help~~