The dnsPromises.resolve6() method is an inbuilt application programming interface of the promises of dns module which is used to resolve IPv6 address (‘AAAA’ record) for the specified hostname using DNS protocol.
Syntax:
dnsPromises.resolve6( hostname, options )
Parameters: This method has two parameters as mentioned above and described below:
- hostname: This parameter specifies a string which denotes the hostname to be resolved.
- options: It is in the form of an object.
- ttl: It is a Boolean parameter, specifies whether the Time-To-Live value (TTL) for each record to be retrieved or not. If set to true, TTL for each record is retrieved (in seconds).
Return Value: This method returns error, records.
Below examples illustrate the use of dnsPromises.resolve6() method in Node.js:
Example 1:
const dns = require( 'dns' );
const dnsPromises = dns.promises;
dnsPromises.resolve6( 'geeksforgeeks.org' ).then((res) => {
console.log(res);
});
(async function () {
const records = await dnsPromises.resolve6( 'geeksforgeeks.org' );
console.log( "from async: " );
console.log(records);
})();
|
Output:
from async:
[ 'fd00:0:13:13::22da:3e74' ]
[ 'fd00:0:13:13::22da:3e74' ]
Example 2:
const dns = require( 'dns' );
const dnsPromises = dns.promises;
const options={
ttl: true ,
};
(async function () {
const records = await dnsPromises.resolve6(
'geeksforgeeks.org' , options);
console.log( "from async: " );
console.log(records);
})();
|
Output:
from async:
[ { address: 'fd00:0:13:13::22da:3e74', ttl: 30 } ]
Note: The above program will compile and run by using the node index.js
command.
Reference: https://nodejs.org/api/dns.html#dns_dnspromises_resolve6_hostname_options
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!