dig工具默认不支持谷歌edns,通过打补丁可让dig支持+client的方式查询,如以下代码:
#下载bind包 wget ftp://ftp.isc.org/isc/bind9/9.9.3/bind-9.9.3.tar.gz tar xf bind-9.9.3.tar.gz cd bind-9.9.3 #从Wilmer van der Gaast下载补丁. wget https://wilmer.gaa.st/edns-client-subnet/bind-9.9.3-dig-edns-client-subnet-iana.diff #Patch the code, configure (without OpenSSL because we only want dig) and compile. patch -p0 < bind-9.9.3-dig-edns-client-subnet-iana.diff ./configure --without-openssl make
在bind-9.9.3/bin/dig目录下,即可找到编译好的dig二进制工具!