rdns für 127.0.0.2

  • Thread starter Thread starter TamCore
  • Start date Start date
T

TamCore

Guest
Moin,
Da ich mich vor kurzem an das Thema DNS rangewagt habe, hätte ich mal ne kleine Frage bezüglich rdns.

Ich würd gerne local (is klar, oder?) nen rdns für 127.0.0.2 auf domain.tld erstellen. domain.tld habe ich schon angelegt (auch nur local).

Hätte da jemand nen Tutorial oder direkt nen Beispiel Zone-File?

Bin für alles was mir hilft dankbar.

MfG
 
Bei bind ist doch schon das Zonefile dabei:
127.0.0.zone:
Code:
$TTL 1W
@               IN SOA          localhost.   root.localhost. (
                                43              ; serial (d. adams + 1)
                                2D              ; refresh
                                4H              ; retry
                                6W              ; expiry
                                1W )            ; minimum

                IN NS           localhost.
1               IN PTR          localhost.
2               IN PTR          domain.tld.

named.conf:
Code:
zone "0.0.127.in-addr.arpa" in {
        type master;
        file "127.0.0.zone";
};
 
Back
Top