您好,登錄后才能下訂單哦!
1、環境部署說明
后端部署在tomcat服務器上,前端用nginx做代理訪問
tomcat部署目錄
nginx配置:
upstream wcfront{ server localhost:8991;//后臺接口 } server { listen 8998;//h6訪問接口 server_name 192.168.2.37; charset utf-8; proxy_set_header Host $host:$server_port; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; location ^~ /fs/ { alias /var/zkbc/fs/; } location = / { root /opt/nlcn/backend/wcfront/www;//h6頁面路徑 index index.html index.htm; } location = /index { root /opt/nlcn/backend/wcfront/www; rewrite ^(.*) /; } location ~ .*\.(html)$ { root /opt/nlcn/backend/wcfront/www; index index.html index.htm; } location ~ .*(css)$ { root /opt/nlcn/backend/wcfront/www; index index.html index.htm; } location ~ .*\.(html|htm|gif|jpg|jpeg|bmp|png|ico|txt|js|css|woff|woff2|svg|ttf)$ { root /opt/nlcn/backend/wcfront/www; index index.html index.htm; } location / { proxy_pass http://wcfront; proxy_set_header Host $host:$server_port; } }
2、當前配置后端獲取ip一直未127.0.0.1,現在需求是能夠獲取客戶端的ip
(1)在nginx配置上加如下配置,注意:在location /下加
location / { proxy_pass http://wcfront; proxy_set_header Host $host:$server_port; proxy_set_header Remote_Addr $remote_addr; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; }
(2)重啟nginx
nginx -s reload
ps -ef | grep nginx 可以查看nginx的啟動狀態及啟動時間
(3)配置tomcat
service.xml 下找到 pattern="%h %l %u %t "%r" %s %b" />
把 %h 修改成 %{X-Real-IP}i
重啟服務
(4) java獲取客戶端ip的方式
public static String getIpAddress(HttpServletRequest request) { String ip = null; //X-Forwarded-For:Squid 服務代理 String ipAddresses = request.getHeader("X-Forwarded-For"); if (ipAddresses == null || ipAddresses.length() == 0 || "unknown".equalsIgnoreCase(ipAddresses)) { //Proxy-Client-IP:apache 服務代理 ipAddresses = request.getHeader("Proxy-Client-IP"); } if (ipAddresses == null || ipAddresses.length() == 0 || "unknown".equalsIgnoreCase(ipAddresses)) { //WL-Proxy-Client-IP:weblogic 服務代理 ipAddresses = request.getHeader("WL-Proxy-Client-IP"); } if (ipAddresses == null || ipAddresses.length() == 0 || "unknown".equalsIgnoreCase(ipAddresses)) { //HTTP_CLIENT_IP:有些代理服務器 ipAddresses = request.getHeader("HTTP_CLIENT_IP"); } if (ipAddresses == null || ipAddresses.length() == 0 || "unknown".equalsIgnoreCase(ipAddresses)) { //X-Real-IP:nginx服務代理 ipAddresses = request.getHeader("X-Real-IP"); } //有些網絡通過多層代理,那么獲取到的ip就會有多個,一般都是通過逗號(,)分割開來,并且第一個ip為客戶端的真實IP if (ipAddresses != null && ipAddresses.length() != 0) { ip = ipAddresses.split(",")[0]; } //還是不能獲取到,最后再通過request.getRemoteAddr();獲取 if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ipAddresses)) { ip = request.getRemoteAddr(); } return ip; }
3、結論
需要注意的是這種方式獲取的是客戶端所在網絡的外網地址,而不是客戶端的真實ip。
例如
多個終端都在同一個局域網訪問,獲取的ip為同一個網關地址。
手機4g訪問,獲取的ip也不是手機的實際ip,而是網絡ip,例如獲取的ip是61.158.147.109,但實際手機ip是61.158.147.*(同網段另外一個ip地址),不是特別清楚手機ip和109什么關系,有興趣的朋友可以研究研究。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。