Weiterleiten auf xxx.no-ip.info

Bind, PowerDNS
Post Reply
supertas
Posts: 27
Joined: 2003-08-13 11:21
 

Weiterleiten auf xxx.no-ip.info

Post by supertas »

Hallo,

wie kann ich eine Subdomain auf eine xxx.no-ip.info Adresse weiterleiten?

Wenn ich meine Zone Datei so einstelle

Code: Select all

$TTL 1W
@               IN SOA       ns.exxxr.de.   root.sxxxs.de. (
                                2003092604      ; serial
                                8H              ; refresh
                                2H              ; retry
                                1W              ; expiry
                                11h)            ; minimum
                IN NS           ns.exxxr.de.
                IN NS           ns.schlund.de.
                IN MX           10 mail.exxxr.de.
		IN MX           20 mx01.schlund.de.
                IN A            217.160.209.xxx
athome          IN A            xxx.no-ip.info
*               IN A            217.160.209.xxx
Bei nslookup (set q=any) bekomme ich dann folgende Antwort:

Code: Select all

Non-authoritative answer:
sxxxs.de     nameserver = ns.exxxr.de
sxxxs.de     nameserver = ns.schlund.de

Authoritative answers can be found from:
sxxxs.de     nameserver = ns.exxxr.de
sxxxs.de     nameserver = ns.schlund.de
ns.exxxr.de        internet address = 217.160.209.xxx
ns.schlund.de   internet address = 195.20.224.97
Wie stelle ich die Zonedatei richtig ein?

Gruß
Thomas
olaf.dietsche
Posts: 401
Joined: 2002-12-19 02:06
Location: Siegburg
 

Re: Weiterleiten auf xxx.no-ip.info

Post by olaf.dietsche »

Ein Alias wird mit CNAME definiert, also

Code: Select all

athome          IN CNAME            xxx.no-ip.info
supertas
Posts: 27
Joined: 2003-08-13 11:21
 

Re: Weiterleiten auf xxx.no-ip.info

Post by supertas »

olaf.dietsche wrote:Ein Alias wird mit CNAME definiert, also

Code: Select all

athome          IN CNAME            xxx.no-ip.info
thx

Gruß
Thomas
Post Reply