How can I secure jetty to only allow connections from localhost? This means a connection to server A on System A from Client B on System B has to fail. I know I can do this by configuring my firewall (so please no answers about this). I just want Jetty to only listen on localhost(loopback).
|
I have not tried this but the usual method is to bind server to localhost (i.e. to IP 127.0.0.1). That means that Jetty server will listen to only connections that have localhost as their destination address. A quick googling revealed this http://old.nabble.com/How-to-make-Jetty-bind-to-specific-IP-address---to11667378.html#a11669524 :
|
|||||||
|
|
I found the answer to my question myself after a little bit more googling. The answer is (Tested on jetty-distribution-7.0.1.v20091125):
The import thing is that it should say 127.0.0.1 instead of 0.0.0.0, 0.0.0.0 means listen on all ips on the machine.
You can also bind to localhost programmatically(embed jetty) by:
|
||||
|
|
|
You can set the
Btw same for |
|||
|
|
|
I was able to do this using .htaccess but for some reason the localhost filtering does not work. If you want to allow traffic from a particular external IP and block all others try http://technologyenablingbusiness.blogspot.com/2011/03/setting-security-in-solr-running-on.html |
|||
|