# HG changeset patch # User Oleksandr Gavenko # Date 1452720563 -7200 # Node ID 12f24827be092259938fede5e6b89816f4ad9b75 # Parent d64682ab74a2852bfe009d8eb24c17fdb01db850 Get info about NS. diff -r d64682ab74a2 -r 12f24827be09 dns.rst --- a/dns.rst Wed Jan 13 21:24:20 2016 +0200 +++ b/dns.rst Wed Jan 13 23:29:23 2016 +0200 @@ -106,6 +106,30 @@ dp.gov.ua. 3600 IN A 195.64.190.1 adm.dp.gov.ua. 3600 IN A 195.64.190.1 +Get info about NS. +================== + +Version of running NS:: + + $ dig @4.2.2.1 version.bind chaos txt + $ nslookup -q=txt -class=CHAOS version.bind. 4.2.2.1 + +Server name:: + + $ dig @4.2.2.1 id.server txt chaos + $ nslookup -q=txt -class=CHAOS id.server. 4.2.2.1 + + $ dig @4.2.2.1 hostname.bind txt chaos + $ nslookup -q=txt -class=CHAOS hostname.bind. 4.2.2.1 + +That strings come from BIND config:: + + options { + version "none of your business"; + server-id "Host A"; + hostname "Host A"; + }; + How reread config file? =======================