tags:

views:

416

answers:

1

I would like to find out how to get IP address of the client, that is visiting my web pages. Content of JSP page:

<% 
out.print( request.getRemoteAddr() + "<br>");
out.print( request.getRemoteHost() ); 
%>

Output:

0:0:0:0:0:0:0:1
0:0:0:0:0:0:0:1
+3  A: 

"0:0:0:0:0:0:0:1" is the IPv6 loopback address as defined in RFC 3513.

It appears that your OS and application server are configured to use IPv6 and that you are accessing the page from the local machine.

By the way, calling getRemoteAddress() will not provide you with the IP address of the client. There could be intermediate nodes in the network whose address you might receive. This is especially true of proxies and load-balancers.

Vineet Reynolds