Subdomain erstellen

Reaper1991

Registered User
Hallo,

ich habe eine Domain bei Hetzner (Domain Robot) - Beim DNS Eintrag habe ich die IP meines Webservers mit ispCP eingetragen.

Wie kann ich es machen, dass ich über ispCP eine Subdomain erstellen kann?
Also was muss ich baim DNS Eintrag hinzufügen?

Danke für eure Hilfe :)
 
Also sollte es so funktionieren?

$TTL 86400
@ IN SOA ns1.first-ns.de. postmaster.robot.first-ns.de. (
2010122700 ; serial
14400 ; refresh
1800 ; retry
604800 ; expire
86400 ) ; minimum

@ IN NS robotns3.second-ns.com.
@ IN NS robotns2.second-ns.de.
@ IN NS ns1.first-ns.de.

@ IN A xx.xx.xx.xx
localhost IN A 127.0.0.1
mail IN A xx.xx.xx.xx
www IN A xx.xx.xx.xx
ftp IN CNAME www
imap IN CNAME www
loopback IN CNAME localhost
pop IN CNAME www
relay IN CNAME www
smtp IN CNAME www
@ IN MX 10 mail
* IN A xx.xx.xx.xx

xx.xx.xx.xx ist natürlich die IP meines Webservers.
 
PHP:
$TTL 86400
@   IN SOA ns1.first-ns.de. postmaster.robot.first-ns.de. (
    2011042200   ; serial
    14400        ; refresh
    1800         ; retry
    604800       ; expire
    86400 )      ; minimum
 
backend                  IN NS      backend
@                        IN NS      robotns3.second-ns.com.
@                        IN NS      robotns2.second-ns.de.
@                        IN NS      ns1.first-ns.de.
 
@                        IN A       80.83.122.243
*                        IN A       80.83.122.243
localhost                IN A       127.0.0.1
mail                     IN A       80.83.122.243
www                      IN A       80.83.122.243
ftp                      IN CNAME   www
imap                     IN CNAME   www
loopback                 IN CNAME   localhost
pop                      IN CNAME   www
relay                    IN CNAME   www
smtp                     IN CNAME   www
@                        IN MX 10   mail

so sieht meiner aus.
 
Ok, danke. Werde es so probieren.

EDIT: Funktioniert :) Dankeee für die Hilfe <33
 
Last edited by a moderator:
Eine Kleinigkeit noch ;)

Ich habe eine Subdomain (dl.xxxxx.de) - die soll auf eine andere IP Adresse "leiten", da es für Donwloads einen extra Server gibt.

Was muss ich hinzufügen um eine Subdomain auf einen speziellen Server zu leiten?
 
Sähe dann wie folgt aus wie er schon sagt A - Record:

PHP:
$TTL 86400
@   IN SOA ns1.first-ns.de. postmaster.robot.first-ns.de. (
    2011042200   ; serial
    14400        ; refresh
    1800         ; retry
    604800       ; expire
    86400 )      ; minimum
 
backend                  IN NS      backend
@                        IN NS      robotns3.second-ns.com.
@                        IN NS      robotns2.second-ns.de.
@                        IN NS      ns1.first-ns.de.
 
@                        IN A       80.83.122.243
*                        IN A       80.83.122.243
subdomain                IN A       80.83.122.243
localhost                IN A       127.0.0.1
mail                     IN A       80.83.122.243
www                      IN A       80.83.122.243
ftp                      IN CNAME   www
imap                     IN CNAME   www
loopback                 IN CNAME   localhost
pop                      IN CNAME   www
relay                    IN CNAME   www
smtp                     IN CNAME   www
@                        IN MX 10   mail

musst ''subdomain'' dann natürlich durch deine Subdomain ändern (ganz logisch!).
 
Back
Top