mirror of
https://github.com/danog/dns-over-https.git
synced 2024-12-02 09:17:50 +01:00
19 lines
473 B
PHP
19 lines
473 B
PHP
<?php declare(strict_types=1);
|
|
|
|
require __DIR__ . "/_bootstrap.php";
|
|
|
|
use Amp\Dns;
|
|
use Amp\DoH;
|
|
|
|
// Set default resolver to DNS-over-HTTPS resolver
|
|
$DohConfig = new DoH\DoHConfig([new DoH\Nameserver('https://mozilla.cloudflare-dns.com/dns-query')]);
|
|
Dns\resolver(new DoH\Rfc8484StubResolver($DohConfig));
|
|
|
|
$ip = $argv[1] ?? "8.8.8.8";
|
|
|
|
try {
|
|
pretty_print_records($ip, Dns\query($ip, Dns\Record::PTR));
|
|
} catch (Dns\DnsException $e) {
|
|
pretty_print_error($ip, $e);
|
|
}
|