當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。