Hello there fellow BSDers.
I am completely new to the game, switching from Linux for this particular problem I have.
There is only one thing keeping me from completing my project: I want subdomain.selfhost.eu to be routed into the intranet via named. selfhost.eu is a registered domain, and so is my subdomain with their DynDNS service.
I edited the named.conf as follows:
and then created a file in subdomain.selfhost.eu in the master directory. It looks like this:
The webserver is running on the same IP as the NS. It is a jail in FreeNAS named owncloud_1.
Where did I go wrong? If I ping selfhost.eu I get their public IP. If I ping subdomain.selfhost.eu I get
I do know their nameservers, if that helps any. They are pri.asok.de and sec.asok.de.
I hope I gave you enough information.
I am completely new to the game, switching from Linux for this particular problem I have.
There is only one thing keeping me from completing my project: I want subdomain.selfhost.eu to be routed into the intranet via named. selfhost.eu is a registered domain, and so is my subdomain with their DynDNS service.
I edited the named.conf as follows:
Code:
zone "subdomain.selfhost.eu" { type master; file "/etc/named/master/subdomain.selfhost.eu"; };
Code:
$TTL 2d ; zone default TTL = 2 days
$ORIGIN subdomain.selfhost.eu.
@ IN SOA subdomain.selfhost.eu. root.subdomain.selfhost.eu. (
2013112116 ; Seriennummer IMMER UM 1 ERHOEHEN
10800 ; Refresh
3600 ; Retry
604800 ; Expire
86400 ) ; Minimum TTL
;
IN NS subdomain.selfhost.eu.
;
;DNS Server von subdomain.selfhost.eu
@ IN A 192.168.2.12
subdomain IN A 192.168.2.12
localhost IN A 127.0.0.1
;
www IN CNAME subdomain
The webserver is running on the same IP as the NS. It is a jail in FreeNAS named owncloud_1.
Where did I go wrong? If I ping selfhost.eu I get their public IP. If I ping subdomain.selfhost.eu I get
Code:
ping: unknown host subdomain.selfhost.eu
I do know their nameservers, if that helps any. They are pri.asok.de and sec.asok.de.
I hope I gave you enough information.