Servus
hab heute meinen VPS bekommen, soweit läuft alles bis auf Bind.
Hab soweit alles eingericht, zeigt mir auch keine Fehlermeldung an aber wenn ich meine Webseite aufrufe kommt immer "Der Server unter ... konnte nicht gefunden werden"
Bei meiner Domain hab ich schon die Nameserver und die IPs eingetragen.
So mal hier meine Einstellungen:
named.conf.local
n-t-g-d.org.db
77.79.11.rev
dig @localhost n-t-g-d.org
nslookup ns1.n-t-g-d.org
Was wird noch benötigt?
Gruss
Mario
hab heute meinen VPS bekommen, soweit läuft alles bis auf Bind.
Hab soweit alles eingericht, zeigt mir auch keine Fehlermeldung an aber wenn ich meine Webseite aufrufe kommt immer "Der Server unter ... konnte nicht gefunden werden"
Bei meiner Domain hab ich schon die Nameserver und die IPs eingetragen.
So mal hier meine Einstellungen:
named.conf.local
Code:
// Do any local configuration here
//
// Consider adding the 1918 zones here, if they are not used in your
// organization
//include "/etc/bind/zones.rfc1918";
zone "n-t-g-d.org" {
type master;
file "/etc/bind/zones/master/n-t-g-d.org.db";
};
zone "11.79.77.in-addr.arpa" {
type master;
file "/etc/bind/zones/master/77.79.11.rev";
};
~
n-t-g-d.org.db
Code:
root@server:/etc/bind/zones/master# vi n-t-g-d.org.db
;
; BIND data file for example.com
;
$TTL 604800
@ IN SOA ns1.n-t-g-d.org. info.n-t-g-d.org. (
2011090801 ; Serial
7200 ; Refresh
120 ; Retry
2419200 ; Expire
604800) ; Default TTL
;
@ IN NS ns1.n-t-g-d.org.
@ IN NS ns2.n-t-g-d.org.
n-t-g-d.org. IN MX 10 mail.n-t-g-d.org.
n-t-g-d.org. IN A 77.79.11.140
ns1 IN A 77.79.11.140
ns2 IN A 77.79.11.218
www IN CNAME n-t-g-d.org.
mail IN A 77.79.11.140
ftp IN CNAME n-t-g-d.org.
n-t-g-d.org. IN TXT "v=spf1 ip4:77.79.11.140 a mx ~all"
mail IN TXT "v=spf1 a -all"
77.79.11.rev
Code:
$TTL 1d ;
$ORIGIN 11.79.77.IN-ADDR.ARPA.
@ IN SOA ns1.n-t-g-d.org. info.n-t-g-d.org. (
2011090801
7200
120
2419200
604800
)
IN NS ns1.n-t-g-d.org.
IN NS ns2.n-t-g-d.org.
1 IN PTR ns1.n-t-g-d.org.
2 IN PTR ns2.n-t-g-d.org.
~
dig @localhost n-t-g-d.org
Code:
; <<>> DiG 9.7.3 <<>> @localhost n-t-g-d.org
; (2 servers found)
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 26545
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2
;; QUESTION SECTION:
;n-t-g-d.org. IN A
;; ANSWER SECTION:
n-t-g-d.org. 604800 IN A 77.79.11.140
;; AUTHORITY SECTION:
n-t-g-d.org. 604800 IN NS ns1.n-t-g-d.org.
n-t-g-d.org. 604800 IN NS ns2.n-t-g-d.org.
;; ADDITIONAL SECTION:
ns1.n-t-g-d.org. 604800 IN A 77.79.11.140
ns2.n-t-g-d.org. 604800 IN A 77.79.11.218
;; Query time: 0 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Thu Sep 8 21:57:48 2011
;; MSG SIZE rcvd: 113
nslookup ns1.n-t-g-d.org
Code:
Server: 127.0.0.1
Address: 127.0.0.1#53
Name: ns1.n-t-g-d.org
Address: 77.79.11.140
Was wird noch benötigt?
Gruss
Mario