This article introduces the relevant knowledge points of the DNS module in Node.js in detail, and shares the relevant example code. Interested friends can refer to it.
1. DNS
In Node.js, the DNS module is provided to implement domain name search and domain name resolution processing.
In the DNS module, three main methods and a series of convenient methods are provided.
resolve method: used to resolve a domain name into a set of DNS records.
reverse method: Used to convert an IP address into a set of domain names.
lookup method: Used to convert a domain name into an IP address.
The other convenience methods in the DNS module are a convenient form of the resolve method.
#2. Use the resolve method to resolve the domain name into a DNS record
`DNS.resolve(domain, [rrtype ], callback(err, address){...})`
The domain parameter is a string, used to specify the domain name that needs to be resolved, and can include subdomain names.
The rrtypr parameter is a string used to specify the record type to be obtained. The record types that can be specified are as follows.
A, this parameter value is the default value. When the record type is A, the record maps an IPv4 address to a domain name.
AAAA, when the record type is AAAA, this record maps an IPv6 address to a domain name.
CNAME, when the record type is CNAME, it means that the record is an alias record of a domain name. For example, a www.example.com domain name record may be an example.com domain name record. Alias record.
MX, the MX record points to a mail server in a domain that uses SMTP. For example, when you want to send an email to the person@domain.com email address, the MX of the domain.com domain The record contains the email server address from which the email was sent.
TXT, TXT record is the description record attached to the domain name.
SRV, SRV records are used to provide information for all available services in a specific domain.
PTR, PTR record is used for reverse address resolution. This record maps a domain name to an IPv4 address.
NS, NS (Name Server) records are domain name server records, used to specify which DNS server resolves the domain name.
The callback function has two parameters. err is the error object triggered when domain name resolution fails. The addresses parameter is an array that stores all obtained DNS records.
3. Various convenient methods customized for the resolve method
DNS.resolve4(domain, callback), Get the IPv4 address
DNS.resolve6(domain, callback), get the IPv6 address
DNS.resolveMx(domain, callback), get the MX Records, mail exchange server records
DNS.resolveTxt(domain, callback), obtains TXT records, domain name attached description records
- ##DNS. resolveSrv(domain, callback), get SRV records, service records
- DNS.resolveNs(domain, callback), get NS records, domain name server records
- DNS.resolveCname(domain, callback), get the alias record
4. Use the lookup method to query the IP address
- The domain parameter is a string, used to specify the domain name to be resolved
- The family parameter value is one Integer value, used to specify the type of IP address to be obtained. The parameter value that can be specified is 4 or 6. The default parameter value is null, which means that both IPv4 and IPv6 can be obtained
- The err parameter value of the callback function is the error object triggered when the address fails to be obtained. When the domain name does not exist or the query fails, the code attribute value of the error object is ENOENT
- The addresses parameter value is one A string, which is the obtained IP address
- When the family parameter value is 4, it is represented as an IPv4 address; when it is 6, it is represented as an IPv6 address.
5. Use the reverse method to reversely resolve an IP address
- The ip parameter value is a string, used to specify the IP address that needs to be resolved
- The err of the callback function is the error object after the reverse resolution address fails
- The domains parameter value is an array, which stores all obtained domain names
6. Various error codes in the DNS module
- ENODATA: The DNS server returned a query result with no data
EFORMERR: The DNS server found that the client used malformed query parameters when requesting a query
ESERVFAIL: The DNS server failed to perform the query operation
ENOTFOUND: No domain name found
ENOTIMP: The DNS server cannot perform the query operation requested by the client
EREFUSED: The DNS server refused to perform the query operation
EBADQUERY: Malformed DNS query
EBADNAME: Domain name format is incorrect
EBADFAMILY: Unsupported IP address type
EBADRESP: Malformed DNS reply
ECONNREFUSED: Unable to establish Connection to DNS server
ETIMEOUT: Timeout to establish connection to DNS server
-
EEOF: Bottom of file reached
EFILE: Failed to read file
ENOMEM: Not enough memory space
EDESTRUCTION: Channel already Destroyed
EBADSTR: String format error
EBADFLAGS: Wrong judgment flag specified
ENONAME: The specified host name is not in numeric format
EBADHINTS: The specified prompt flag is invalid
ENOTINITIALIZED: c-ares class library Initialization has not been completed
ELOADIPHLPAPI: An error was triggered while loading iphlpapi.dll
EADDREGETNETWORKPARAMS: GetNetworkParams function not found
ECANCELLED: DNS query operation was canceled
7. Basic use of DNS module
const dns = require('dns'); let url = 'www.qq.com'; dns.resolve(url, 'A', (err, addresses) => { console.log(addresses); // IPv4地址 [ '103.7.30.123' ] }); dns.resolve(url, 'AAAA', (err, addresses) => { console.log(addresses); // IPv6地址 [ '240e:e1:8100:28::2:16' ] }); dns.resolveMx('qq.com', (err, addresses) => { console.log(addresses); // 邮件交换服务器记录 // [ { exchange: 'mx2.qq.com', priority: 20 }, // { exchange: 'mx1.qq.com', priority: 30 }, // { exchange: 'mx3.qq.com', priority: 10 } ] }); dns.resolveTxt('qq.com', (err, addresses) => { console.log(addresses); // 域名附加的描述记录 // [ [ 'v=spf1 include:spf.mail.qq.com -all' ] ] }); dns.resolveSrv('www.baidu.com', (err, addresses) => { console.log(addresses); // 服务记录 // [] }); dns.resolveNs('www.github.com', (err, addresses) => { console.log(addresses); // 域名服务器记录 // [ 'ns-421.awsdns-52.com', // 'ns-520.awsdns-01.net', // 'ns1.p16.dynect.net', // 'ns2.p16.dynect.net', // 'ns3.p16.dynect.net', // 'ns4.p16.dynect.net', // 'ns-1283.awsdns-32.org', // 'ns-1707.awsdns-21.co.uk' ] }); dns.resolveCname('www.163.com', (err, addresses) => { console.log(addresses); // 获取别名记录 // [ 'www.163.com.lxdns.com' ] }); dns.lookup('google.com', 4, (err, address, family) => { // 查询IP地址 // address,查询到的地址 // family,IPv4或IPv6 console.log(address);// 172.217.27.142 console.log(family);// 4 }); dns.lookup('google.com', 6, (err, address, family) => { console.log(address);// 2404:6800:4008:803::200e console.log(family);// 6 }); dns.reverse('203.188.200.67', (err, domain) => { // 反向解析IP地址 console.log(domain); // [ 'media-router-fp1.prod.media.vip.tp2.yahoo.com' ] });
The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.
Related articles:
vue-router related basic knowledge and working principles
axios post submission formdata example
Methods of using axios in vue components
##
The above is the detailed content of How to use DNS module in Node.js (detailed tutorial). For more information, please follow other related articles on the PHP Chinese website!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章整理了20+Vue面试题分享给大家,同时附上答案解析。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Notepad++7.3.1
Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version
God-level code editing software (SublimeText3)
