获得客户端真实IP地址

2014-11-24 01:45:30 · 作者: · 浏览: 0

我们知道在jsp里,获取网页客户端的ip地址的方法是:request.getremoteaddr(),这种方法在大部分情况下都是有效的。但是在通过了apache,squid等反向代理软件就不能获取到客户端的真实ip地址了。如果使用了反向代理软件,用request.getremoteaddr()方法获取的ip地址是:127.0.0.1或192.168.1.110,而并不是客户端的真实ip。

  经过代理以后,由于在客户端和服务之间增加了中间层,因此服务器无法直接拿到客户端的ip,服务器端应用也无法直接通过转发请求的地址返回给客户端。但是在转发请求的http头信息中,增加了x-forwarded-for信息。用以跟踪原有的客户端ip地址和原来客户端请求的服务器地址。当我们访问index.jsp/时,其实并不是我们浏览器真正访问到了服务器上的index.jsp文件,而是先由代理服务器去访问index.jsp ,代理服务器再将访问到的结果返回给我们的浏览器,因为是代理服务器去访问index.jsp的,所以index.jsp中通过request.getremoteaddr()的方法获取的ip实际上是代理服务器的地址,并不是客户端的ip地址。

 于是可得出获得客户端真实ip地址的方法一:

public string getremortip(httpservletrequest request) {

if (request.getheader("x-forwarded-for") == null) {

return request.getremoteaddr();

}

return request.getheader("x-forwarded-for");

}

获得客户端真实ip地址的方法二:

public string getipaddr(httpservletrequest request) {

string ip = request.getheader("x-forwarded-for");

if(ip == null || ip.length() == 0 || "unknown".equalsignorecase(ip)) {

ip = request.getheader("proxy-client-ip");

}

if(ip == null || ip.length() == 0 || "unknown".equalsignorecase(ip)) {

ip = request.getheader("wl-proxy-client-ip");

}

if(ip == null || ip.length() == 0 || "unknown".equalsignorecase(ip)) {

ip = request.getremoteaddr();

}

return ip;

}

  可是,如果通过了多级反向代理的话,x-forwarded-for的值并不止一个,而是一串ip值,究竟哪个才是真正的用户端的真实ip呢?

  答案是取x-forwarded-for中第一个非unknown的有效ip字符串。如:

x-forwarded-for:192.168.1.110, 192.168.1.120, 192.168.1.130, 192.168.1.100

用户真实ip为:192.168.1.110

通过以上方法可以得到网页浏览者的真实ip地址。