Public requests sent to Private IP
I have a webserver listening to the private IP, yet I can still access it from the public IP:
"curl
My linodes are all running Ubuntu 10.04 and I followed the steps as outlined in
What do I need to do so that a service listening on a private IP is not accessible through the linode's public IP?
Thanks
2 Replies
netstat -l would be a good place to start to double check that.
~JW
For future reference: This problem arose with Rails 2.3.2/WEBrick 1.3.1 I started the server by running:
$ruby script/server --port=10000 --binding=192.168.XXX.XXX
=> Booting WEBrick
=> Rails 2.3.2 application starting on http://192.168.XXX.XXX:10000
Thanks