DNS client

Often you will find yourself in situations where you need to obtain DNS informations in an asynchronous fashion. Unfortunally this is not possible with the API that is shipped with the Java Virtual Machine itself. Because of this Vert.x offers it’s own API for DNS resolution which is fully asynchronous.

To obtain a DnsClient instance you will create a new via the Vertx instance.

var client = vertx.createDnsClient(53, "10.0.0.1")

You can also create the client with options and configure the query timeout.

var client = vertx.createDnsClient(DnsClientOptions(
  port = 53,
  host = "10.0.0.1",
  queryTimeout = 10000))

Creating the client with no arguments or omitting the server address will use the address of the server used internally for non blocking address resolution.

var client1 = vertx.createDnsClient()

// Just the same but with a different query timeout
var client2 = vertx.createDnsClient(DnsClientOptions(
  queryTimeout = 10000))

lookup

Try to lookup the A (ipv4) or AAAA (ipv6) record for a given name. The first which is returned will be used, so it behaves the same way as you may be used from when using "nslookup" on your operation system.

To lookup the A / AAAA record for "vertx.io" you would typically use it like:

var client = vertx.createDnsClient(53, "9.9.9.9")
client.lookup("vertx.io", { ar ->
  if (ar.succeeded()) {
    println(ar.result())
  } else {
    println("Failed to resolve entry${ar.cause()}")
  }
})

lookup4

Try to lookup the A (ipv4) record for a given name. The first which is returned will be used, so it behaves the same way as you may be used from when using "nslookup" on your operation system.

To lookup the A record for "vertx.io" you would typically use it like:

var client = vertx.createDnsClient(53, "9.9.9.9")
client.lookup4("vertx.io", { ar ->
  if (ar.succeeded()) {
    println(ar.result())
  } else {
    println("Failed to resolve entry${ar.cause()}")
  }
})

lookup6

Try to lookup the AAAA (ipv6) record for a given name. The first which is returned will be used, so it behaves the same way as you may be used from when using "nslookup" on your operation system.

To lookup the A record for "vertx.io" you would typically use it like:

var client = vertx.createDnsClient(53, "9.9.9.9")
client.lookup6("vertx.io", { ar ->
  if (ar.succeeded()) {
    println(ar.result())
  } else {
    println("Failed to resolve entry${ar.cause()}")
  }
})

resolveA

Try to resolve all A (ipv4) records for a given name. This is quite similar to using "dig" on unix like operation systems.

To lookup all the A records for "vertx.io" you would typically do:

var client = vertx.createDnsClient(53, "9.9.9.9")
client.resolveA("vertx.io", { ar ->
  if (ar.succeeded()) {
    var records = ar.result()
    for (record in records) {
      println(record)
    }
  } else {
    println("Failed to resolve entry${ar.cause()}")
  }
})

resolveAAAA

Try to resolve all AAAA (ipv6) records for a given name. This is quite similar to using "dig" on unix like operation systems.

To lookup all the AAAAA records for "vertx.io" you would typically do:

var client = vertx.createDnsClient(53, "9.9.9.9")
client.resolveAAAA("vertx.io", { ar ->
  if (ar.succeeded()) {
    var records = ar.result()
    for (record in records) {
      println(record)
    }
  } else {
    println("Failed to resolve entry${ar.cause()}")
  }
})

resolveCNAME

Try to resolve all CNAME records for a given name. This is quite similar to using "dig" on unix like operation systems.

To lookup all the CNAME records for "vertx.io" you would typically do:

var client = vertx.createDnsClient(53, "9.9.9.9")
client.resolveCNAME("vertx.io", { ar ->
  if (ar.succeeded()) {
    var records = ar.result()
    for (record in records) {
      println(record)
    }
  } else {
    println("Failed to resolve entry${ar.cause()}")
  }
})

resolveMX

Try to resolve all MX records for a given name. The MX records are used to define which Mail-Server accepts emails for a given domain.

To lookup all the MX records for "vertx.io" you would typically do:

var client = vertx.createDnsClient(53, "9.9.9.9")
client.resolveMX("vertx.io", { ar ->
  if (ar.succeeded()) {
    var records = ar.result()
    for (record in records) {
      println(record)
    }
  } else {
    println("Failed to resolve entry${ar.cause()}")
  }
})

Be aware that the List will contain the MxRecord sorted by the priority of them, which means MX records with smaller priority coming first in the List.

The MxRecord allows you to access the priority and the name of the MX record by offer methods for it like:

record.priority()
record.name()

resolveTXT

Try to resolve all TXT records for a given name. TXT records are often used to define extra informations for a domain.

To resolve all the TXT records for "vertx.io" you could use something along these lines:

var client = vertx.createDnsClient(53, "9.9.9.9")
client.resolveTXT("vertx.io", { ar ->
  if (ar.succeeded()) {
    var records = ar.result()
    for (record in records) {
      println(record)
    }
  } else {
    println("Failed to resolve entry${ar.cause()}")
  }
})

resolveNS

Try to resolve all NS records for a given name. The NS records specify which DNS Server hosts the DNS informations for a given domain.

To resolve all the NS records for "vertx.io" you could use something along these lines:

var client = vertx.createDnsClient(53, "9.9.9.9")
client.resolveNS("vertx.io", { ar ->
  if (ar.succeeded()) {
    var records = ar.result()
    for (record in records) {
      println(record)
    }
  } else {
    println("Failed to resolve entry${ar.cause()}")
  }
})

resolveSRV

Try to resolve all SRV records for a given name. The SRV records are used to define extra informations like port and hostname of services. Some protocols need this extra informations.

To lookup all the SRV records for "vertx.io" you would typically do:

var client = vertx.createDnsClient(53, "9.9.9.9")
client.resolveSRV("vertx.io", { ar ->
  if (ar.succeeded()) {
    var records = ar.result()
    for (record in records) {
      println(record)
    }
  } else {
    println("Failed to resolve entry${ar.cause()}")
  }
})

Be aware that the List will contain the SrvRecords sorted by the priority of them, which means SrvRecords with smaller priority coming first in the List.

The SrvRecord allows you to access all informations contained in the SRV record itself:

record.priority()
record.name()
record.weight()
record.port()
record.protocol()
record.service()
record.target()

Please refer to the API docs for the exact details.

resolvePTR

Try to resolve the PTR record for a given name. The PTR record maps an ipaddress to a name.

To resolve the PTR record for the ipaddress 10.0.0.1 you would use the PTR notion of "1.0.0.10.in-addr.arpa"

var client = vertx.createDnsClient(53, "9.9.9.9")
client.resolvePTR("1.0.0.10.in-addr.arpa", { ar ->
  if (ar.succeeded()) {
    var record = ar.result()
    println(record)
  } else {
    println("Failed to resolve entry${ar.cause()}")
  }
})

reverseLookup

Try to do a reverse lookup for an ipaddress. This is basically the same as resolve a PTR record, but allows you to just pass in the ipaddress and not a valid PTR query string.

To do a reverse lookup for the ipaddress 10.0.0.1 do something similar like this:

var client = vertx.createDnsClient(53, "9.9.9.9")
client.reverseLookup("10.0.0.1", { ar ->
  if (ar.succeeded()) {
    var record = ar.result()
    println(record)
  } else {
    println("Failed to resolve entry${ar.cause()}")
  }
})