Adding Nameservers

plugin

Verified User
Joined
Aug 17, 2004
Messages
59
Oki. i have replyed several times about the nameservers that wont get added. I explained it but no one could fix my problem. So thats why this post is, included screenshots. Please take a look and think of what could be wrong..

1.jpg

2.jpg


Screenshot 3: Check out the Empty dropdown box!
3.jpg


/etc/named.conf:
// generated by named-bootconf.pl

options {
directory "/var/named";
/*
* 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 uses an unprivileged
* port by default.
*/
// query-source address * port 53;
};

//
// a caching only nameserver config
//
controls {
inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};
zone "." IN {
type hint;
file "named.ca";
};

zone "localhost" IN {
type master;
file "localhost.zone";
allow-update { none; };
};

zone "0.0.127.in-addr.arpa" IN {
type master;
file "named.local";
allow-update { none; };
};

include "/etc/rndc.key";
zone "myserver.nl" { type master; file "/var/named/myserver.nl.db"; };


/var/named/myserver.nl.db:
$TTL 14400
@ IN SOA 1.2.3.31. root.myserver.nl. (
2004082509
7200
3600
1209600
86400 )

myserver.nl. 14400 IN NS 1.2.3.31.
myserver.nl. 14400 IN NS 1.2.3.32.

ftp 14400 IN A 1.2.3.30
localhost 14400 IN A 1.2.3.30
mail 14400 IN A 1.2.3.30
pop 14400 IN A 1.2.3.30
myserver.nl. 14400 IN A 1.2.3.30
www 14400 IN A 1.2.3.30

myserver.nl. 14400 IN MX 10 mail



myserver.nl. IN TXT "v=spf1 -all"

I hope this is enough to get my situation.. Already thanks for everyone who replys!

Plugin
 
Did you manually add the domain through DNS Settings or as the admin level. If the first, add the domain through the admin/user level so that your admin/reseller/user account own that domain, then it should show up in the drop down box.
 
Hey,

If you look at your 2.jpg you see two Type "NS" records that have IPs listed in the Value column...

That's not right... Instead of IPs in the Value column you should have something like "ns1.myserver.nl.".

I don't know if that'll fix the drop down but, it should be fixed.

The IPs should be associated with an "A" record for "ns1" and "ns2".

David
 
Last edited:
skruf said:
Hey,

If you look at your 2.jpg you see two Type "NS" records that have IPs listed in the Value column...

That's not right... Instead of IPs in the Value column you should have something like "ns1.myserver.nl.".

I don't know if that'll fix the drop down but, it should be fixed.

The IPs should be associated with an "A" record for "ns1" and "ns2".

David

You are right in this. But there isnt any edit button, and adding it can only be done without modifying the domain.. check it yourself if you want. How should i do this?
 
jmstacey said:
Did you manually add the domain through DNS Settings or as the admin level. If the first, add the domain through the admin/user level so that your admin/reseller/user account own that domain, then it should show up in the drop down box.

Works delicious.. adding it as admin doesnt work, but as user DOES work! Thanks!
 
Back
Top