How to obtain the local IP address through Java programming

Source: Internet
Author: User

 

In JSP: Request Method Client IP: request. getremoteaddr () Output: 192.168.0.106 client host name: request. getremotehost () Output: abcrequest. getheader ("host") Output: 192.168.0.1: 8080web server name: request. getservername () Output: 192.168.0.1 server listening port: request. getserverport () Output: 8080 in JSP, the method for obtaining the Client IP address is: request. getremoteaddr (), which is effective in most cases. However, the real IP address of the client cannot be obtained through reverse proxy software such as Apache and squid. If the reverse proxy software is used, the IP address obtained using the request. getremoteaddr () method is 127.0.0.1 or 192.168.1.110, rather than the real IP address of the client. After proxy, because the intermediate layer is added between the client and the service, the server cannot directly obtain the IP address of the client, and the server application cannot directly return the IP address of the forwarded request to the client. However, X-FORWARDED-FOR information is added in the HTTP header information that forwards the request. It is used to track the original Client IP address and the server address of the original client request. When we access index. JSP/is not actually the index on the server accessed by our browser. JSP file, but the index is first accessed by the proxy server. JSP, the proxy server returns the access results to our browser, because the proxy server accesses the index. JSP, so index. in JSP, request. the IP obtained by getremoteaddr () is actually the proxy server address, not the client IP address. So we can obtain the real IP address of the client. Method 1: Public String getremortip (httpservletrequest request) {If (request. getheader ("X-forwarded-for") = NULL) {return request. getremoteaddr ();} return request. getheader ("X-forwarded-for");} Method 2: Public String getipaddr (httpservletrequest request) {string IP = request. getheader ("X-forwarded-for"); If (IP = NULL | IP. length () = 0 | "unknown ". equalsignorecase (IP) {IP = requ EST. 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;} however, if a multi-level reverse proxy is passed, there are more than one X-forwarded-for value, but a string of IP values, which is the real IP address of the real client? The answer is to take the first valid IP string not unknown in X-forwarded-. For example, X-forwarded-for: 192.168.1.110, 192.168.1.120, 192.168.1.130, and 192.168.1.100.
References: http://apps.hi.baidu.com/share/detail/5465573
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.