Bind will nicht, wie ich will

Alle weiteren Dienste, die nicht in die drei oberen Foren gehören.
Antworten
herates
Beiträge: 10
Registriert: 08.10.2008 21:23:55

Bind will nicht, wie ich will

Beitrag von herates » 28.12.2008 13:52:44

also mache ich wohl einen fehler (und das garantiert)


hi,

ich verwalte eine kleine subdomain und wollte mir jetzt einen nameserver aufsetzen.
hier meine probleme
  1. - der nameserver selber löst nichts auf. in der resolv.conf habe ich die ip des nameservers(also die eigene) eingetragen
  • - die auflösung ip->domain hat noch nen knick. bei einem

    Code: Alles auswählen

    C:\Dokumente und Einstellungen\wolfgang>nslookup dns.sub.domain.de
    Server:  dns.sub.domain.de.123.123.123.in-addr.arpa
    Address:  123.123.123.7
    
    Name:    dns.sub.domain.de
    Address:  123.123.123.7
    seht ihr, dass der server eine eigenartige form hat. ich bin mir aber nicht sicher, ob das falsch sein sollte


wolfgang

hier meine confs:
named.conf.options:

Code: Alles auswählen

options {
        directory "/var/cache/bind";
         forwarders {
                123.123.4.1;
                123.123.5.1;
         };
         forward first;
        notify no;
};
named.conf:

Code: Alles auswählen

include "/etc/bind/named.conf.options";
logging {
        category lame-servers { null; };
        category cname { null; };
};
zone "." {
        type hint;
        file "/etc/bind/db.root";
};
zone "localhost" {
        type master;
        file "/etc/bind/db.local";
};
zone "127.in-addr.arpa" {
        type master;
        file "/etc/bind/db.127";
};
zone "0.in-addr.arpa" {
        type master;
        file "/etc/bind/db.0";
};
zone "255.in-addr.arpa" {
        type master;
        file "/etc/bind/db.255";
};
include "/etc/bind/named.conf.local";
named.conf.local:

Code: Alles auswählen

zone    "sub.domain.de"   IN      {
        type master;
        file "/etc/bind/sub.domain.de";
};
zone    "123.123.123.in-addr.arpa"       IN      {
        type master;
        file "/etc/bind/123.123.123";
};
db.sub.domain.de:

Code: Alles auswählen

$TTL 1d
@       IN      SOA     dns.sub.domain.de.        admin.sub.domain.de.      (
        2008122704    
        28800         
        7200           
        864000      
        86400           
)
                NS              dns.sub.domain.de.
                MX      10      mail.sub.domain.de.
$ORIGIN sub.domain.de.
mail    A       123.123.123.5
dns     A       123.123.123.7
ateam   A       123.123.123.240
db.123.123.123:

Code: Alles auswählen

$TTl 1d
@       IN      SOA     dns.sub.domain.de.        admin.sub.domain.de.      (
        2008122704      
        8H             
        1H          
        1W         
        1D
)
                NS              dns.sub.domain.de.
                MX      10      mail.sub.domain.de.
5       PTR     mail.sub.domain.de
7       PTR     dns.sub.domain.de

Benutzeravatar
mragucci
Beiträge: 598
Registriert: 08.09.2004 03:21:24
Lizenz eigener Beiträge: MIT Lizenz
Wohnort: Endor
Kontaktdaten:

Re: Bind will nicht, wie ich will

Beitrag von mragucci » 29.12.2008 07:15:19

herates hat geschrieben:also mache ich wohl einen fehler (und das garantiert)
db.123.123.123:

Code: Alles auswählen

$TTl 1d
@       IN      SOA     dns.sub.domain.de.        admin.sub.domain.de.      (
        2008122704      
        8H             
        1H          
        1W         
        1D
)
                NS              dns.sub.domain.de.
                MX      10      mail.sub.domain.de.
5       PTR     mail.sub.domain.de
7       PTR     dns.sub.domain.de
Hinter die fqdns gehört noch ein Punkt, also

Code: Alles auswählen

5       PTR     mail.sub.domain.de.
Ich will im Schlaf sterben - Wie mein Opa...
Und nicht weinend und schreiend wie sein Beifahrer!
-----
https://www.whisperedshouts.de

Antworten