Table of Contents
Previous words
Working principle
Home Web Front-end JS Tutorial Detailed explanation of domain name DNS in nodeJS

Detailed explanation of domain name DNS in nodeJS

Jun 26, 2017 pm 01:33 PM
javascript nodejs domain name

Previous words

This article will introduce the domain name resolution module DNS in detail

Working principle

Open the browser and enter the URL in the address bar above At that moment, after pressing Enter, a lot of things happened. First of all, the computer only understands 0 and 1, which means that the computer does not understand human alphabetical addresses. It only understands IP addresses. If it is IPv4, it is four groups of 8-bit binary numbers. For human convenience, there needs to be a service that translates URLs into IP addresses, which is DNS

The entire DNS acquisition process is cached layer by layer

## 1 , The browser searches its own DNS cache

The browser DNS cache time has nothing to do with the TTL value returned by the DNS server.

After the browser obtains the actual IP address of the website domain name, it will cache its IP to reduce the loss of network requests. Each browser has a fixed DNS cache time, of which Chrome's expiration time is 1 minute. During this period, DNS will not be re-requested

It is more convenient for the Chrome browser to check its own DNS cache time. Enter

chrome://net-internals/#dns
Copy after login
in the address bar 2. Search the operating system’s own DNS cache

3. Read the local HOST file, Windows The download path is generally

c:\Windows\System32\drivers\etc\hosts
Copy after login
4. Initiate a DNS system call to the broadband operator ISP, and the ISP server checks its own cache

5. If it is not found yet, the ISP server will initiate an iterative DNS resolution request on behalf of the local computer

6. If it is still unsuccessful, the resolution fails

Local Resolution

The dns module contains two types of functions, one of which is a function that uses underlying operating system tools to perform domain name resolution and does not require network communication. There is only one such function: dns.lookup()

