前端JS获取内网IP

1/21/2022 WebRTC
//方法一:
function getUserIP() {
  var RTCPeerConnection =
    window.RTCPeerConnection ||
    window.webkitRTCPeerConnection ||
    window.mozRTCPeerConnection
  if (RTCPeerConnection)
    (() => {
      var rtc = new RTCPeerConnection()
      rtc.createDataChannel('') //创建一个可以发送任意数据的数据通道
      rtc.createOffer(
        (offerDesc) => {
          //创建并存储一个sdp数据
          rtc.setLocalDescription(offerDesc)
        },
        (e) => {
          console.log(e)
        },
      )
      rtc.onicecandidate = (evt) => {
        //监听candidate事件
        if (evt.candidate) {
          var ip_addr = evt.candidate.address
          localStorage.setItem('ip_addr', ip_addr)
        }
      }
    })()
  else {
    console.log('目前仅测试了chrome浏览器OK')
  }
}

//方法二:

function getUserIP(onNewIP) {
  let MyPeerConnection =
    window.RTCPeerConnection ||
    window.mozRTCPeerConnection ||
    window.webkitRTCPeerConnection
  let pc = new MyPeerConnection({
    iceServers: [],
  })
  let noop = () => {}
  let localIPs = {}
  let ipRegex =
    /(\[0-9\]{1,3}(\\.\[0-9\]{1,3}){3}|\[a-f0-9\]{1,4}(:\[a-f0-9\]{1,4}){7})/g
  let iterateIP = (ip) => {
    if (!localIPs[ip]) onNewIP(ip)
    localIPs[ip] = true
  }
  pc.createDataChannel('')
  pc.createOffer()
    .then((sdp) => {
      sdp.sdp.split('\\n').forEach(function (line) {
        if (line.indexOf('candidate') < 0) return
        line.match(ipRegex).forEach(iterateIP)
      })
      pc.setLocalDescription(sdp, noop, noop)
    })
    .catch((reason) => {})
  pc.onicecandidate = (ice) => {
    if (
      !ice ||
      !ice.candidate ||
      !ice.candidate.candidate ||
      !ice.candidate.candidate.match(ipRegex)
    )
      return
    ice.candidate.candidate.match(ipRegex).forEach(iterateIP)
  }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71