当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js dns.getServers()用法及代码示例


dns.getServers()方法是dns模块的内置应用程序编程接口,用于获取当前服务器的IP地址。

用法:

dns.getServers()

参数:此方法不接受任何参数。


返回:此方法返回RFC 5952格式的IP地址数组,该格式是在DNS解析中为当前主机配置的。如果正在使用自定义端口,则将附加一个字符串作为端口号。

以下示例说明了Node.js中dns.getServers()方法的使用:

范例1:

// Node.js program to demonstrate the    
// dns.resolveSoa() method 
  
// Accessing dns module 
const dns = require('dns'); 
  
// Reading IP adress of the current host 
// and printing it to the console 
console.log(dns.getServers());

输出:

[ '2402:3a80:1103:a055::34', '192.168.43.1' ]

范例2:

// Node.js program to demonstrate the    
// dns.resolveSoa() method 
  
// Accessing dns module 
const dns = require('dns'); 
  
// Reading IP adress of the current host 
// and printing it to the console 
res = dns.getServers(); 
  
res.forEach(element => {  
    console.log(element);  
});

输出:

72.28.94.156
2306:2470:3160::8888
72.28.94.156:1053
[2306:2470:3160::8888]:1053

注意:上面的程序将通过使用node index.js命令。

参考: https://nodejs.org/api/dns.html#dns_dns_getservers



相关用法


注:本文由纯净天空筛选整理自gekcho大神的英文原创作品 Node.js | dns.getServers() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。