[dns.lookup(hostname[, options], callback)】

This method resolves the domain name (such as 'cnblogs.com') The first record found is A (IPV4) or AAAA (IPV6). Parameter options can be an object or an integer. If no options are provided, both IP v4 and v6 addresses are acceptable. If options is an integer, it must be 4 or 6

The options parameter contains the following attributes

family:地址协议族,必须为4或6的整数
hints:设置getaddrinfo的标志,dns.ADDRCONFIG 或者 dns.V4MAPPED(ipv4映射成ipv6)
all:false(默认),布尔值,如设置为true,则返回IP数组,否则返回单个IP地址
Copy after login
{
  family: 4,
  hints: dns.ADDRCONFIG | dns.V4MAPPED
}
Copy after login
The callback function contains parameters (err, address , family). The address parameter represents an IP v4 or v6 address. The family parameter is 4 or 6, indicating the address family (not necessarily the value passed into lookup before). When an error occurs, the parameter err is the Error object, and err.code is the error code

[Note] err.code is equal to 'ENOENT', which may be because the domain name does not exist, or other reasons, such as no available files. Descriptor

var dns = require('dns');
dns.lookup('www.cnblogs.com', function(err, address, family){
    console.log(err);//nullconsole.log(address);//218.11.2.249console.log(family);//4});
Copy after login
The same domain name may correspond to multiple different IPs. You can get it by setting options = {all: true}

var dns = require('dns');
dns.lookup('www.qq.com',{all:true}, function(err, address, family){
    console.log(err);//null/*[ { address: '125.39.240.113', family: 4 },
  { address: '61.135.157.156', family: 4 } ] */console.log(address);
    console.log(family);//undefined});
Copy after login
【dns.lookupService(address, port, callback)】

Corresponding to lookup, lookupService( ) method performs reverse resolution from ip address and port to domain name

The parameters of the callback function of this method are (err, hostname, service). hostname and service are both strings (such as 'localhost' and 'http'). When an error occurs, the parameter err is the Error object, and err.code is the error code

var dns = require('dns');
dns.lookupService('127.0.0.1',80,function(err, hostname, service){
    console.log(err);//nullconsole.log(hostname);//baiconsole.log(service);//http});
Copy after login

Network Analysis

Except for dns.lookup() All functions in the dns module need to connect to the actual DNS server for domain name resolution, and always use the network to perform DNS queries

[dns.resolve(hostname[, rrtype], callback)]

This method parses a domain name (such as 'cnblogs.com') into an array of rrtype specified record types

The valid rrtypes value is:

'A' (IPV4 地址, 默认)'AAAA' (IPV6 地址)'MX' (邮件交换记录)'TXT' (text 记录)'SRV' (SRV 记录)'PTR' (用来反向 IP 查找)'NS' (域名服务器 记录)'CNAME' (别名 记录)'SOA' (授权记录的初始值)
Copy after login
The callback parameter is

(err, addresses). The type of each item in addresses depends on the record type. When an error occurs, the parameter err is the Error object, and err.code is the error code

var dns = require('dns');//IPV4dns.resolve('www.qq.com',function(err,address){
    console.log(address);//[ '125.39.240.113', '61.135.157.156' ]});//IPV6dns.resolve('www.qq.com','AAAA',function(err,address){
    console.log(address);//[ '240e:e1:8100:28::2:16' ]});//别名dns.resolve('www.qq.com','CNAME',function(err,address){
    console.log(address);//undefined});
Copy after login
[dns.resolve4 (hostname, callback)】

 Similar to dns.resolve(), only IPv4 (A record) can be queried

var dns = require('dns');
dns.resolve4('www.qq.com',function(err,address){
    console.log(address);//[ '125.39.240.113', '61.135.157.156' ]});
Copy after login
【dns.reverse(ip, callback) 】

 This method is used to reversely resolve the IP address and return the domain name array pointing to the IP address. Callback function parameters (err, hostnames). When an error occurs, the parameter err is an Error object, and err.code is the error code

var dns = require('dns');
dns.reverse('114.114.114.114',function(err,hostnames){
    console.log(hostnames);//'public1.114dns.com'});
Copy after login

The above is the detailed content of Detailed explanation of domain name DNS in nodeJS. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

The difference between nodejs and vuejs The difference between nodejs and vuejs Apr 21, 2024 am 04:17 AM

Node.js is a server-side JavaScript runtime, while Vue.js is a client-side JavaScript framework for creating interactive user interfaces. Node.js is used for server-side development, such as back-end service API development and data processing, while Vue.js is used for client-side development, such as single-page applications and responsive user interfaces.

Is nodejs a backend framework? Is nodejs a backend framework? Apr 21, 2024 am 05:09 AM

Node.js can be used as a backend framework as it offers features such as high performance, scalability, cross-platform support, rich ecosystem, and ease of development.

What is the difference between npm and npm.cmd files in the nodejs installation directory? What is the difference between npm and npm.cmd files in the nodejs installation directory? Apr 21, 2024 am 05:18 AM

There are two npm-related files in the Node.js installation directory: npm and npm.cmd. The differences are as follows: different extensions: npm is an executable file, and npm.cmd is a command window shortcut. Windows users: npm.cmd can be used from the command prompt, npm can only be run from the command line. Compatibility: npm.cmd is specific to Windows systems, npm is available cross-platform. Usage recommendations: Windows users use npm.cmd, other operating systems use npm.

Is nodejs a back-end development language? Is nodejs a back-end development language? Apr 21, 2024 am 05:09 AM

Yes, Node.js is a backend development language. It is used for back-end development, including handling server-side business logic, managing database connections, and providing APIs.

What are the global variables in nodejs What are the global variables in nodejs Apr 21, 2024 am 04:54 AM

The following global variables exist in Node.js: Global object: global Core module: process, console, require Runtime environment variables: __dirname, __filename, __line, __column Constants: undefined, null, NaN, Infinity, -Infinity

How to connect nodejs to mysql database How to connect nodejs to mysql database Apr 21, 2024 am 06:13 AM

To connect to a MySQL database, you need to follow these steps: Install the mysql2 driver. Use mysql2.createConnection() to create a connection object that contains the host address, port, username, password, and database name. Use connection.query() to perform queries. Finally use connection.end() to end the connection.

Which one to choose between nodejs and java? Which one to choose between nodejs and java? Apr 21, 2024 am 04:40 AM

Node.js and Java each have their pros and cons in web development, and the choice depends on project requirements. Node.js excels in real-time applications, rapid development, and microservices architecture, while Java excels in enterprise-grade support, performance, and security.

Is there a big difference between nodejs and java? Is there a big difference between nodejs and java? Apr 21, 2024 am 06:12 AM

The main differences between Node.js and Java are design and features: Event-driven vs. thread-driven: Node.js is event-driven and Java is thread-driven. Single-threaded vs. multi-threaded: Node.js uses a single-threaded event loop, and Java uses a multi-threaded architecture. Runtime environment: Node.js runs on the V8 JavaScript engine, while Java runs on the JVM. Syntax: Node.js uses JavaScript syntax, while Java uses Java syntax. Purpose: Node.js is suitable for I/O-intensive tasks, while Java is suitable for large enterprise applications.

See all articles