dns.resolveSoa()方法是dns模块的内置应用程序编程接口,用于使用DNS协议解析SOA或指定主机名的授权记录的开始。
用法:
dns.resolveSoa( hostname, callback )
参数:此方法具有上述和以下所述的两个参数:
- hostname:此参数指定一个字符串,该字符串表示要解析的主机名。
- callback:它指定在主机名进行DNS解析之后要调用的函数。
- error:如果生成,则指定错误。
- addresses:它是一个字符串数组,表示返回的主机名的授权开始(SOA)记录。
返回值:该方法通过回调函数返回错误地址。这些数据作为参数传递给回调函数。地址参数将包含nsname,hostmaster,serial,refresh,retry,expire和minttl属性。
以下示例说明了Node.js中dns.resolveSoa()方法的使用:
范例1:
// Node.js program to demonstrate the
// dns.resolveSoa() method
// Accessing dns module
const dns = require('dns');
// Calling dns.resolveSoa() method for hostname
// geeksforgeeks.org and displaying them in
// console as a callback
dns.resolveSoa('geeksforgeeks.org', (err,
addresses) => console.log('SOA records:%j', addresses));
输出:
SOA records:{ "nsname":"ns-869.awsdns-44.net", "hostmaster":"awsdns-hostmaster.amazon.com", "serial":1, "refresh":7200, "retry":900, "expire":1209600, "minttl":86400 }
范例2:
// Node.js program to demonstrate the
// dns.resolveSoa() method
// Accessing dns module
const dns = require('dns');
// Calling dns.resolveSoa() method for hostname
// google.com printing them in console as a callback
dns.resolveSoa('google.com', (err,
addresses) => console.log('SOA records:%j', addresses));
输出:
SOA records:{ "nsname":"ns1.google.com", "hostmaster":"dns-admin.google.com", "serial":287530106, "refresh":900, "retry":900, "expire":1800, "minttl":60 }
注意:上面的程序将通过使用node index.js
命令。
参考: https://nodejs.org/api/dns.html#dns_dns_resolvesoa_hostname_callback
相关用法
注:本文由纯净天空筛选整理自gekcho大神的英文原创作品 Node.js | dns.resolveSoa() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。