PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : DHCP-Server will nicht starten



OpenSource
02.08.03, 14:44
Wenn ich meinen DHCP-Server starten will erscheint diese Meldung:


Starting DHCP server Internet Software Consortium DHCP Server V3.0.1rc9
Copyright 1995-2001 Internet Software Consortium.
All rights reserved.
For info, please visit http://www.isc.org/products/DHCP

** You must add a ddns-update-style statement to /var/lib/dhcp///etc/dhcpd.conf.
To get the same behaviour as in 3.0b2pl11 and previous
versions, add a line that says "ddns-update-style ad-hoc;"
Please read the dhcpd.conf manual page for more information. **

If you did not get this software from ftp.isc.org, please
get the latest from ftp.isc.org and install that before
requesting help.

If you did get this software from ftp.isc.org and have not
yet read the README, please read it before requesting help.
If you intend to request help from the dhcp-server@isc.org
mailing list, please read the section on the README about
submitting bug reports and requests for help.

Please do not under any circumstances send requests for
help directly to the authors of this software - please
send them to the appropriate mailing list as described in
the README file.

exiting.

Meine Einstellungen der dhcpd.conf sind so:


default-lease-time 600;
max-lease-time 7200;

option domain-name "networksecurity.de.vu";
option domain-name-servers 192.168.0.4;
option broadcast-address 192.168.0.255;
option subnet-mask 255.255.255.0;

subnet 192.168.0.0 netmask 255.255.255.0
{
range 192.168.0.5 192.168.0.25;
}

Hat jemand eine Ahnung was ich da falsch gemacht habe?

steve-bracket
02.08.03, 14:53
default-lease-time 600;
max-lease-time 7200;

option domain-name "networksecurity.de.vu";
option domain-name-servers 192.168.0.4;
option broadcast-address 192.168.0.255;
option subnet-mask 255.255.255.0;

subnet 192.168.0.0 netmask 255.255.255.0
{
range 192.168.0.5 192.168.0.25;
}



ddns-update-style none; -- fehlt dir.

Gruß
Steve

OpenSource
02.08.03, 14:56
Wo muss ich das denn eintragen und wie mache ich das?

steve-bracket
02.08.03, 14:58
Naja, in der dhcpd.conf halt, wo sonst
???

ddns-update-style none;
default-lease-time 600;
max-lease-time 7200;

option domain-name "networksecurity.de.vu";
option domain-name-servers 192.168.0.4;
option broadcast-address 192.168.0.255;
option subnet-mask 255.255.255.0;

subnet 192.168.0.0 netmask 255.255.255.0
{
range 192.168.0.5 192.168.0.25;
}


Gruß

OpenSource
02.08.03, 15:01
Danke, hab heut irgendwie Tomaten vor den Augen.