2012-02-27 20:08:41 +01:00
# DNS
2010-10-28 14:18:16 +02:00
2017-01-23 04:16:21 +01:00
<!-- introduced_in=v0.10.0 -->
2016-07-16 00:35:38 +02:00
> Stability: 2 - Stable
2012-03-03 00:14:03 +01:00
2019-12-25 13:56:38 +01:00
The `dns` module enables name resolution. For example, use it to look up IP
addresses of host names.
2014-11-18 21:56:28 +01:00
2020-03-12 16:52:18 +01:00
Although named for the [Domain Name System (DNS)][], it does not always use the
DNS protocol for lookups. [`dns.lookup()`][] uses the operating system
facilities to perform name resolution. It may not need to perform any network
2020-06-20 06:10:50 +02:00
communication. To perform name resolution the way other applications on the same
system do, use [`dns.lookup()`][].
2014-11-18 21:56:28 +01:00
2019-12-25 13:56:38 +01:00
```js
const dns = require('dns');
dns.lookup('example.org', (err, address, family) => {
console.log('address: %j family: IPv%s', address, family);
});
// address: "93.184.216.34" family: IPv4
```
2014-11-18 21:56:28 +01:00
2019-12-25 13:56:38 +01:00
All other functions in the `dns` module connect to an actual DNS server to
perform name resolution. They will always use the network to perform DNS
queries. These functions do not use the same set of configuration files used by
2020-06-20 06:10:50 +02:00
[`dns.lookup()`][] (e.g. `/etc/hosts` ). Use these functions to always perform
DNS queries, bypassing other name-resolution facilities.
2010-10-28 14:18:16 +02:00
2019-12-25 13:56:38 +01:00
```js
const dns = require('dns');
dns.resolve4('archive.org', (err, addresses) => {
if (err) throw err;
console.log(`addresses: ${JSON.stringify(addresses)}`);
addresses.forEach((a) => {
dns.reverse(a, (err, hostnames) => {
if (err) {
throw err;
}
console.log(`reverse for ${a}: ${JSON.stringify(hostnames)}`);
2010-10-28 14:18:16 +02:00
});
2019-12-25 13:56:38 +01:00
});
});
```
2010-10-28 14:18:16 +02:00
2019-12-25 13:56:38 +01:00
See the [Implementation considerations section][] for more information.
2014-11-18 21:56:28 +01:00
2019-12-23 21:07:51 +01:00
## Class: `dns.Resolver`
2017-07-27 18:54:20 +02:00
<!-- YAML
2017-08-02 12:52:34 +02:00
added: v8.3.0
2017-07-27 18:54:20 +02:00
-->
An independent resolver for DNS requests.
2019-06-20 21:58:22 +02:00
Creating a new resolver uses the default server settings. Setting
2017-07-27 18:54:20 +02:00
the servers used for a resolver using
[`resolver.setServers()`][`dns.setServers()`] does not affect
2018-05-14 12:18:31 +02:00
other resolvers:
2017-07-27 18:54:20 +02:00
```js
const { Resolver } = require('dns');
const resolver = new Resolver();
resolver.setServers(['4.4.4.4']);
// This request will use the server at 4.4.4.4, independent of global settings.
resolver.resolve4('example.org', (err, addresses) => {
// ...
});
```
The following methods from the `dns` module are available:
* [`resolver.getServers()`][`dns.getServers()`]
* [`resolver.resolve()`][`dns.resolve()`]
* [`resolver.resolve4()`][`dns.resolve4()`]
* [`resolver.resolve6()`][`dns.resolve6()`]
* [`resolver.resolveAny()`][`dns.resolveAny()`]
* [`resolver.resolveCname()`][`dns.resolveCname()`]
* [`resolver.resolveMx()`][`dns.resolveMx()`]
* [`resolver.resolveNaptr()`][`dns.resolveNaptr()`]
* [`resolver.resolveNs()`][`dns.resolveNs()`]
* [`resolver.resolvePtr()`][`dns.resolvePtr()`]
* [`resolver.resolveSoa()`][`dns.resolveSoa()`]
* [`resolver.resolveSrv()`][`dns.resolveSrv()`]
* [`resolver.resolveTxt()`][`dns.resolveTxt()`]
* [`resolver.reverse()`][`dns.reverse()`]
2018-06-24 17:27:18 +02:00
* [`resolver.setServers()`][`dns.setServers()`]
2017-07-27 18:54:20 +02:00
2020-05-19 22:39:58 +02:00
### `Resolver([options])`
<!-- YAML
added: v8.3.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/33472
description: The constructor now accepts an `options` object.
The single supported option is `timeout` .
-->
Create a new resolver.
* `options` {Object}
* `timeout` {integer} Query timeout in milliseconds, or `-1` to use the
default timeout.
2019-12-23 21:07:51 +01:00
### `resolver.cancel()`
2017-07-27 19:03:11 +02:00
<!-- YAML
2017-08-02 12:52:34 +02:00
added: v8.3.0
2017-07-27 19:03:11 +02:00
-->
Cancel all outstanding DNS queries made by this resolver. The corresponding
callbacks will be called with an error with code `ECANCELLED` .
2019-12-23 21:07:51 +01:00
## `dns.getServers()`
2016-05-27 18:06:23 +02:00
<!-- YAML
added: v0.11.3
-->
2015-11-04 16:52:13 +01:00
2018-04-11 20:07:14 +02:00
* Returns: {string[]}
2019-03-18 05:32:12 +01:00
Returns an array of IP address strings, formatted according to [RFC 5952][],
2017-06-16 19:27:21 +02:00
that are currently configured for DNS resolution. A string will include a port
section if a custom port is used.
2017-07-03 02:05:59 +02:00
<!-- eslint - disable semi -->
2017-06-16 19:27:21 +02:00
```js
[
'4.4.4.4',
'2001:4860:4860::8888',
'4.4.4.4:1053',
'[2001:4860:4860::8888]:1053'
]
```
2015-11-04 16:52:13 +01:00
2019-12-23 21:07:51 +01:00
## `dns.lookup(hostname[, options], callback)`
2016-05-27 18:06:23 +02:00
<!-- YAML
added: v0.1.90
2017-02-21 23:38:44 +01:00
changes:
2018-09-19 16:58:40 +02:00
- version: v8.5.0
pr-url: https://github.com/nodejs/node/pull/14731
description: The `verbatim` option is supported now.
2017-02-21 23:38:44 +01:00
- version: v1.2.0
pr-url: https://github.com/nodejs/node/pull/744
description: The `all` option is supported now.
2016-05-27 18:06:23 +02:00
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `hostname` {string}
* `options` {integer | Object}
2019-09-13 06:22:29 +02:00
* `family` {integer} The record family. Must be `4` , `6` , or `0` . The value
2019-06-11 02:35:25 +02:00
`0` indicates that IPv4 and IPv6 addresses are both returned. **Default:**
`0` .
2019-09-13 06:22:29 +02:00
* `hints` {number} One or more [supported `getaddrinfo` flags][]. Multiple
2017-03-09 06:33:31 +01:00
flags may be passed by bitwise `OR` ing their values.
2019-09-13 06:22:29 +02:00
* `all` {boolean} When `true` , the callback returns all resolved addresses in
2018-04-02 03:44:32 +02:00
an array. Otherwise, returns a single address. **Default:** `false` .
2019-09-13 06:22:29 +02:00
* `verbatim` {boolean} When `true` , the callback receives IPv4 and IPv6
2018-04-02 07:38:48 +02:00
addresses in the order the DNS resolver returned them. When `false` ,
2017-08-10 11:19:13 +02:00
IPv4 addresses are placed before IPv6 addresses.
2018-02-12 08:31:55 +01:00
**Default:** currently `false` (addresses are reordered) but this is
expected to change in the not too distant future.
2017-08-10 11:19:13 +02:00
New code should use `{ verbatim: true }` .
2018-07-12 19:48:11 +02:00
* `callback` {Function}
2019-09-13 06:22:29 +02:00
* `err` {Error}
* `address` {string} A string representation of an IPv4 or IPv6 address.
* `family` {integer} `4` or `6` , denoting the family of `address` , or `0` if
2019-04-16 20:07:17 +02:00
the address is not an IPv4 or IPv6 address. `0` is a likely indicator of a
bug in the name resolution service used by the operating system.
2010-10-28 14:18:16 +02:00
2019-12-23 17:31:08 +01:00
Resolves a host name (e.g. `'nodejs.org'` ) into the first found A (IPv4) or
2017-03-09 06:33:31 +01:00
AAAA (IPv6) record. All `option` properties are optional. If `options` is an
integer, then it must be `4` or `6` – if `options` is not provided, then IPv4
and IPv6 addresses are both returned if found.
With the `all` option set to `true` , the arguments for `callback` change to
2015-12-27 08:19:45 +01:00
`(err, addresses)` , with `addresses` being an array of objects with the
properties `address` and `family` .
2010-10-28 14:18:16 +02:00
2015-11-28 00:30:32 +01:00
On error, `err` is an [`Error`][] object, where `err.code` is the error code.
2019-05-09 17:07:22 +02:00
Keep in mind that `err.code` will be set to `'ENOTFOUND'` not only when
2019-12-23 17:31:08 +01:00
the host name does not exist but also when the lookup fails in other ways
2012-04-18 15:56:14 +02:00
such as no available file descriptors.
2015-12-27 08:19:45 +01:00
`dns.lookup()` does not necessarily have anything to do with the DNS protocol.
The implementation uses an operating system facility that can associate names
with addresses, and vice versa. This implementation can have subtle but
important consequences on the behavior of any Node.js program. Please take some
time to consult the [Implementation considerations section][] before using
`dns.lookup()` .
2017-02-13 21:04:00 +01:00
Example usage:
```js
const dns = require('dns');
const options = {
family: 6,
hints: dns.ADDRCONFIG | dns.V4MAPPED,
};
dns.lookup('example.com', options, (err, address, family) =>
console.log('address: %j family: IPv%s', address, family));
// address: "2606:2800:220:1:248:1893:25c8:1946" family: IPv6
// When options.all is true, the result will be an Array.
options.all = true;
dns.lookup('example.com', options, (err, addresses) =>
console.log('addresses: %j', addresses));
// addresses: [{"address":"2606:2800:220:1:248:1893:25c8:1946","family":6}]
```
2017-04-16 21:35:29 +02:00
If this method is invoked as its [`util.promisify()`][]ed version, and `all`
2018-04-29 19:46:41 +02:00
is not set to `true` , it returns a `Promise` for an `Object` with `address` and
2017-04-16 21:35:29 +02:00
`family` properties.
2015-12-27 08:19:45 +01:00
### Supported getaddrinfo flags
2020-04-02 18:55:19 +02:00
<!-- YAML
changes:
2020-05-01 14:43:14 +02:00
- version:
- v13.13.0
- v12.17.0
2020-04-02 18:55:19 +02:00
pr-url: https://github.com/nodejs/node/pull/32183
description: Added support for the `dns.ALL` flag.
-->
2014-11-18 21:56:28 +01:00
2015-12-27 08:19:45 +01:00
The following flags can be passed as hints to [`dns.lookup()`][].
2019-09-13 06:22:29 +02:00
* `dns.ADDRCONFIG` : Returned address types are determined by the types
2015-12-27 08:19:45 +01:00
of addresses supported by the current system. For example, IPv4 addresses
are only returned if the current system has at least one IPv4 address
configured. Loopback addresses are not considered.
2019-09-13 06:22:29 +02:00
* `dns.V4MAPPED` : If the IPv6 family was specified, but no IPv6 addresses were
2019-06-20 21:58:22 +02:00
found, then return IPv4 mapped IPv6 addresses. It is not supported
2015-12-27 08:19:45 +01:00
on some operating systems (e.g FreeBSD 10.1).
2020-03-09 23:44:47 +01:00
* `dns.ALL` : If `dns.V4MAPPED` is specified, return resolved IPv6 addresses as
well as IPv4 mapped IPv6 addresses.
2010-10-28 14:18:16 +02:00
2019-12-23 21:07:51 +01:00
## `dns.lookupService(address, port, callback)`
2016-05-27 18:06:23 +02:00
<!-- YAML
added: v0.11.14
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `address` {string}
* `port` {number}
* `callback` {Function}
2019-09-13 06:22:29 +02:00
* `err` {Error}
* `hostname` {string} e.g. `example.com`
* `service` {string} e.g. `http`
2014-06-21 00:43:00 +02:00
2019-12-23 17:31:08 +01:00
Resolves the given `address` and `port` into a host name and service using
2015-12-27 08:19:45 +01:00
the operating system's underlying `getnameinfo` implementation.
2014-06-21 00:43:00 +02:00
2016-01-26 15:15:53 +01:00
If `address` is not a valid IP address, a `TypeError` will be thrown.
The `port` will be coerced to a number. If it is not a legal port, a `TypeError`
will be thrown.
2017-03-09 06:33:31 +01:00
On an error, `err` is an [`Error`][] object, where `err.code` is the error code.
2014-06-21 00:43:00 +02:00
2016-01-17 18:39:07 +01:00
```js
const dns = require('dns');
dns.lookupService('127.0.0.1', 22, (err, hostname, service) => {
console.log(hostname, service);
2016-11-08 21:04:57 +01:00
// Prints: localhost ssh
2016-01-17 18:39:07 +01:00
});
```
2014-06-21 00:43:00 +02:00
2017-04-16 21:35:29 +02:00
If this method is invoked as its [`util.promisify()`][]ed version, it returns a
2018-04-29 19:46:41 +02:00
`Promise` for an `Object` with `hostname` and `service` properties.
2017-04-16 21:35:29 +02:00
2019-12-23 21:07:51 +01:00
## `dns.resolve(hostname[, rrtype], callback)`
2016-05-27 18:06:23 +02:00
<!-- YAML
added: v0.1.27
-->
2019-09-06 07:42:22 +02:00
2019-12-23 17:31:08 +01:00
* `hostname` {string} Host name to resolve.
2018-07-12 19:48:11 +02:00
* `rrtype` {string} Resource record type. **Default:** `'A'` .
* `callback` {Function}
2019-09-13 06:22:29 +02:00
* `err` {Error}
* `records` {string[] | Object[] | Object}
2017-04-19 19:22:08 +02:00
2019-12-23 17:31:08 +01:00
Uses the DNS protocol to resolve a host name (e.g. `'nodejs.org'` ) into an array
2017-04-19 19:22:08 +02:00
of the resource records. The `callback` function has arguments
`(err, records)` . When successful, `records` will be an array of resource
records. The type and structure of individual results varies based on `rrtype` :
| `rrtype` | `records` contains | Result type | Shorthand method |
|-----------|--------------------------------|-------------|--------------------------|
| `'A'` | IPv4 addresses (default) | {string} | [`dns.resolve4()`][] |
| `'AAAA'` | IPv6 addresses | {string} | [`dns.resolve6()`][] |
2018-06-24 17:27:18 +02:00
| `'ANY'` | any records | {Object} | [`dns.resolveAny()`][] |
2017-04-19 19:22:08 +02:00
| `'CNAME'` | canonical name records | {string} | [`dns.resolveCname()`][] |
| `'MX'` | mail exchange records | {Object} | [`dns.resolveMx()`][] |
| `'NAPTR'` | name authority pointer records | {Object} | [`dns.resolveNaptr()`][] |
| `'NS'` | name server records | {string} | [`dns.resolveNs()`][] |
| `'PTR'` | pointer records | {string} | [`dns.resolvePtr()`][] |
| `'SOA'` | start of authority records | {Object} | [`dns.resolveSoa()`][] |
| `'SRV'` | service records | {Object} | [`dns.resolveSrv()`][] |
2017-09-19 14:51:28 +02:00
| `'TXT'` | text records | {string[]} | [`dns.resolveTxt()`][] |
2017-04-19 19:22:08 +02:00
On error, `err` is an [`Error`][] object, where `err.code` is one of the
[DNS error codes ](#dns_error_codes ).
2010-10-28 14:18:16 +02:00
2019-12-23 21:07:51 +01:00
## `dns.resolve4(hostname[, options], callback)`
2016-05-27 18:06:23 +02:00
<!-- YAML
added: v0.1.16
2017-02-21 23:38:44 +01:00
changes:
- version: v7.2.0
pr-url: https://github.com/nodejs/node/pull/9296
description: This method now supports passing `options` ,
specifically `options.ttl` .
2016-05-27 18:06:23 +02:00
-->
2019-09-06 07:42:22 +02:00
2019-12-23 17:31:08 +01:00
* `hostname` {string} Host name to resolve.
2018-07-12 19:48:11 +02:00
* `options` {Object}
2019-09-13 06:22:29 +02:00
* `ttl` {boolean} Retrieve the Time-To-Live value (TTL) of each record.
2017-03-09 06:33:31 +01:00
When `true` , the callback receives an array of
`{ address: '1.2.3.4', ttl: 60 }` objects rather than an array of strings,
with the TTL expressed in seconds.
2018-07-12 19:48:11 +02:00
* `callback` {Function}
2019-09-13 06:22:29 +02:00
* `err` {Error}
* `addresses` {string[] | Object[]}
2010-10-28 14:18:16 +02:00
2015-12-27 08:19:45 +01:00
Uses the DNS protocol to resolve a IPv4 addresses (`A` records) for the
`hostname` . The `addresses` argument passed to the `callback` function
will contain an array of IPv4 addresses (e.g.
2010-10-28 14:18:16 +02:00
`['74.125.79.104', '74.125.79.105', '74.125.79.106']` ).
2019-12-23 21:07:51 +01:00
## `dns.resolve6(hostname[, options], callback)`
2016-05-27 18:06:23 +02:00
<!-- YAML
added: v0.1.16
2017-02-21 23:38:44 +01:00
changes:
- version: v7.2.0
pr-url: https://github.com/nodejs/node/pull/9296
description: This method now supports passing `options` ,
specifically `options.ttl` .
2016-05-27 18:06:23 +02:00
-->
2019-09-06 07:42:22 +02:00
2019-12-23 17:31:08 +01:00
* `hostname` {string} Host name to resolve.
2018-07-12 19:48:11 +02:00
* `options` {Object}
2019-09-13 06:22:29 +02:00
* `ttl` {boolean} Retrieve the Time-To-Live value (TTL) of each record.
2017-03-09 06:33:31 +01:00
When `true` , the callback receives an array of
`{ address: '0:1:2:3:4:5:6:7', ttl: 60 }` objects rather than an array of
strings, with the TTL expressed in seconds.
2018-07-12 19:48:11 +02:00
* `callback` {Function}
2019-09-13 06:22:29 +02:00
* `err` {Error}
* `addresses` {string[] | Object[]}
2010-10-28 14:18:16 +02:00
2015-12-27 08:19:45 +01:00
Uses the DNS protocol to resolve a IPv6 addresses (`AAAA` records) for the
`hostname` . The `addresses` argument passed to the `callback` function
will contain an array of IPv6 addresses.
2010-10-28 14:18:16 +02:00
2019-12-23 21:07:51 +01:00
## `dns.resolveAny(hostname, callback)`
2018-06-24 17:27:18 +02:00
2018-07-12 19:48:11 +02:00
* `hostname` {string}
* `callback` {Function}
2019-09-13 06:22:29 +02:00
* `err` {Error}
* `ret` {Object[]}
2018-06-24 17:27:18 +02:00
Uses the DNS protocol to resolve all records (also known as `ANY` or `*` query).
The `ret` argument passed to the `callback` function will be an array containing
various types of records. Each object has a property `type` that indicates the
type of the current record. And depending on the `type` , additional properties
will be present on the object:
| Type | Properties |
|------|------------|
| `'A'` | `address` /`ttl` |
| `'AAAA'` | `address` /`ttl` |
| `'CNAME'` | `value` |
| `'MX'` | Refer to [`dns.resolveMx()`][] |
| `'NAPTR'` | Refer to [`dns.resolveNaptr()`][] |
| `'NS'` | `value` |
| `'PTR'` | `value` |
| `'SOA'` | Refer to [`dns.resolveSoa()`][] |
| `'SRV'` | Refer to [`dns.resolveSrv()`][] |
| `'TXT'` | This type of record contains an array property called `entries` which refers to [`dns.resolveTxt()`][], e.g. `{ entries: ['...'], type: 'TXT' }` |
Here is an example of the `ret` object passed to the callback:
<!-- eslint - disable semi -->
```js
[ { type: 'A', address: '127.0.0.1', ttl: 299 },
{ type: 'CNAME', value: 'example.com' },
{ type: 'MX', exchange: 'alt4.aspmx.l.example.com', priority: 50 },
{ type: 'NS', value: 'ns1.example.com' },
{ type: 'TXT', entries: [ 'v=spf1 include:_spf.example.com ~all' ] },
{ type: 'SOA',
nsname: 'ns1.example.com',
hostmaster: 'admin.example.com',
serial: 156696742,
refresh: 900,
retry: 900,
expire: 1800,
minttl: 60 } ]
```
2019-03-15 23:01:30 +01:00
DNS server operators may choose not to respond to `ANY`
queries. It may be better to call individual methods like [`dns.resolve4()`][],
[`dns.resolveMx()`][], and so on. For more details, see [RFC 8482][].
2019-12-23 21:07:51 +01:00
## `dns.resolveCname(hostname, callback)`
2016-05-27 18:06:23 +02:00
<!-- YAML
added: v0.3.2
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `hostname` {string}
* `callback` {Function}
2019-09-13 06:22:29 +02:00
* `err` {Error}
* `addresses` {string[]}
2015-11-04 16:52:13 +01:00
2015-12-27 08:19:45 +01:00
Uses the DNS protocol to resolve `CNAME` records for the `hostname` . The
`addresses` argument passed to the `callback` function
2016-03-09 12:09:24 +01:00
will contain an array of canonical name records available for the `hostname`
2015-12-27 08:19:45 +01:00
(e.g. `['bar.example.com']` ).
2010-10-28 14:18:16 +02:00
2019-12-23 21:07:51 +01:00
## `dns.resolveMx(hostname, callback)`
2016-05-27 18:06:23 +02:00
<!-- YAML
added: v0.1.27
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `hostname` {string}
* `callback` {Function}
2019-09-13 06:22:29 +02:00
* `err` {Error}
* `addresses` {Object[]}
2010-10-28 14:18:16 +02:00
2015-12-27 08:19:45 +01:00
Uses the DNS protocol to resolve mail exchange records (`MX` records) for the
`hostname` . The `addresses` argument passed to the `callback` function will
contain an array of objects containing both a `priority` and `exchange`
property (e.g. `[{priority: 10, exchange: 'mx.example.com'}, ...]` ).
2010-10-28 14:18:16 +02:00
2019-12-23 21:07:51 +01:00
## `dns.resolveNaptr(hostname, callback)`
2016-05-27 18:06:23 +02:00
<!-- YAML
added: v0.9.12
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `hostname` {string}
* `callback` {Function}
2019-09-13 06:22:29 +02:00
* `err` {Error}
* `addresses` {Object[]}
2016-05-05 02:45:04 +02:00
Uses the DNS protocol to resolve regular expression based records (`NAPTR`
2017-03-09 06:33:31 +01:00
records) for the `hostname` . The `addresses` argument passed to the `callback`
function will contain an array of objects with the following properties:
2016-05-05 02:45:04 +02:00
* `flags`
* `service`
* `regexp`
* `replacement`
* `order`
* `preference`
2017-07-03 02:05:59 +02:00
<!-- eslint - skip -->
2016-05-05 02:45:04 +02:00
```js
{
flags: 's',
service: 'SIP+D2U',
regexp: '',
replacement: '_sip._udp.example.com',
order: 30,
preference: 100
}
```
2019-12-23 21:07:51 +01:00
## `dns.resolveNs(hostname, callback)`
2016-05-27 18:06:23 +02:00
<!-- YAML
added: v0.1.90
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `hostname` {string}
* `callback` {Function}
2019-09-13 06:22:29 +02:00
* `err` {Error}
* `addresses` {string[]}
2010-10-28 14:18:16 +02:00
2015-12-27 08:19:45 +01:00
Uses the DNS protocol to resolve name server records (`NS` records) for the
`hostname` . The `addresses` argument passed to the `callback` function will
contain an array of name server records available for `hostname`
2016-11-12 08:24:46 +01:00
(e.g. `['ns1.example.com', 'ns2.example.com']` ).
2010-10-28 14:18:16 +02:00
2019-12-23 21:07:51 +01:00
## `dns.resolvePtr(hostname, callback)`
2017-02-13 03:49:35 +01:00
<!-- YAML
added: v6.0.0
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `hostname` {string}
* `callback` {Function}
2019-09-13 06:22:29 +02:00
* `err` {Error}
* `addresses` {string[]}
2017-02-13 03:49:35 +01:00
Uses the DNS protocol to resolve pointer records (`PTR` records) for the
`hostname` . The `addresses` argument passed to the `callback` function will
be an array of strings containing the reply records.
2019-12-23 21:07:51 +01:00
## `dns.resolveSoa(hostname, callback)`
2016-05-27 18:06:23 +02:00
<!-- YAML
added: v0.11.10
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `hostname` {string}
* `callback` {Function}
2019-09-13 06:22:29 +02:00
* `err` {Error}
* `address` {Object}
2013-10-21 15:47:57 +02:00
2015-12-27 08:19:45 +01:00
Uses the DNS protocol to resolve a start of authority record (`SOA` record) for
2017-03-09 06:33:31 +01:00
the `hostname` . The `address` argument passed to the `callback` function will
2015-12-27 08:19:45 +01:00
be an object with the following properties:
* `nsname`
* `hostmaster`
* `serial`
* `refresh`
* `retry`
* `expire`
* `minttl`
2017-07-03 02:05:59 +02:00
<!-- eslint - skip -->
2016-07-09 07:13:09 +02:00
```js
2016-01-17 18:39:07 +01:00
{
nsname: 'ns.example.com',
hostmaster: 'root.example.com',
serial: 2013101809,
refresh: 10000,
retry: 2400,
expire: 604800,
minttl: 3600
}
```
2013-10-21 15:47:57 +02:00
2019-12-23 21:07:51 +01:00
## `dns.resolveSrv(hostname, callback)`
2016-05-27 18:06:23 +02:00
<!-- YAML
added: v0.1.27
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `hostname` {string}
* `callback` {Function}
2019-09-13 06:22:29 +02:00
* `err` {Error}
* `addresses` {Object[]}
2013-10-21 15:47:57 +02:00
2015-12-27 08:19:45 +01:00
Uses the DNS protocol to resolve service records (`SRV` records) for the
`hostname` . The `addresses` argument passed to the `callback` function will
be an array of objects with the following properties:
2013-10-21 15:47:57 +02:00
2015-12-27 08:19:45 +01:00
* `priority`
* `weight`
* `port`
* `name`
2011-05-12 06:49:26 +02:00
2017-07-03 02:05:59 +02:00
<!-- eslint - skip -->
2016-07-09 07:13:09 +02:00
```js
2016-01-17 18:39:07 +01:00
{
priority: 10,
weight: 5,
port: 21223,
name: 'service.example.com'
}
```
2011-05-12 06:49:26 +02:00
2019-12-23 21:07:51 +01:00
## `dns.resolveTxt(hostname, callback)`
2016-05-27 18:06:23 +02:00
<!-- YAML
added: v0.1.27
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `hostname` {string}
* `callback` {Function}
2019-09-13 06:22:29 +02:00
* `err` {Error}
* `records` < a href = "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type" class = "type" > < string[][]> </ a >
2011-05-12 06:49:26 +02:00
2015-12-27 08:19:45 +01:00
Uses the DNS protocol to resolve text queries (`TXT` records) for the
2017-09-19 14:51:28 +02:00
`hostname` . The `records` argument passed to the `callback` function is a
2018-01-25 12:13:13 +01:00
two-dimensional array of the text records available for `hostname` (e.g.
2015-11-04 16:52:13 +01:00
`[ ['v=spf1 ip4:0.0.0.0 ', '~all' ] ]` ). Each sub-array contains TXT chunks of
2015-12-27 08:19:45 +01:00
one record. Depending on the use case, these could be either joined together or
2015-11-04 16:52:13 +01:00
treated separately.
2011-05-12 06:49:26 +02:00
2019-12-23 21:07:51 +01:00
## `dns.reverse(ip, callback)`
2016-05-27 18:06:23 +02:00
<!-- YAML
added: v0.1.16
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `ip` {string}
* `callback` {Function}
2019-09-13 06:22:29 +02:00
* `err` {Error}
* `hostnames` {string[]}
2012-04-18 15:56:14 +02:00
2015-12-27 08:19:45 +01:00
Performs a reverse DNS query that resolves an IPv4 or IPv6 address to an
2019-12-23 17:31:08 +01:00
array of host names.
2012-04-18 15:56:14 +02:00
2015-11-28 00:30:32 +01:00
On error, `err` is an [`Error`][] object, where `err.code` is
2016-01-05 11:49:54 +01:00
one of the [DNS error codes][].
2012-04-18 15:56:14 +02:00
2019-12-23 21:07:51 +01:00
## `dns.setServers(servers)`
2016-05-27 18:06:23 +02:00
<!-- YAML
added: v0.11.3
-->
2019-09-06 07:42:22 +02:00
2019-03-18 05:32:12 +01:00
* `servers` {string[]} array of [RFC 5952][] formatted addresses
2017-06-16 19:27:21 +02:00
Sets the IP address and port of servers to be used when performing DNS
2019-03-18 05:32:12 +01:00
resolution. The `servers` argument is an array of [RFC 5952][] formatted
2017-06-16 19:27:21 +02:00
addresses. If the port is the IANA default DNS port (53) it can be omitted.
2013-05-08 21:56:08 +02:00
2017-06-16 19:27:21 +02:00
```js
dns.setServers([
'4.4.4.4',
'[2001:4860:4860::8888]',
'4.4.4.4:1053',
'[2001:4860:4860::8888]:1053'
]);
```
2013-05-08 21:56:08 +02:00
2015-12-27 08:19:45 +01:00
An error will be thrown if an invalid address is provided.
The `dns.setServers()` method must not be called while a DNS query is in
progress.
2013-05-08 21:56:08 +02:00
2019-01-18 19:04:17 +01:00
The [`dns.setServers()`][] method affects only [`dns.resolve()`][],
2019-04-08 22:41:10 +02:00
`dns.resolve*()` and [`dns.reverse()`][] (and specifically *not*
2019-01-18 19:04:17 +01:00
[`dns.lookup()`][]).
2019-06-20 21:58:22 +02:00
This method works much like
2018-06-22 19:37:15 +02:00
[resolve.conf ](http://man7.org/linux/man-pages/man5/resolv.conf.5.html ).
That is, if attempting to resolve with the first server provided results in a
`NOTFOUND` error, the `resolve()` method will *not* attempt to resolve with
subsequent servers provided. Fallback DNS servers will only be used if the
earlier ones time out or result in some other error.
2020-06-14 23:49:34 +02:00
## DNS promises API
2018-06-11 20:56:33 +02:00
The `dns.promises` API provides an alternative set of asynchronous DNS methods
that return `Promise` objects rather than using callbacks. The API is accessible
2020-04-20 21:46:26 +02:00
via `require('dns').promises` or `require('dns/promises')` .
2018-06-11 20:56:33 +02:00
2019-12-23 21:07:51 +01:00
### Class: `dnsPromises.Resolver`
2018-06-11 20:56:33 +02:00
<!-- YAML
2018-07-03 09:44:13 +02:00
added: v10.6.0
2018-06-11 20:56:33 +02:00
-->
An independent resolver for DNS requests.
2019-06-20 21:58:22 +02:00
Creating a new resolver uses the default server settings. Setting
2018-06-11 20:56:33 +02:00
the servers used for a resolver using
[`resolver.setServers()`][`dnsPromises.setServers()`] does not affect
other resolvers:
```js
const { Resolver } = require('dns').promises;
const resolver = new Resolver();
resolver.setServers(['4.4.4.4']);
// This request will use the server at 4.4.4.4, independent of global settings.
resolver.resolve4('example.org').then((addresses) => {
// ...
});
// Alternatively, the same code can be written using async-await style.
(async function() {
const addresses = await resolver.resolve4('example.org');
})();
```
The following methods from the `dnsPromises` API are available:
* [`resolver.getServers()`][`dnsPromises.getServers()`]
* [`resolver.resolve()`][`dnsPromises.resolve()`]
* [`resolver.resolve4()`][`dnsPromises.resolve4()`]
* [`resolver.resolve6()`][`dnsPromises.resolve6()`]
* [`resolver.resolveAny()`][`dnsPromises.resolveAny()`]
* [`resolver.resolveCname()`][`dnsPromises.resolveCname()`]
* [`resolver.resolveMx()`][`dnsPromises.resolveMx()`]
* [`resolver.resolveNaptr()`][`dnsPromises.resolveNaptr()`]
* [`resolver.resolveNs()`][`dnsPromises.resolveNs()`]
* [`resolver.resolvePtr()`][`dnsPromises.resolvePtr()`]
* [`resolver.resolveSoa()`][`dnsPromises.resolveSoa()`]
* [`resolver.resolveSrv()`][`dnsPromises.resolveSrv()`]
* [`resolver.resolveTxt()`][`dnsPromises.resolveTxt()`]
* [`resolver.reverse()`][`dnsPromises.reverse()`]
2018-06-24 17:27:18 +02:00
* [`resolver.setServers()`][`dnsPromises.setServers()`]
2018-06-11 20:56:33 +02:00
2019-12-23 21:07:51 +01:00
### `dnsPromises.getServers()`
2018-06-11 20:56:33 +02:00
<!-- YAML
2018-07-03 09:44:13 +02:00
added: v10.6.0
2018-06-11 20:56:33 +02:00
-->
* Returns: {string[]}
2019-03-18 05:32:12 +01:00
Returns an array of IP address strings, formatted according to [RFC 5952][],
2018-06-11 20:56:33 +02:00
that are currently configured for DNS resolution. A string will include a port
section if a custom port is used.
<!-- eslint - disable semi -->
```js
[
'4.4.4.4',
'2001:4860:4860::8888',
'4.4.4.4:1053',
'[2001:4860:4860::8888]:1053'
]
```
2019-12-23 21:07:51 +01:00
### `dnsPromises.lookup(hostname[, options])`
2018-06-11 20:56:33 +02:00
<!-- YAML
2018-07-03 09:44:13 +02:00
added: v10.6.0
2018-06-11 20:56:33 +02:00
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `hostname` {string}
* `options` {integer | Object}
2019-09-13 06:22:29 +02:00
* `family` {integer} The record family. Must be `4` , `6` , or `0` . The value
2019-06-11 02:35:25 +02:00
`0` indicates that IPv4 and IPv6 addresses are both returned. **Default:**
`0` .
2019-09-13 06:22:29 +02:00
* `hints` {number} One or more [supported `getaddrinfo` flags][]. Multiple
2018-06-11 20:56:33 +02:00
flags may be passed by bitwise `OR` ing their values.
2019-09-13 06:22:29 +02:00
* `all` {boolean} When `true` , the `Promise` is resolved with all addresses in
2018-06-11 20:56:33 +02:00
an array. Otherwise, returns a single address. **Default:** `false` .
2019-09-13 06:22:29 +02:00
* `verbatim` {boolean} When `true` , the `Promise` is resolved with IPv4 and
2018-06-11 20:56:33 +02:00
IPv6 addresses in the order the DNS resolver returned them. When `false` ,
IPv4 addresses are placed before IPv6 addresses.
**Default:** currently `false` (addresses are reordered) but this is
expected to change in the not too distant future.
New code should use `{ verbatim: true }` .
2019-12-23 17:31:08 +01:00
Resolves a host name (e.g. `'nodejs.org'` ) into the first found A (IPv4) or
2018-06-11 20:56:33 +02:00
AAAA (IPv6) record. All `option` properties are optional. If `options` is an
integer, then it must be `4` or `6` – if `options` is not provided, then IPv4
and IPv6 addresses are both returned if found.
With the `all` option set to `true` , the `Promise` is resolved with `addresses`
being an array of objects with the properties `address` and `family` .
On error, the `Promise` is rejected with an [`Error`][] object, where `err.code`
is the error code.
2019-05-09 17:07:22 +02:00
Keep in mind that `err.code` will be set to `'ENOTFOUND'` not only when
2019-12-23 17:31:08 +01:00
the host name does not exist but also when the lookup fails in other ways
2018-06-11 20:56:33 +02:00
such as no available file descriptors.
[`dnsPromises.lookup()`][] does not necessarily have anything to do with the DNS
protocol. The implementation uses an operating system facility that can
associate names with addresses, and vice versa. This implementation can have
subtle but important consequences on the behavior of any Node.js program. Please
take some time to consult the [Implementation considerations section][] before
using `dnsPromises.lookup()` .
Example usage:
```js
const dns = require('dns');
const dnsPromises = dns.promises;
const options = {
family: 6,
hints: dns.ADDRCONFIG | dns.V4MAPPED,
};
dnsPromises.lookup('example.com', options).then((result) => {
console.log('address: %j family: IPv%s', result.address, result.family);
// address: "2606:2800:220:1:248:1893:25c8:1946" family: IPv6
});
// When options.all is true, the result will be an Array.
options.all = true;
dnsPromises.lookup('example.com', options).then((result) => {
console.log('addresses: %j', result);
// addresses: [{"address":"2606:2800:220:1:248:1893:25c8:1946","family":6}]
});
```
2019-12-23 21:07:51 +01:00
### `dnsPromises.lookupService(address, port)`
2018-06-11 20:56:33 +02:00
<!-- YAML
2018-07-03 09:44:13 +02:00
added: v10.6.0
2018-06-11 20:56:33 +02:00
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `address` {string}
* `port` {number}
2018-06-11 20:56:33 +02:00
2019-12-23 17:31:08 +01:00
Resolves the given `address` and `port` into a host name and service using
2018-06-11 20:56:33 +02:00
the operating system's underlying `getnameinfo` implementation.
If `address` is not a valid IP address, a `TypeError` will be thrown.
The `port` will be coerced to a number. If it is not a legal port, a `TypeError`
will be thrown.
On error, the `Promise` is rejected with an [`Error`][] object, where `err.code`
is the error code.
```js
const dnsPromises = require('dns').promises;
dnsPromises.lookupService('127.0.0.1', 22).then((result) => {
console.log(result.hostname, result.service);
// Prints: localhost ssh
});
```
2019-12-23 21:07:51 +01:00
### `dnsPromises.resolve(hostname[, rrtype])`
2018-06-11 20:56:33 +02:00
<!-- YAML
2018-07-03 09:44:13 +02:00
added: v10.6.0
2018-06-11 20:56:33 +02:00
-->
2019-09-06 07:42:22 +02:00
2019-12-23 17:31:08 +01:00
* `hostname` {string} Host name to resolve.
2018-07-12 19:48:11 +02:00
* `rrtype` {string} Resource record type. **Default:** `'A'` .
2018-06-11 20:56:33 +02:00
2019-12-23 17:31:08 +01:00
Uses the DNS protocol to resolve a host name (e.g. `'nodejs.org'` ) into an array
2018-06-11 20:56:33 +02:00
of the resource records. When successful, the `Promise` is resolved with an
array of resource records. The type and structure of individual results vary
based on `rrtype` :
| `rrtype` | `records` contains | Result type | Shorthand method |
|-----------|--------------------------------|-------------|--------------------------|
| `'A'` | IPv4 addresses (default) | {string} | [`dnsPromises.resolve4()`][] |
| `'AAAA'` | IPv6 addresses | {string} | [`dnsPromises.resolve6()`][] |
2018-06-24 17:27:18 +02:00
| `'ANY'` | any records | {Object} | [`dnsPromises.resolveAny()`][] |
2018-06-11 20:56:33 +02:00
| `'CNAME'` | canonical name records | {string} | [`dnsPromises.resolveCname()`][] |
| `'MX'` | mail exchange records | {Object} | [`dnsPromises.resolveMx()`][] |
| `'NAPTR'` | name authority pointer records | {Object} | [`dnsPromises.resolveNaptr()`][] |
| `'NS'` | name server records | {string} | [`dnsPromises.resolveNs()`][] |
| `'PTR'` | pointer records | {string} | [`dnsPromises.resolvePtr()`][] |
| `'SOA'` | start of authority records | {Object} | [`dnsPromises.resolveSoa()`][] |
| `'SRV'` | service records | {Object} | [`dnsPromises.resolveSrv()`][] |
| `'TXT'` | text records | {string[]} | [`dnsPromises.resolveTxt()`][] |
On error, the `Promise` is rejected with an [`Error`][] object, where `err.code`
is one of the [DNS error codes ](#dns_error_codes ).
2019-12-23 21:07:51 +01:00
### `dnsPromises.resolve4(hostname[, options])`
2018-06-11 20:56:33 +02:00
<!-- YAML
2018-07-03 09:44:13 +02:00
added: v10.6.0
2018-06-11 20:56:33 +02:00
-->
2019-09-06 07:42:22 +02:00
2019-12-23 17:31:08 +01:00
* `hostname` {string} Host name to resolve.
2018-07-12 19:48:11 +02:00
* `options` {Object}
2019-09-13 06:22:29 +02:00
* `ttl` {boolean} Retrieve the Time-To-Live value (TTL) of each record.
2018-06-11 20:56:33 +02:00
When `true` , the `Promise` is resolved with an array of
`{ address: '1.2.3.4', ttl: 60 }` objects rather than an array of strings,
with the TTL expressed in seconds.
Uses the DNS protocol to resolve IPv4 addresses (`A` records) for the
`hostname` . On success, the `Promise` is resolved with an array of IPv4
addresses (e.g. `['74.125.79.104', '74.125.79.105', '74.125.79.106']` ).
2019-12-23 21:07:51 +01:00
### `dnsPromises.resolve6(hostname[, options])`
2018-06-11 20:56:33 +02:00
<!-- YAML
2018-07-03 09:44:13 +02:00
added: v10.6.0
2018-06-11 20:56:33 +02:00
-->
2019-09-06 07:42:22 +02:00
2019-12-23 17:31:08 +01:00
* `hostname` {string} Host name to resolve.
2018-07-12 19:48:11 +02:00
* `options` {Object}
2019-09-13 06:22:29 +02:00
* `ttl` {boolean} Retrieve the Time-To-Live value (TTL) of each record.
2018-06-11 20:56:33 +02:00
When `true` , the `Promise` is resolved with an array of
`{ address: '0:1:2:3:4:5:6:7', ttl: 60 }` objects rather than an array of
strings, with the TTL expressed in seconds.
Uses the DNS protocol to resolve IPv6 addresses (`AAAA` records) for the
`hostname` . On success, the `Promise` is resolved with an array of IPv6
addresses.
2019-12-23 21:07:51 +01:00
### `dnsPromises.resolveAny(hostname)`
2018-06-24 17:27:18 +02:00
<!-- YAML
2018-07-03 09:44:13 +02:00
added: v10.6.0
2018-06-24 17:27:18 +02:00
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `hostname` {string}
2018-06-24 17:27:18 +02:00
Uses the DNS protocol to resolve all records (also known as `ANY` or `*` query).
On success, the `Promise` is resolved with an array containing various types of
records. Each object has a property `type` that indicates the type of the
current record. And depending on the `type` , additional properties will be
present on the object:
| Type | Properties |
|------|------------|
| `'A'` | `address` /`ttl` |
| `'AAAA'` | `address` /`ttl` |
| `'CNAME'` | `value` |
| `'MX'` | Refer to [`dnsPromises.resolveMx()`][] |
| `'NAPTR'` | Refer to [`dnsPromises.resolveNaptr()`][] |
| `'NS'` | `value` |
| `'PTR'` | `value` |
| `'SOA'` | Refer to [`dnsPromises.resolveSoa()`][] |
| `'SRV'` | Refer to [`dnsPromises.resolveSrv()`][] |
| `'TXT'` | This type of record contains an array property called `entries` which refers to [`dnsPromises.resolveTxt()`][], e.g. `{ entries: ['...'], type: 'TXT' }` |
Here is an example of the result object:
<!-- eslint - disable semi -->
```js
[ { type: 'A', address: '127.0.0.1', ttl: 299 },
{ type: 'CNAME', value: 'example.com' },
{ type: 'MX', exchange: 'alt4.aspmx.l.example.com', priority: 50 },
{ type: 'NS', value: 'ns1.example.com' },
{ type: 'TXT', entries: [ 'v=spf1 include:_spf.example.com ~all' ] },
{ type: 'SOA',
nsname: 'ns1.example.com',
hostmaster: 'admin.example.com',
serial: 156696742,
refresh: 900,
retry: 900,
expire: 1800,
minttl: 60 } ]
```
2019-12-23 21:07:51 +01:00
### `dnsPromises.resolveCname(hostname)`
2018-06-11 20:56:33 +02:00
<!-- YAML
2018-07-03 09:44:13 +02:00
added: v10.6.0
2018-06-11 20:56:33 +02:00
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `hostname` {string}
2018-06-11 20:56:33 +02:00
Uses the DNS protocol to resolve `CNAME` records for the `hostname` . On success,
the `Promise` is resolved with an array of canonical name records available for
the `hostname` (e.g. `['bar.example.com']` ).
2019-12-23 21:07:51 +01:00
### `dnsPromises.resolveMx(hostname)`
2018-06-11 20:56:33 +02:00
<!-- YAML
2018-07-03 09:44:13 +02:00
added: v10.6.0
2018-06-11 20:56:33 +02:00
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `hostname` {string}
2018-06-11 20:56:33 +02:00
Uses the DNS protocol to resolve mail exchange records (`MX` records) for the
`hostname` . On success, the `Promise` is resolved with an array of objects
containing both a `priority` and `exchange` property (e.g.
`[{priority: 10, exchange: 'mx.example.com'}, ...]` ).
2019-12-23 21:07:51 +01:00
### `dnsPromises.resolveNaptr(hostname)`
2018-06-11 20:56:33 +02:00
<!-- YAML
2018-07-03 09:44:13 +02:00
added: v10.6.0
2018-06-11 20:56:33 +02:00
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `hostname` {string}
2018-06-11 20:56:33 +02:00
Uses the DNS protocol to resolve regular expression based records (`NAPTR`
records) for the `hostname` . On success, the `Promise` is resolved with an array
of objects with the following properties:
* `flags`
* `service`
* `regexp`
* `replacement`
* `order`
* `preference`
<!-- eslint - skip -->
```js
{
flags: 's',
service: 'SIP+D2U',
regexp: '',
replacement: '_sip._udp.example.com',
order: 30,
preference: 100
}
```
2019-12-23 21:07:51 +01:00
### `dnsPromises.resolveNs(hostname)`
2018-06-11 20:56:33 +02:00
<!-- YAML
2018-07-03 09:44:13 +02:00
added: v10.6.0
2018-06-11 20:56:33 +02:00
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `hostname` {string}
2018-06-11 20:56:33 +02:00
Uses the DNS protocol to resolve name server records (`NS` records) for the
`hostname` . On success, the `Promise` is resolved with an array of name server
records available for `hostname` (e.g.
`['ns1.example.com', 'ns2.example.com']` ).
2019-12-23 21:07:51 +01:00
### `dnsPromises.resolvePtr(hostname)`
2018-06-11 20:56:33 +02:00
<!-- YAML
2018-07-03 09:44:13 +02:00
added: v10.6.0
2018-06-11 20:56:33 +02:00
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `hostname` {string}
2018-06-11 20:56:33 +02:00
Uses the DNS protocol to resolve pointer records (`PTR` records) for the
`hostname` . On success, the `Promise` is resolved with an array of strings
containing the reply records.
2019-12-23 21:07:51 +01:00
### `dnsPromises.resolveSoa(hostname)`
2018-06-11 20:56:33 +02:00
<!-- YAML
2018-07-03 09:44:13 +02:00
added: v10.6.0
2018-06-11 20:56:33 +02:00
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `hostname` {string}
2018-06-11 20:56:33 +02:00
Uses the DNS protocol to resolve a start of authority record (`SOA` record) for
the `hostname` . On success, the `Promise` is resolved with an object with the
following properties:
* `nsname`
* `hostmaster`
* `serial`
* `refresh`
* `retry`
* `expire`
* `minttl`
<!-- eslint - skip -->
```js
{
nsname: 'ns.example.com',
hostmaster: 'root.example.com',
serial: 2013101809,
refresh: 10000,
retry: 2400,
expire: 604800,
minttl: 3600
}
```
2019-12-23 21:07:51 +01:00
### `dnsPromises.resolveSrv(hostname)`
2018-06-11 20:56:33 +02:00
<!-- YAML
2018-07-03 09:44:13 +02:00
added: v10.6.0
2018-06-11 20:56:33 +02:00
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `hostname` {string}
2018-06-11 20:56:33 +02:00
Uses the DNS protocol to resolve service records (`SRV` records) for the
`hostname` . On success, the `Promise` is resolved with an array of objects with
the following properties:
* `priority`
* `weight`
* `port`
* `name`
<!-- eslint - skip -->
```js
{
priority: 10,
weight: 5,
port: 21223,
name: 'service.example.com'
}
```
2019-12-23 21:07:51 +01:00
### `dnsPromises.resolveTxt(hostname)`
2018-06-11 20:56:33 +02:00
<!-- YAML
2018-07-03 09:44:13 +02:00
added: v10.6.0
2018-06-11 20:56:33 +02:00
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `hostname` {string}
2018-06-11 20:56:33 +02:00
Uses the DNS protocol to resolve text queries (`TXT` records) for the
`hostname` . On success, the `Promise` is resolved with a two-dimensional array
of the text records available for `hostname` (e.g.
`[ ['v=spf1 ip4:0.0.0.0 ', '~all' ] ]` ). Each sub-array contains TXT chunks of
one record. Depending on the use case, these could be either joined together or
treated separately.
2019-12-23 21:07:51 +01:00
### `dnsPromises.reverse(ip)`
2018-06-11 20:56:33 +02:00
<!-- YAML
2018-07-03 09:44:13 +02:00
added: v10.6.0
2018-06-11 20:56:33 +02:00
-->
2019-09-06 07:42:22 +02:00
2018-07-12 19:48:11 +02:00
* `ip` {string}
2018-06-11 20:56:33 +02:00
Performs a reverse DNS query that resolves an IPv4 or IPv6 address to an
2019-12-23 17:31:08 +01:00
array of host names.
2018-06-11 20:56:33 +02:00
On error, the `Promise` is rejected with an [`Error`][] object, where `err.code`
is one of the [DNS error codes ](#dns_error_codes ).
2019-12-23 21:07:51 +01:00
### `dnsPromises.setServers(servers)`
2018-06-11 20:56:33 +02:00
<!-- YAML
2018-07-03 09:44:13 +02:00
added: v10.6.0
2018-06-11 20:56:33 +02:00
-->
2019-09-06 07:42:22 +02:00
2019-03-18 05:32:12 +01:00
* `servers` {string[]} array of [RFC 5952][] formatted addresses
2018-06-11 20:56:33 +02:00
Sets the IP address and port of servers to be used when performing DNS
2019-03-18 05:32:12 +01:00
resolution. The `servers` argument is an array of [RFC 5952][] formatted
2018-06-11 20:56:33 +02:00
addresses. If the port is the IANA default DNS port (53) it can be omitted.
```js
dnsPromises.setServers([
'4.4.4.4',
'[2001:4860:4860::8888]',
'4.4.4.4:1053',
'[2001:4860:4860::8888]:1053'
]);
```
An error will be thrown if an invalid address is provided.
The `dnsPromises.setServers()` method must not be called while a DNS query is in
progress.
2019-06-20 21:58:22 +02:00
This method works much like
2018-06-22 19:37:15 +02:00
[resolve.conf ](http://man7.org/linux/man-pages/man5/resolv.conf.5.html ).
That is, if attempting to resolve with the first server provided results in a
`NOTFOUND` error, the `resolve()` method will *not* attempt to resolve with
subsequent servers provided. Fallback DNS servers will only be used if the
earlier ones time out or result in some other error.
2012-04-18 15:56:14 +02:00
## Error codes
Each DNS query can return one of the following error codes:
2019-09-13 06:22:29 +02:00
* `dns.NODATA` : DNS server returned answer with no data.
* `dns.FORMERR` : DNS server claims query was misformatted.
* `dns.SERVFAIL` : DNS server returned general failure.
* `dns.NOTFOUND` : Domain name not found.
* `dns.NOTIMP` : DNS server does not implement requested operation.
* `dns.REFUSED` : DNS server refused query.
* `dns.BADQUERY` : Misformatted DNS query.
2019-12-23 17:31:08 +01:00
* `dns.BADNAME` : Misformatted host name.
2019-09-13 06:22:29 +02:00
* `dns.BADFAMILY` : Unsupported address family.
* `dns.BADRESP` : Misformatted DNS reply.
* `dns.CONNREFUSED` : Could not contact DNS servers.
* `dns.TIMEOUT` : Timeout while contacting DNS servers.
* `dns.EOF` : End of file.
* `dns.FILE` : Error reading file.
* `dns.NOMEM` : Out of memory.
* `dns.DESTRUCTION` : Channel is being destroyed.
* `dns.BADSTR` : Misformatted string.
* `dns.BADFLAGS` : Illegal flags specified.
2019-12-23 17:31:08 +01:00
* `dns.NONAME` : Given host name is not numeric.
2019-09-13 06:22:29 +02:00
* `dns.BADHINTS` : Illegal hints flags specified.
* `dns.NOTINITIALIZED` : c-ares library initialization not yet performed.
* `dns.LOADIPHLPAPI` : Error loading `iphlpapi.dll` .
* `dns.ADDRGETNETWORKPARAMS` : Could not find `GetNetworkParams` function.
* `dns.CANCELLED` : DNS query cancelled.
2014-05-22 04:13:09 +02:00
2014-11-18 21:56:28 +01:00
## Implementation considerations
2015-12-27 08:19:45 +01:00
Although [`dns.lookup()`][] and the various `dns.resolve*()/dns.reverse()`
functions have the same goal of associating a network name with a network
address (or vice versa), their behavior is quite different. These differences
can have subtle but significant consequences on the behavior of Node.js
programs.
2014-11-18 21:56:28 +01:00
2015-12-27 08:19:45 +01:00
### `dns.lookup()`
2014-11-18 21:56:28 +01:00
2015-12-15 00:20:25 +01:00
Under the hood, [`dns.lookup()`][] uses the same operating system facilities
as most other programs. For instance, [`dns.lookup()`][] will almost always
resolve a given name the same way as the `ping` command. On most POSIX-like
operating systems, the behavior of the [`dns.lookup()`][] function can be
2016-11-16 03:00:30 +01:00
modified by changing settings in nsswitch.conf(5) and/or resolv.conf(5),
2019-06-20 21:58:22 +02:00
but changing these files will change the behavior of all other
programs running on the same operating system.
2015-12-27 08:19:45 +01:00
Though the call to `dns.lookup()` will be asynchronous from JavaScript's
2017-08-23 23:59:06 +02:00
perspective, it is implemented as a synchronous call to getaddrinfo(3) that runs
on libuv's threadpool. This can have surprising negative performance
implications for some applications, see the [`UV_THREADPOOL_SIZE`][]
documentation for more information.
2019-06-20 21:58:22 +02:00
Various networking APIs will call `dns.lookup()` internally to resolve
2019-12-23 17:31:08 +01:00
host names. If that is an issue, consider resolving the host name to an address
2017-08-23 23:59:06 +02:00
using `dns.resolve()` and using the address instead of a host name. Also, some
networking APIs (such as [`socket.connect()`][] and [`dgram.createSocket()`][])
allow the default resolver, `dns.lookup()` , to be replaced.
2014-11-18 21:56:28 +01:00
2015-12-27 08:19:45 +01:00
### `dns.resolve()`, `dns.resolve*()` and `dns.reverse()`
2014-11-18 21:56:28 +01:00
2015-12-15 00:20:25 +01:00
These functions are implemented quite differently than [`dns.lookup()`][]. They
2016-11-16 03:00:30 +01:00
do not use getaddrinfo(3) and they _always_ perform a DNS query on the
2015-12-15 00:20:25 +01:00
network. This network communication is always done asynchronously, and does not
use libuv's threadpool.
2014-11-18 21:56:28 +01:00
As a result, these functions cannot have the same negative impact on other
2015-11-28 00:30:32 +01:00
processing that happens on libuv's threadpool that [`dns.lookup()`][] can have.
2014-11-18 21:56:28 +01:00
2015-11-28 00:30:32 +01:00
They do not use the same set of configuration files than what [`dns.lookup()`][]
2014-11-18 21:56:28 +01:00
uses. For instance, _they do not use the configuration from `/etc/hosts`_ .
2015-10-06 15:21:22 +02:00
2017-05-08 18:30:13 +02:00
[`Error`]: errors.html#errors_class_error
2017-08-23 23:59:06 +02:00
[`UV_THREADPOOL_SIZE`]: cli.html#cli_uv_threadpool_size_size
[`dgram.createSocket()`]: dgram.html#dgram_dgram_createsocket_options_callback
2017-08-23 22:35:30 +02:00
[`dns.getServers()`]: #dns_dns_getservers
2015-11-28 00:30:32 +01:00
[`dns.lookup()`]: #dns_dns_lookup_hostname_options_callback
2017-07-27 18:54:20 +02:00
[`dns.resolve()`]: #dns_dns_resolve_hostname_rrtype_callback
2017-04-19 19:22:08 +02:00
[`dns.resolve4()`]: #dns_dns_resolve4_hostname_options_callback
[`dns.resolve6()`]: #dns_dns_resolve6_hostname_options_callback
2017-08-23 22:35:30 +02:00
[`dns.resolveAny()`]: #dns_dns_resolveany_hostname_callback
2017-04-19 19:22:08 +02:00
[`dns.resolveCname()`]: #dns_dns_resolvecname_hostname_callback
[`dns.resolveMx()`]: #dns_dns_resolvemx_hostname_callback
[`dns.resolveNaptr()`]: #dns_dns_resolvenaptr_hostname_callback
[`dns.resolveNs()`]: #dns_dns_resolvens_hostname_callback
[`dns.resolvePtr()`]: #dns_dns_resolveptr_hostname_callback
2016-07-04 11:12:32 +02:00
[`dns.resolveSoa()`]: #dns_dns_resolvesoa_hostname_callback
2017-04-19 19:22:08 +02:00
[`dns.resolveSrv()`]: #dns_dns_resolvesrv_hostname_callback
[`dns.resolveTxt()`]: #dns_dns_resolvetxt_hostname_callback
2017-07-27 18:54:20 +02:00
[`dns.reverse()`]: #dns_dns_reverse_ip_callback
2017-08-23 22:35:30 +02:00
[`dns.setServers()`]: #dns_dns_setservers_servers
2018-06-11 20:56:33 +02:00
[`dnsPromises.getServers()`]: #dns_dnspromises_getservers
[`dnsPromises.lookup()`]: #dns_dnspromises_lookup_hostname_options
[`dnsPromises.resolve()`]: #dns_dnspromises_resolve_hostname_rrtype
[`dnsPromises.resolve4()`]: #dns_dnspromises_resolve4_hostname_options
[`dnsPromises.resolve6()`]: #dns_dnspromises_resolve6_hostname_options
[`dnsPromises.resolveAny()`]: #dns_dnspromises_resolveany_hostname
[`dnsPromises.resolveCname()`]: #dns_dnspromises_resolvecname_hostname
[`dnsPromises.resolveMx()`]: #dns_dnspromises_resolvemx_hostname
[`dnsPromises.resolveNaptr()`]: #dns_dnspromises_resolvenaptr_hostname
[`dnsPromises.resolveNs()`]: #dns_dnspromises_resolvens_hostname
[`dnsPromises.resolvePtr()`]: #dns_dnspromises_resolveptr_hostname
[`dnsPromises.resolveSoa()`]: #dns_dnspromises_resolvesoa_hostname
[`dnsPromises.resolveSrv()`]: #dns_dnspromises_resolvesrv_hostname
[`dnsPromises.resolveTxt()`]: #dns_dnspromises_resolvetxt_hostname
[`dnsPromises.reverse()`]: #dns_dnspromises_reverse_ip
[`dnsPromises.setServers()`]: #dns_dnspromises_setservers_servers
2017-08-23 23:59:06 +02:00
[`socket.connect()`]: net.html#net_socket_connect_options_connectlistener
2017-08-23 22:35:30 +02:00
[`util.promisify()`]: util.html#util_util_promisify_original
2017-05-08 18:30:13 +02:00
[DNS error codes]: #dns_error_codes
2020-03-12 16:52:18 +01:00
[Domain Name System (DNS)]: https://en.wikipedia.org/wiki/Domain_Name_System
2015-11-28 00:30:32 +01:00
[Implementation considerations section]: #dns_implementation_considerations
2019-03-18 05:32:12 +01:00
[RFC 5952]: https://tools.ietf.org/html/rfc5952#section-6
2020-06-20 06:15:40 +02:00
[RFC 8482]: https://tools.ietf.org/html/rfc8482
2015-11-28 00:30:32 +01:00
[supported `getaddrinfo` flags]: #dns_supported_getaddrinfo_flags