Problem with JSP getRemoteAddress

前端 未结 1 624
栀梦
栀梦 2020-12-21 14:08

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() +         


        
相关标签:
1条回答
  • 2020-12-21 14:53

    "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.

    0 讨论(0)
提交回复
热议问题