subdomain ans laufen bringen
Posted: 2003-09-12 12:36
Rootserver bei 1und1
so hab gestern bind9 nach dem howto von debianhowto installiert.
die domain ist bei 1und1 nameserver gehostet.
named.conf
default.zone
217.160.188.zone
teil der httpd.conf
leider kann ich eingeben was ich will vor koppab.de , ich werde immer direct weitergeleitet zu http://www.lzgclan.de
kann wir wer sagen wo ich was übersehen habe , oder dauert es einfach nur noch bis der ns korekt arbeitet?
so hab gestern bind9 nach dem howto von debianhowto installiert.
die domain ist bei 1und1 nameserver gehostet.
named.conf
Code: Select all
options {
directory "/var/cache/bind";
pid-file "/var/run/bind/named.pid";
notify yes;
allow-transfer { 195.20.224.97; 195.20.225.34; };
forwarders { 195.20.224.234; 195.20.224.99; };
forward first;
listen-on port 53 { 127.0.0.1; 217.160.188.135; };
listen-on-v6 { none; };
allow-query { 127.0.0.1; 217.160.188.135; };
allow-recursion { 127.0.0.1; 217.160.188.135; };
auth-nxdomain no; # conform to RFC1035
// version "My version is so secret that I even dont know what Im running on";
// Wer seine Bind Version "verstecken" will, kann die beide // vor version entfernen.
// If there is a firewall between you and nameservers you want
// to talk to, you might need to uncomment the query-source
// directive below. Previous versions of BIND always asked
// questions using port 53, but BIND 8.1 and later use an unprivileged
// port by default.
// query-source address * port 53;
// If your ISP provided one or more IP addresses for stable
// nameservers, you probably want to use them as forwarders.
// Uncomment the following block, and insert the addresses replacing
// the all-0's placeholder.
// forwarders {
// 0.0.0.0;
// };
// auth-nxdomain no; # conform to RFC1035
};
zone "188.160.217.in-addr.arpa" in {
type master;
file "/etc/bind/217.160.188.zone";
allow-query { any; };
};
zone "koppab.de" in {
type master;
file "/etc/bind/default.zone";
allow-query { any; };
};
Code: Select all
$TTL 1W
@ IN SOA ns root (
2003091203 ; serial
8H ; refresh
2H ; retry
1W ; expiry
11h) ; minimum
IN NS ns
IN NS ns.schlund.de.
IN MX 80 mail
IN A 217.160.188.135
IN MX 80 mail
* IN A 217.160.188.135
mysql IN A 217.160.188.135
Code: Select all
$TTL 1W
@ IN SOA ns.koppab.de. root.koppab.de. (
2003091203 ; serial
8H ; refresh
2H ; retry
1W ; expiry
11h) ; minimum
IN NS ns
IN NS ns.schlund.de.
135 IN PTR koppab.de.
Code: Select all
<VirtualHost 217.160.188.135:80>
ServerName www.koppab.de
ServerAlias www.koppab.de
RedirectPermanent / http://www.lzgclan.de/
</VirtualHost>
<VirtualHost 217.160.188.135:80>
ServerName mysql.koppab.de
DocumentRoot /home/lzg/www/phpMyAdmin
</VirtualHost>
kann wir wer sagen wo ich was übersehen habe , oder dauert es einfach nur noch bis der ns korekt arbeitet?