2012-02-27 20:08:41 +01:00
|
|
|
# DNS
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-02-25 01:15:26 +01:00
|
|
|
Stability: 2 - Stable
|
2012-03-03 00:14:03 +01:00
|
|
|
|
2014-11-18 21:56:28 +01:00
|
|
|
Use `require('dns')` to access this module.
|
|
|
|
|
|
|
|
This module contains functions that belong to two different categories:
|
|
|
|
|
|
|
|
1) Functions that use the underlying operating system facilities to perform
|
|
|
|
name resolution, and that do not necessarily do any network communication.
|
2015-10-06 15:21:22 +02:00
|
|
|
This category contains only one function: `dns.lookup()`. __Developers looking
|
2014-11-18 21:56:28 +01:00
|
|
|
to perform name resolution in the same way that other applications on the same
|
2015-10-06 15:21:22 +02:00
|
|
|
operating system behave should use [`dns.lookup()`][dns.lookup].__
|
2014-11-18 21:56:28 +01:00
|
|
|
|
|
|
|
Here is an example that does a lookup of `www.google.com`.
|
|
|
|
|
|
|
|
var dns = require('dns');
|
|
|
|
|
|
|
|
dns.lookup('www.google.com', function onLookup(err, addresses, family) {
|
|
|
|
console.log('addresses:', addresses);
|
|
|
|
});
|
|
|
|
|
|
|
|
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-10-06 15:21:22 +02:00
|
|
|
contains all functions in the `dns` module but [`dns.lookup()`][dns.lookup]. These functions
|
|
|
|
do not use the same set of configuration files than what [`dns.lookup()`][dns.lookup] uses.
|
2014-11-18 21:56:28 +01:00
|
|
|
For instance, _they do not use the configuration from `/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
|
|
|
|
|
|
|
Here is an example which resolves `'www.google.com'` then reverse
|
|
|
|
resolves the IP addresses which are returned.
|
|
|
|
|
|
|
|
var dns = require('dns');
|
|
|
|
|
|
|
|
dns.resolve4('www.google.com', function (err, addresses) {
|
|
|
|
if (err) throw err;
|
|
|
|
|
|
|
|
console.log('addresses: ' + JSON.stringify(addresses));
|
|
|
|
|
|
|
|
addresses.forEach(function (a) {
|
2013-10-15 12:51:12 +02:00
|
|
|
dns.reverse(a, function (err, hostnames) {
|
2010-10-28 14:18:16 +02:00
|
|
|
if (err) {
|
2012-04-18 15:56:14 +02:00
|
|
|
throw err;
|
2010-10-28 14:18:16 +02:00
|
|
|
}
|
2012-04-18 15:56:14 +02:00
|
|
|
|
2013-10-15 12:51:12 +02:00
|
|
|
console.log('reverse for ' + a + ': ' + JSON.stringify(hostnames));
|
2010-10-28 14:18:16 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-11-18 21:56:28 +01:00
|
|
|
There are subtle consequences in choosing one or another, please consult the
|
|
|
|
[Implementation considerations section](#dns_implementation_considerations)
|
|
|
|
for more information.
|
|
|
|
|
2014-09-25 00:41:31 +02:00
|
|
|
## dns.lookup(hostname[, options], callback)
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2013-10-15 12:51:12 +02:00
|
|
|
Resolves a hostname (e.g. `'google.com'`) into the first found A (IPv4) or
|
2014-05-22 04:13:09 +02:00
|
|
|
AAAA (IPv6) record. `options` can be an object or integer. If `options` is
|
|
|
|
not provided, then IP v4 and v6 addresses are both valid. If `options` is
|
|
|
|
an integer, then it must be `4` or `6`.
|
|
|
|
|
2015-02-06 21:43:50 +01:00
|
|
|
Alternatively, `options` can be an object containing these properties:
|
|
|
|
|
|
|
|
* `family` {Number} - The record family. If present, must be the integer
|
|
|
|
`4` or `6`. If not provided, both IP v4 and v6 addresses are accepted.
|
|
|
|
* `hints`: {Number} - If present, it should be one or more of the supported
|
|
|
|
`getaddrinfo` flags. If `hints` is not provided, then no flags are passed to
|
|
|
|
`getaddrinfo`. Multiple flags can be passed through `hints` by logically
|
|
|
|
`OR`ing their values.
|
|
|
|
See [supported `getaddrinfo` flags](#dns_supported_getaddrinfo_flags) below
|
|
|
|
for more information on supported flags.
|
|
|
|
* `all`: {Boolean} - When `true`, the callback returns all resolved addresses
|
|
|
|
in an array, otherwise returns a single address. Defaults to `false`.
|
|
|
|
|
|
|
|
All properties are optional. An example usage of options is shown below.
|
2014-05-22 04:13:09 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
{
|
|
|
|
family: 4,
|
2015-02-08 11:17:32 +01:00
|
|
|
hints: dns.ADDRCONFIG | dns.V4MAPPED,
|
|
|
|
all: false
|
2014-05-22 04:13:09 +02:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2015-02-06 21:43:50 +01:00
|
|
|
The callback has arguments `(err, address, family)`. `address` is a string
|
2015-06-24 05:42:49 +02:00
|
|
|
representation of an IP v4 or v6 address. `family` is either the integer 4 or 6
|
2015-02-06 21:43:50 +01:00
|
|
|
and denotes the family of `address` (not necessarily the value initially passed
|
|
|
|
to `lookup`).
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-02-06 21:43:50 +01:00
|
|
|
With the `all` option set, the arguments change to `(err, addresses)`, with
|
|
|
|
`addresses` being an array of objects with the properties `address` and
|
|
|
|
`family`.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2012-04-18 15:56:14 +02:00
|
|
|
On error, `err` is an `Error` object, where `err.code` is the error code.
|
|
|
|
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-10-06 15:21:22 +02:00
|
|
|
`dns.lookup()` doesn't necessarily have anything to do with the DNS protocol.
|
2014-11-18 21:56:28 +01:00
|
|
|
It's only an operating system facility that can associate name with addresses,
|
|
|
|
and vice versa.
|
|
|
|
|
|
|
|
Its implementation can have subtle but important consequences on the behavior
|
2015-08-13 18:14:34 +02:00
|
|
|
of any Node.js program. Please take some time to consult the [Implementation
|
2014-11-18 21:56:28 +01:00
|
|
|
considerations section](#dns_implementation_considerations) before using it.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-01-22 08:10:09 +01:00
|
|
|
## dns.lookupService(address, port, callback)
|
2014-06-21 00:43:00 +02:00
|
|
|
|
|
|
|
Resolves the given address and port into a hostname and service using
|
|
|
|
`getnameinfo`.
|
|
|
|
|
|
|
|
The callback has arguments `(err, hostname, service)`. The `hostname` and
|
|
|
|
`service` arguments are strings (e.g. `'localhost'` and `'http'` respectively).
|
|
|
|
|
|
|
|
On error, `err` is an `Error` object, where `err.code` is the error code.
|
|
|
|
|
|
|
|
|
2014-09-25 00:41:31 +02:00
|
|
|
## dns.resolve(hostname[, rrtype], callback)
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2013-10-15 12:51:12 +02:00
|
|
|
Resolves a hostname (e.g. `'google.com'`) into an array of the record types
|
2013-10-21 15:47:57 +02:00
|
|
|
specified by rrtype.
|
|
|
|
|
|
|
|
Valid rrtypes are:
|
|
|
|
|
|
|
|
* `'A'` (IPV4 addresses, default)
|
|
|
|
* `'AAAA'` (IPV6 addresses)
|
|
|
|
* `'MX'` (mail exchange records)
|
|
|
|
* `'TXT'` (text records)
|
|
|
|
* `'SRV'` (SRV records)
|
|
|
|
* `'PTR'` (used for reverse IP lookups)
|
|
|
|
* `'NS'` (name server records)
|
|
|
|
* `'CNAME'` (canonical name records)
|
|
|
|
* `'SOA'` (start of authority record)
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
|
|
The callback has arguments `(err, addresses)`. The type of each item
|
|
|
|
in `addresses` is determined by the record type, and described in the
|
|
|
|
documentation for the corresponding lookup methods below.
|
|
|
|
|
2012-04-18 15:56:14 +02:00
|
|
|
On error, `err` is an `Error` object, where `err.code` is
|
|
|
|
one of the error codes listed below.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
|
|
|
2013-10-15 12:51:12 +02:00
|
|
|
## dns.resolve4(hostname, callback)
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-10-06 15:21:22 +02:00
|
|
|
The same as [`dns.resolve()`](#dns_dns_resolve_hostname_rrtype_callback), but only for IPv4 queries (`A` records).
|
2010-11-21 23:22:34 +01:00
|
|
|
`addresses` is 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']`).
|
|
|
|
|
2013-10-15 12:51:12 +02:00
|
|
|
## dns.resolve6(hostname, callback)
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-10-06 15:21:22 +02:00
|
|
|
The same as [`dns.resolve4()`](#dns_dns_resolve4_hostname_callback) except for IPv6 queries (an `AAAA` query).
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
|
|
|
2013-10-15 12:51:12 +02:00
|
|
|
## dns.resolveMx(hostname, callback)
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-10-06 15:21:22 +02:00
|
|
|
The same as [`dns.resolve()`](#dns_dns_resolve_hostname_rrtype_callback), but only for mail exchange queries (`MX` records).
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
|
|
`addresses` is an array of MX records, each with a priority and an exchange
|
|
|
|
attribute (e.g. `[{'priority': 10, 'exchange': 'mx.example.com'},...]`).
|
|
|
|
|
2013-10-15 12:51:12 +02:00
|
|
|
## dns.resolveTxt(hostname, callback)
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-10-06 15:21:22 +02:00
|
|
|
The same as [`dns.resolve()`](#dns_dns_resolve_hostname_rrtype_callback), but only for text queries (`TXT` records).
|
2015-06-24 05:42:49 +02:00
|
|
|
`addresses` is a 2-d array of the text records available for `hostname` (e.g.,
|
2014-03-27 21:09:20 +01:00
|
|
|
`[ ['v=spf1 ip4:0.0.0.0 ', '~all' ] ]`). Each sub-array contains TXT chunks of
|
|
|
|
one record. Depending on the use case, the could be either joined together or
|
|
|
|
treated separately.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2013-10-15 12:51:12 +02:00
|
|
|
## dns.resolveSrv(hostname, callback)
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-10-06 15:21:22 +02:00
|
|
|
The same as [`dns.resolve()`](#dns_dns_resolve_hostname_rrtype_callback), but only for service records (`SRV` records).
|
2013-10-15 12:51:12 +02:00
|
|
|
`addresses` is an array of the SRV records available for `hostname`. Properties
|
2010-11-21 23:22:34 +01:00
|
|
|
of SRV records are priority, weight, port, and name (e.g.,
|
2014-06-05 02:15:22 +02:00
|
|
|
`[{'priority': 10, 'weight': 5, 'port': 21223, 'name': 'service.example.com'}, ...]`).
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2013-10-21 15:47:57 +02:00
|
|
|
## dns.resolveSoa(hostname, callback)
|
|
|
|
|
2015-10-06 15:21:22 +02:00
|
|
|
The same as [`dns.resolve()`](#dns_dns_resolve_hostname_rrtype_callback), but only for start of authority record queries
|
2013-10-21 15:47:57 +02:00
|
|
|
(`SOA` record).
|
|
|
|
|
|
|
|
`addresses` is an object with the following structure:
|
|
|
|
|
|
|
|
```
|
|
|
|
{
|
|
|
|
nsname: 'ns.example.com',
|
|
|
|
hostmaster: 'root.example.com',
|
|
|
|
serial: 2013101809,
|
|
|
|
refresh: 10000,
|
|
|
|
retry: 2400,
|
|
|
|
expire: 604800,
|
|
|
|
minttl: 3600
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2013-10-15 12:51:12 +02:00
|
|
|
## dns.resolveNs(hostname, callback)
|
2011-05-12 06:49:26 +02:00
|
|
|
|
2015-10-06 15:21:22 +02:00
|
|
|
The same as [`dns.resolve()`](#dns_dns_resolve_hostname_rrtype_callback), but only for name server records (`NS` records).
|
2013-10-15 12:51:12 +02:00
|
|
|
`addresses` is an array of the name server records available for `hostname`
|
2011-05-12 06:49:26 +02:00
|
|
|
(e.g., `['ns1.example.com', 'ns2.example.com']`).
|
|
|
|
|
2013-10-15 12:51:12 +02:00
|
|
|
## dns.resolveCname(hostname, callback)
|
2011-05-12 06:49:26 +02:00
|
|
|
|
2015-10-06 15:21:22 +02:00
|
|
|
The same as [`dns.resolve()`](#dns_dns_resolve_hostname_rrtype_callback), but only for canonical name records (`CNAME`
|
2011-05-12 06:49:26 +02:00
|
|
|
records). `addresses` is an array of the canonical name records available for
|
2013-10-15 12:51:12 +02:00
|
|
|
`hostname` (e.g., `['bar.example.com']`).
|
2011-05-12 06:49:26 +02:00
|
|
|
|
2012-04-18 15:56:14 +02:00
|
|
|
## dns.reverse(ip, callback)
|
|
|
|
|
2013-10-15 12:51:12 +02:00
|
|
|
Reverse resolves an ip address to an array of hostnames.
|
2012-04-18 15:56:14 +02:00
|
|
|
|
2013-10-15 12:51:12 +02:00
|
|
|
The callback has arguments `(err, hostnames)`.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2012-04-18 15:56:14 +02:00
|
|
|
On error, `err` is an `Error` object, where `err.code` is
|
|
|
|
one of the error codes listed below.
|
|
|
|
|
2013-05-08 21:56:08 +02:00
|
|
|
## dns.getServers()
|
|
|
|
|
|
|
|
Returns an array of IP addresses as strings that are currently being used for
|
|
|
|
resolution
|
|
|
|
|
|
|
|
## dns.setServers(servers)
|
|
|
|
|
|
|
|
Given an array of IP addresses as strings, set them as the servers to use for
|
|
|
|
resolving
|
|
|
|
|
|
|
|
If you specify a port with the address it will be stripped, as the underlying
|
|
|
|
library doesn't support that.
|
|
|
|
|
|
|
|
This will throw if you pass invalid input.
|
|
|
|
|
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
|
|
|
|
|
|
|
## Supported getaddrinfo flags
|
|
|
|
|
2015-10-06 15:21:22 +02:00
|
|
|
The following flags can be passed as hints to `dns.lookup()`.
|
2014-05-22 04:13:09 +02:00
|
|
|
|
|
|
|
- `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.
|
2015-03-03 00:50:25 +01:00
|
|
|
- `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).
|
2014-11-18 21:56:28 +01:00
|
|
|
|
|
|
|
## Implementation considerations
|
|
|
|
|
2015-10-06 15:21:22 +02:00
|
|
|
Although `dns.lookup()` and `dns.resolve*()/dns.reverse()` functions have the same
|
2014-11-18 21:56:28 +01:00
|
|
|
goal of associating a network name with a network address (or vice versa),
|
|
|
|
their behavior is quite different. These differences can have subtle but
|
2015-08-13 18:14:34 +02:00
|
|
|
significant consequences on the behavior of Node.js programs.
|
2014-11-18 21:56:28 +01:00
|
|
|
|
|
|
|
### dns.lookup
|
|
|
|
|
2015-10-06 15:21:22 +02: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
|
2014-11-18 21:56:28 +01:00
|
|
|
name the same way as the `ping` command. On most POSIX-like operating systems,
|
2015-10-06 15:21:22 +02:00
|
|
|
the behavior of the `dns.lookup()` function can be tweaked by changing settings
|
2014-11-18 21:56:28 +01:00
|
|
|
in `nsswitch.conf(5)` and/or `resolv.conf(5)`, but be careful that changing
|
|
|
|
these files will change the behavior of all other programs running on the same
|
|
|
|
operating system.
|
|
|
|
|
|
|
|
Though the call will be asynchronous from JavaScript's perspective, it is
|
|
|
|
implemented as a synchronous call to `getaddrinfo(3)` that runs on libuv's
|
|
|
|
threadpool. Because libuv's threadpool has a fixed size, it means that if for
|
|
|
|
whatever reason the call to `getaddrinfo(3)` takes a long time, other
|
|
|
|
operations that could run on libuv's threadpool (such as filesystem
|
|
|
|
operations) will experience degraded performance. In order to mitigate this
|
|
|
|
issue, one potential solution is to increase the size of libuv's threadpool by
|
|
|
|
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
|
|
|
|
[the official libuv
|
|
|
|
documentation](http://docs.libuv.org/en/latest/threadpool.html).
|
|
|
|
|
|
|
|
### dns.resolve, functions starting with dns.resolve and dns.reverse
|
|
|
|
|
2015-10-06 15:21:22 +02:00
|
|
|
These functions are implemented quite differently than `dns.lookup()`. They do
|
2014-11-18 21:56:28 +01:00
|
|
|
not use `getaddrinfo(3)` and they _always_ perform a DNS query on the network.
|
|
|
|
This network communication is always done asynchronously, and does not use
|
|
|
|
libuv's threadpool.
|
|
|
|
|
|
|
|
As a result, these functions cannot have the same negative impact on other
|
2015-10-06 15:21:22 +02:00
|
|
|
processing that happens on libuv's threadpool that `dns.lookup()` can have.
|
2014-11-18 21:56:28 +01:00
|
|
|
|
2015-10-06 15:21:22 +02: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
|
|
|
|
|
|
|
|
|
|
|
[dns.lookup]: #dns_dns_lookup_hostname_options_callback
|