Die Version eines bind DNS Servers lässt mittels dig sowie nslookup abfragen.

    dig @127.0.0.01 version.bind txt chaos
    [...]
    version.bind.           0       CH      TXT     "9.5.1-P3"
    [...]
    nslookup -type=txt -class=chaos version.bind 127.0.0.1
    Server:         127.0.0.1
    Address:        127.0.0.1#53
    version.bind    text = "9.5.1-P3"

    Wer dies nicht möchte, kann die Versionsbezeichnung jedoch auch verstecken, dazu muss im Abschnitt options lediglich der version auf etwas anderes gesetzt werden.

    options {
     version "not currently available";

    Das Ergebniss sieht danach wiefolgt aus.

    dig @127.0.0.01 version.bind txt chaos
    [...]
    version.bind.           0       CH      TXT     "not currently available"

    Leave A Reply