<Cyclonit>
Ensign
- Registriert
- Mai 2011
- Beiträge
- 137
Hi,
ich möchte mir gerne meinen eigenen kleinen DNS server aufsetzen (hauptsächlich zu
Lernzwecken) und scheitere nun leider seit einiger Zeit daran ihn richtig zum Laufen
zu bringen.
Ich verwende bind9 und dies sind meine Konfigurationsdateien:
named.conf
named.conf.default-zones
named.conf.local
/zones/myDomain.de.db
/zones/rev.0.168.192.in-addr.arpa
Wenn mir jemand helfen könnte wäre ich sehr dankbar ^^
Cyclonit
ich möchte mir gerne meinen eigenen kleinen DNS server aufsetzen (hauptsächlich zu
Lernzwecken) und scheitere nun leider seit einiger Zeit daran ihn richtig zum Laufen
zu bringen.
Ich verwende bind9 und dies sind meine Konfigurationsdateien:
named.conf
include "/etc/bind/named.conf.options";
include "/etc/bind/named.conf.local";
include "/etc/bind/named.conf.default-zones";
include "/etc/bind/named.conf.local";
include "/etc/bind/named.conf.default-zones";
named.conf.default-zones
// prime the server with knowledge of the root servers
zone "." {
type hint;
file "/etc/bind/db.root";
};
// be authoritative for the localhost forward and reverse zones, and for
// broadcast zones as per RFC 1912
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";
};
zone "." {
type hint;
file "/etc/bind/db.root";
};
// be authoritative for the localhost forward and reverse zones, and for
// broadcast zones as per RFC 1912
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";
};
named.conf.local
zone "myDomain.de" {
type master;
file "/etc/bind/zones/myDomain.de.db";
};
zone "0.168.192.in-addr.arpa" {
type master;
file "/etc/bind/zones/rev.0.168.192.in-addr.arpa";
};
type master;
file "/etc/bind/zones/myDomain.de.db";
};
zone "0.168.192.in-addr.arpa" {
type master;
file "/etc/bind/zones/rev.0.168.192.in-addr.arpa";
};
/zones/myDomain.de.db
$TTL 1h
myDomain.de. IN SOA ns.myDomain.de. webmaster@myDomain.de. (
2013051301 ;serial
3600 ;refresh
3600 ;retry
3600 ;expire
3600 ;minimum TTL
)
myDomain.de. IN NS ns.myDomain.de.
@ IN A 192.168.0.30
www IN A 192.168.0.30
mail IN A 192.168.0.30
ns IN A 192.168.0.30
myDomain.de. IN TXT "v=spf1 a mx ip4:192.168.0.30 -all"
myDomain.de. IN SPF "v=spf1 a mx ip4:192.168.0.30 -all"
myDomain.de. IN SOA ns.myDomain.de. webmaster@myDomain.de. (
2013051301 ;serial
3600 ;refresh
3600 ;retry
3600 ;expire
3600 ;minimum TTL
)
myDomain.de. IN NS ns.myDomain.de.
@ IN A 192.168.0.30
www IN A 192.168.0.30
mail IN A 192.168.0.30
ns IN A 192.168.0.30
myDomain.de. IN TXT "v=spf1 a mx ip4:192.168.0.30 -all"
myDomain.de. IN SPF "v=spf1 a mx ip4:192.168.0.30 -all"
/zones/rev.0.168.192.in-addr.arpa
$TTL 1h
@ IN SOA ns.myDomain.de. webmaster@myDomain.de. (
2013051301 ;serial
3600 ;refresh
3600 ;retry
3600 ;expire
3600 ;minimum TTL
)
IN NS ns.myDomain.de.
50 IN PTR myDomain.de
@ IN SOA ns.myDomain.de. webmaster@myDomain.de. (
2013051301 ;serial
3600 ;refresh
3600 ;retry
3600 ;expire
3600 ;minimum TTL
)
IN NS ns.myDomain.de.
50 IN PTR myDomain.de
Wenn mir jemand helfen könnte wäre ich sehr dankbar ^^
Cyclonit