On Thu, 25 Dec 2003 22:02:19 +0100, "john" <(E-Mail Removed)> wrote:
[cut]
>
>This is my dhcpd.conf file:
>***************************
>
>ddns-update-style none;
>
># option definitions common to all supported networks...
>option domain-name-servers 192.168.10.1, 192.168.2.1;
As Neil already mentioned: just your own DNS should be listed here
>
>zone "dom" {
>type master;
>file "dom.zone";
>notify yes;
>allow-updates { any };
>};
1. It's "allow-update" not "allow-updates"
2. Didn't you get any messages in your logfile (e.g.
/var/log/messages9 This syntax couldn't work.
3. Think about "allow-update { any };" in terms of security.
>************************************************* ***
>
>dom.zone file:
>************************************************* ***
>$TTL 1w
>@ IN SOA Knoppix. localhost.Knoppix. (
>#should this be: @ IN SOA dom. ??
>
>2004
>21600
>1800
>604800
>900 )
>
>IN NS Knoppix.
>#Knoppix returns local host
>#or do I have to define another Knoppix. zone ??
>
I expect the SOA-record to be another the source of problems.
You can get good recommandations about the meaning of the fields in
SOA at
http://www.ripe.net/ripe/docs/ripe-203.html
If you modify it, it could work:
**********************************
dom.zone file
**********************************
$TTL 1w
$ORIGIN dom.
@ IN SOA ns hostmaster.ns (
200404
21600
1800
604800
900 )
NS ns
ns IN A 192.168.10.1
vector IN A 192.168.10.20
www IN CNAME vector
**********************************
Similar changes to the reverse lookup file should be done.
regards,
wolfgang "waggy"
-----------------------------------------------------------------------
The "FIVE" should read "5" & remove the "WWW".