-
Notifications
You must be signed in to change notification settings - Fork 1
/
tools.js
33 lines (26 loc) · 870 Bytes
/
tools.js
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
let os = require('os');
function getIpAddresses() {
let ifList = [];
let ifaces = os.networkInterfaces();
Object.keys(ifaces).forEach(function (ifname) {
let alias = 0;
ifaces[ifname].forEach(function (iface) {
if ('IPv4' !== iface.family || iface.internal !== false) {
// skip over internal (i.e. 127.0.0.1) and non-ipv4 addresses
return;
}
if (alias >= 1) {
// this single interface has multiple ipv4 addresses
ifList.push(`${ifname}:${alias} ${iface.address}`);
} else {
// this interface has only one ipv4 adress
ifList.push(`${ifname} ${iface.address}`);
}
++alias;
});
});
return ifList;
}
module.exports = {
getIpAddresses: getIpAddresses
}