Fehlermeldung beim Start vom dhcpd

Alle weiteren Dienste, die nicht in die drei oberen Foren gehören.
Antworten
tbue
Beiträge: 19
Registriert: 07.01.2003 08:08:54
Wohnort: Berlin

Fehlermeldung beim Start vom dhcpd

Beitrag von tbue » 27.09.2003 23:53:26

hi leute,

beim starten des dhcpd bekomme ich folgende fehlermeldung:
"no subnet declaration for stop (0.0.0.0). please write a subnet declaration in your dhcpd.conf file for the network segment to which interface stop is attached."

hier ist meine dehcpd.conf

# dhcpd.conf
#
# Sample configuration file for ISC dhcpd
#

# option definitions common to all supported networks...
option domain-name "domain.local";
option domain-name-servers debian.domain.local;

option subnet-mask 255.255.255.0;
default-lease-time 600;
max-lease-time 7200;

subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.10 192.168.1.254;
option broadcast-address 192.168.0.255;
option routers 192.168.1.1;
option netbios-name-servers 192.168.1.1;
}

# Fixed IP addresses can also be specified for hosts. These addresses
# should not also be listed as being available for dynamic assignment.
# Hosts for which fixed IP addresses have been specified can boot using
# BOOTP or DHCP. Hosts for which no fixed address is specified can only
# be booted with DHCP, unless there is an address range on the subnet
# to which a BOOTP client is connected which has the dynamic-bootp flag
# set.
host debian {
hardware ethernet 00:00:E8:6F:CC:CF;
fixed-address 192.168.1.1;

???

Benutzeravatar
pdreker
Beiträge: 8298
Registriert: 29.07.2002 21:53:30
Lizenz eigener Beiträge: MIT Lizenz
Wohnort: Nürnberg

Beitrag von pdreker » 28.09.2003 02:41:07

Das sieht aber irgendwie nach einem Bug in dhcpd init.d Skript aus (Da kommt wahrscheinlich das "stop" her...)

Ausserdem fehlt in der letzten Zeile der Config eine "}", aber ich denke das ist ein Cut and Paste Fehler...

Patrick
Definitely not a bot...
Jabber: pdreker@debianforum.de

Benutzeravatar
Hendri
Beiträge: 586
Registriert: 23.08.2003 12:17:43
Lizenz eigener Beiträge: MIT Lizenz

Beitrag von Hendri » 29.09.2003 02:14:41

Hallo,
Könnte das nicht auch von einer NIC sein die keine IP hat?
Ciao Hendri

Antworten