2012-02-27 20:08:41 +01:00
|
|
|
|
# DNS
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
|
> Stability: 2 - Stable
|
2012-03-03 00:14:03 +01:00
|
|
|
|
|
2015-12-27 08:19:45 +01:00
|
|
|
|
The `dns` module contains functions belonging to two different categories:
|
2014-11-18 21:56:28 +01:00
|
|
|
|
|
|
|
|
|
1) Functions that use the underlying operating system facilities to perform
|
2015-12-27 08:19:45 +01:00
|
|
|
|
name resolution, and that do not necessarily perform any network communication.
|
2016-09-20 06:44:22 +02:00
|
|
|
|
This category contains only one function: [`dns.lookup()`][]. **Developers
|
2015-12-15 00:20:25 +01:00
|
|
|
|
looking to perform name resolution in the same way that other applications on
|
2016-09-20 06:44:22 +02:00
|
|
|
|
the same operating system behave should use [`dns.lookup()`][].**
|
2014-11-18 21:56:28 +01:00
|
|
|
|
|
2017-01-26 17:07:54 +01:00
|
|
|
|
For example, looking up `iana.org`.
|
2014-11-18 21:56:28 +01:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
|
|
|
|
const dns = require('dns');
|
2014-11-18 21:56:28 +01:00
|
|
|
|
|
2017-02-13 21:04:00 +01:00
|
|
|
|
dns.lookup('iana.org', (err, address, family) => {
|
|
|
|
|
console.log('address: %j family: IPv%s', address, family);
|
2016-01-17 18:39:07 +01:00
|
|
|
|
});
|
2017-02-13 21:04:00 +01:00
|
|
|
|
// address: "192.0.43.8" family: IPv4
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```
|
2014-11-18 21:56:28 +01:00
|
|
|
|
|
|
|
|
|
2) Functions that connect to an actual DNS server to perform name resolution,
|
|
|
|
|
and that _always_ use the network to perform DNS queries. This category
|
2015-12-27 08:19:45 +01:00
|
|
|
|
contains all functions in the `dns` module _except_ [`dns.lookup()`][]. These
|
|
|
|
|
functions do not use the same set of configuration files used by
|
|
|
|
|
[`dns.lookup()`][] (e.g. `/etc/hosts`). These functions should be used by
|
|
|
|
|
developers who do not want to use the underlying operating system's facilities
|
|
|
|
|
for name resolution, and instead want to _always_ perform DNS queries.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2017-01-26 17:07:54 +01:00
|
|
|
|
Below is an example that resolves `'archive.org'` then reverse resolves the IP
|
2015-12-27 08:19:45 +01:00
|
|
|
|
addresses that are returned.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
|
|
|
|
const dns = require('dns');
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2017-01-26 17:07:54 +01:00
|
|
|
|
dns.resolve4('archive.org', (err, addresses) => {
|
2016-01-17 18:39:07 +01:00
|
|
|
|
if (err) throw err;
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
console.log(`addresses: ${JSON.stringify(addresses)}`);
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
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
|
|
|
|
});
|
2016-01-17 18:39:07 +01:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-12-27 08:19:45 +01:00
|
|
|
|
There are subtle consequences in choosing one over the other, please consult
|
|
|
|
|
the [Implementation considerations section][] for more information.
|
2014-11-18 21:56:28 +01:00
|
|
|
|
|
2015-11-04 16:52:13 +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
|
|
|
|
|
2015-12-27 08:19:45 +01:00
|
|
|
|
Returns an array of IP address strings that are being used for name
|
|
|
|
|
resolution.
|
2015-11-04 16:52:13 +01:00
|
|
|
|
|
2014-09-25 00:41:31 +02: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:
|
|
|
|
|
- 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
|
|
|
|
-->
|
2017-03-09 06:33:31 +01:00
|
|
|
|
- `hostname` {string}
|
|
|
|
|
- `options` {integer | Object}
|
|
|
|
|
- `family` {integer} The record family. Must be `4` or `6`. IPv4
|
|
|
|
|
and IPv6 addresses are both returned by default.
|
|
|
|
|
- `hints` {number} One or more [supported `getaddrinfo` flags][]. Multiple
|
|
|
|
|
flags may be passed by bitwise `OR`ing their values.
|
|
|
|
|
- `all` {boolean} When `true`, the callback returns all resolved addresses in
|
|
|
|
|
an array. Otherwise, returns a single address. Defaults to `false`.
|
|
|
|
|
- `callback` {Function}
|
|
|
|
|
- `err` {Error}
|
|
|
|
|
- `address` {string} A string representation of an IPv4 or IPv6 address.
|
|
|
|
|
- `family` {integer} `4` or `6`, denoting the family of `address`.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-12-27 08:19:45 +01:00
|
|
|
|
Resolves a hostname (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.
|
2012-04-18 15:56:14 +02:00
|
|
|
|
Keep in mind that `err.code` will be set to `'ENOENT'` not only when
|
2013-10-15 12:51:12 +02:00
|
|
|
|
the hostname 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`
|
|
|
|
|
is not set to `true`, it returns a Promise for an object with `address` and
|
|
|
|
|
`family` properties.
|
|
|
|
|
|
2015-12-27 08:19:45 +01:00
|
|
|
|
### Supported getaddrinfo flags
|
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()`][].
|
|
|
|
|
|
|
|
|
|
- `dns.ADDRCONFIG`: Returned address types are determined by the types
|
|
|
|
|
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.
|
|
|
|
|
- `dns.V4MAPPED`: If the IPv6 family was specified, but no IPv6 addresses were
|
|
|
|
|
found, then return IPv4 mapped IPv6 addresses. Note that it is not supported
|
|
|
|
|
on some operating systems (e.g FreeBSD 10.1).
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
2015-01-22 08:10:09 +01:00
|
|
|
|
## dns.lookupService(address, port, callback)
|
2016-05-27 18:06:23 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.11.14
|
|
|
|
|
-->
|
2017-03-09 06:33:31 +01:00
|
|
|
|
- `address` {string}
|
|
|
|
|
- `port` {number}
|
|
|
|
|
- `callback` {Function}
|
|
|
|
|
- `err` {Error}
|
|
|
|
|
- `hostname` {string} e.g. `example.com`
|
|
|
|
|
- `service` {string} e.g. `http`
|
2014-06-21 00:43:00 +02:00
|
|
|
|
|
2015-12-27 08:19:45 +01:00
|
|
|
|
Resolves the given `address` and `port` into a hostname and service using
|
|
|
|
|
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
|
|
|
|
|
Promise for an object with `hostname` and `service` properties.
|
|
|
|
|
|
2014-09-25 00:41:31 +02:00
|
|
|
|
## dns.resolve(hostname[, rrtype], callback)
|
2016-05-27 18:06:23 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.27
|
|
|
|
|
-->
|
2017-04-19 19:22:08 +02:00
|
|
|
|
- `hostname` {string} Hostname to resolve.
|
|
|
|
|
- `rrtype` {string} Resource record type. Default: `'A'`.
|
2017-03-09 06:33:31 +01:00
|
|
|
|
- `callback` {Function}
|
|
|
|
|
- `err` {Error}
|
2017-04-19 19:22:08 +02:00
|
|
|
|
- `records` {string[] | Object[] | string[][] | Object}
|
|
|
|
|
|
|
|
|
|
Uses the DNS protocol to resolve a hostname (e.g. `'nodejs.org'`) into an array
|
|
|
|
|
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()`][] |
|
|
|
|
|
| `'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()`][] |
|
|
|
|
|
| `'TXT'` | text records | {string} | [`dns.resolveTxt()`][] |
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2016-10-26 07:51:34 +02: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
|
|
|
|
-->
|
2017-03-09 06:33:31 +01:00
|
|
|
|
- `hostname` {string} Hostname to resolve.
|
|
|
|
|
- `options` {Object}
|
|
|
|
|
- `ttl` {boolean} Retrieve the Time-To-Live value (TTL) of each record.
|
|
|
|
|
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.
|
|
|
|
|
- `callback` {Function}
|
|
|
|
|
- `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']`).
|
|
|
|
|
|
2016-10-26 07:51:34 +02:00
|
|
|
|
|
2016-10-26 07:54:20 +02: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
|
|
|
|
-->
|
2017-03-09 06:33:31 +01:00
|
|
|
|
- `hostname` {string} Hostname to resolve.
|
|
|
|
|
- `options` {Object}
|
|
|
|
|
- `ttl` {boolean} Retrieve the Time-To-Live value (TTL) of each record.
|
|
|
|
|
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.
|
|
|
|
|
- `callback` {Function}
|
|
|
|
|
- `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
|
|
|
|
|
2016-10-26 07:54:20 +02:00
|
|
|
|
|
2015-11-04 16:52:13 +01:00
|
|
|
|
## dns.resolveCname(hostname, callback)
|
2016-05-27 18:06:23 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.3.2
|
|
|
|
|
-->
|
2017-03-09 06:33:31 +01:00
|
|
|
|
- `hostname` {string}
|
|
|
|
|
- `callback` {Function}
|
|
|
|
|
- `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
|
|
|
|
|
2013-10-15 12:51:12 +02:00
|
|
|
|
## dns.resolveMx(hostname, callback)
|
2016-05-27 18:06:23 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.27
|
|
|
|
|
-->
|
2017-03-09 06:33:31 +01:00
|
|
|
|
- `hostname` {string}
|
|
|
|
|
- `callback` {Function}
|
|
|
|
|
- `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
|
|
|
|
|
2016-05-05 02:45:04 +02:00
|
|
|
|
## dns.resolveNaptr(hostname, callback)
|
2016-05-27 18:06:23 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.9.12
|
|
|
|
|
-->
|
2017-03-09 06:33:31 +01:00
|
|
|
|
- `hostname` {string}
|
|
|
|
|
- `callback` {Function}
|
|
|
|
|
- `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`
|
|
|
|
|
|
|
|
|
|
For example:
|
|
|
|
|
|
2017-04-21 21:55:51 +02:00
|
|
|
|
<!-- eslint-disable -->
|
2016-05-05 02:45:04 +02:00
|
|
|
|
```js
|
|
|
|
|
{
|
|
|
|
|
flags: 's',
|
|
|
|
|
service: 'SIP+D2U',
|
|
|
|
|
regexp: '',
|
|
|
|
|
replacement: '_sip._udp.example.com',
|
|
|
|
|
order: 30,
|
|
|
|
|
preference: 100
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2015-11-04 16:52:13 +01:00
|
|
|
|
## dns.resolveNs(hostname, callback)
|
2016-05-27 18:06:23 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.90
|
|
|
|
|
-->
|
2017-03-09 06:33:31 +01:00
|
|
|
|
- `hostname` {string}
|
|
|
|
|
- `callback` {Function}
|
|
|
|
|
- `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
|
|
|
|
|
2017-04-07 12:33:33 +02:00
|
|
|
|
## dns.resolvePtr(hostname, callback)
|
2017-02-13 03:49:35 +01:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v6.0.0
|
|
|
|
|
-->
|
2017-03-09 06:33:31 +01:00
|
|
|
|
- `hostname` {string}
|
|
|
|
|
- `callback` {Function}
|
|
|
|
|
- `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.
|
|
|
|
|
|
2013-10-21 15:47:57 +02:00
|
|
|
|
## dns.resolveSoa(hostname, callback)
|
2016-05-27 18:06:23 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.11.10
|
|
|
|
|
-->
|
2017-03-09 06:33:31 +01:00
|
|
|
|
- `hostname` {string}
|
|
|
|
|
- `callback` {Function}
|
|
|
|
|
- `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-04-21 21:55:51 +02:00
|
|
|
|
<!-- eslint-disable -->
|
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
|
|
|
|
|
2015-12-27 08:19:45 +01:00
|
|
|
|
## dns.resolveSrv(hostname, callback)
|
2016-05-27 18:06:23 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.27
|
|
|
|
|
-->
|
2017-03-09 06:33:31 +01:00
|
|
|
|
- `hostname` {string}
|
|
|
|
|
- `callback` {Function}
|
|
|
|
|
- `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-04-21 21:55:51 +02:00
|
|
|
|
<!-- eslint-disable -->
|
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
|
|
|
|
|
2015-11-04 16:52:13 +01:00
|
|
|
|
## dns.resolveTxt(hostname, callback)
|
2016-05-27 18:06:23 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.27
|
|
|
|
|
-->
|
2017-03-09 06:33:31 +01:00
|
|
|
|
- `hostname` {string}
|
|
|
|
|
- `callback` {Function}
|
|
|
|
|
- `err` {Error}
|
|
|
|
|
- `addresses` {string[][]}
|
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
|
|
|
|
|
`hostname`. The `addresses` argument passed to the `callback` function is
|
2016-09-01 16:55:42 +02:00
|
|
|
|
is a 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
|
|
|
|
|
2012-04-18 15:56:14 +02:00
|
|
|
|
## dns.reverse(ip, callback)
|
2016-05-27 18:06:23 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.16
|
|
|
|
|
-->
|
2017-03-09 06:33:31 +01:00
|
|
|
|
- `ip` {string}
|
|
|
|
|
- `callback` {Function}
|
|
|
|
|
- `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
|
|
|
|
|
array of hostnames.
|
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
|
|
|
|
|
2013-05-08 21:56:08 +02:00
|
|
|
|
## dns.setServers(servers)
|
2016-05-27 18:06:23 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.11.3
|
|
|
|
|
-->
|
2017-03-09 06:33:31 +01:00
|
|
|
|
- `servers` {string[]}
|
2013-05-08 21:56:08 +02:00
|
|
|
|
|
2015-12-27 08:19:45 +01:00
|
|
|
|
Sets the IP addresses of the servers to be used when resolving. The `servers`
|
|
|
|
|
argument is an array of IPv4 or IPv6 addresses.
|
2013-05-08 21:56:08 +02:00
|
|
|
|
|
2017-03-09 06:33:31 +01:00
|
|
|
|
If a port is specified on the address, it will be removed.
|
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
|
|
|
|
|
2012-04-18 15:56:14 +02:00
|
|
|
|
## Error codes
|
|
|
|
|
|
|
|
|
|
Each DNS query can return one of the following error codes:
|
|
|
|
|
|
|
|
|
|
- `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.
|
2013-10-15 12:51:12 +02:00
|
|
|
|
- `dns.BADNAME`: Misformatted hostname.
|
2012-04-18 15:56:14 +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.
|
|
|
|
|
- `dns.NONAME`: Given hostname is not numeric.
|
|
|
|
|
- `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),
|
2015-12-27 08:19:45 +01:00
|
|
|
|
but note that changing these files will change the behavior of _all other
|
|
|
|
|
programs running on the same operating system_.
|
|
|
|
|
|
|
|
|
|
Though the call to `dns.lookup()` will be asynchronous from JavaScript's
|
2016-11-16 03:00:30 +01:00
|
|
|
|
perspective, it is implemented as a synchronous call to getaddrinfo(3) that
|
2015-12-27 08:19:45 +01:00
|
|
|
|
runs on libuv's threadpool. Because libuv's threadpool has a fixed size, it
|
2016-11-16 03:00:30 +01:00
|
|
|
|
means that if for whatever reason the call to getaddrinfo(3) takes a long
|
2015-12-27 08:19:45 +01:00
|
|
|
|
time, other operations that could run on libuv's threadpool (such as filesystem
|
2014-11-18 21:56:28 +01:00
|
|
|
|
operations) will experience degraded performance. In order to mitigate this
|
|
|
|
|
issue, one potential solution is to increase the size of libuv's threadpool by
|
2015-12-27 08:19:45 +01:00
|
|
|
|
setting the `'UV_THREADPOOL_SIZE'` environment variable to a value greater than
|
|
|
|
|
`4` (its current default value). For more information on libuv's threadpool, see
|
2015-11-14 04:21:49 +01:00
|
|
|
|
[the official libuv documentation][].
|
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
|
2015-11-28 00:30:32 +01:00
|
|
|
|
[`dns.lookup()`]: #dns_dns_lookup_hostname_options_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
|
|
|
|
|
[`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-05-08 18:30:13 +02:00
|
|
|
|
[DNS error codes]: #dns_error_codes
|
2015-11-28 00:30:32 +01:00
|
|
|
|
[Implementation considerations section]: #dns_implementation_considerations
|
|
|
|
|
[supported `getaddrinfo` flags]: #dns_supported_getaddrinfo_flags
|
2015-11-14 04:21:49 +01:00
|
|
|
|
[the official libuv documentation]: http://docs.libuv.org/en/latest/threadpool.html
|
2017-04-16 21:35:29 +02:00
|
|
|
|
[`util.promisify()`]: util.html#util_util_promisify_original
|