最近項目中須要獲取公司內網的用戶IP,起初網上查到的都是經過訪問外網接口(例如新浪接口 http://counter.sina.com.cn/ip)獲取客戶端處在網絡中的IP,但在公司內網環境中沒法實現。後來查到可經過WebRTC方式實現,現將代碼整理以下,WebRTC還有待研究。
function findIP(callback) { var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection; //compatibility for firefox and chrome var pc = new myPeerConnection({iceServers: []}), noop = function() {}, localIPs = {}, ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g, key; function ipIterate(ip) { if (!localIPs[ip]) callback(ip); localIPs[ip] = true; } pc.createDataChannel(""); pc.createOffer().then(function(sdp) { sdp.sdp.split('\n').forEach(function(line) { if (line.indexOf('candidate') < 0) return; line.match(ipRegex).forEach(ipIterate); }); pc.setLocalDescription(sdp, noop, noop); }); pc.onicecandidate = function(ice) { if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return; ice.candidate.candidate.match(ipRegex).forEach(ipIterate); }; } findIP(function(ip){ console.log('got ip: ', ip); });
參考:
http://blog.csdn.net/u0133321...
https://developer.mozilla.org...
http://blog.nsfocus.net/%E4%B...
https://www.cnblogs.com/muluo...html