• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

dhcpd startet nicht

wenn ich rcdhcpd start eingebe bekomme ich als ergebnis

No subnet declaration for eth-id-00:00:5a (0.0.0.0).
** Ignoring requests on eth-id-00:00:5a. If this is not what
you want, please write a subnet declaration
in your dhcpd.conf file for the network segment
to which interface eth-id-00:00:5a is attached. **


Not configured to listen on any interfaces!


in der dhcpd.conf steht folgendes

[/b]
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.104.255;
option netbios-node-type 8;
option netbios-scope "";
ddns-update-style none;
authoritative ;
default-lease-time 604800;
max-lease-time 604800;
subnet 192.168.104.0 netmask 255.255.255.0 {
server-name "192.168.104.50";
option broadcast-address 192.168.104.255;
option bootfile-name "boot.iso";
range dynamic-bootp 192.168.104.100 192.168.104.200;
# Win95 pre-OSR2 does not work without broadcast
if option vendor-class-identifier = "MSFT 95" {
always-broadcast on;
}
}
[/b]

vielen dank für eure hilfe im voraus
 
in der /etc/sysconfig/dhcpd steht

DHCPD_INTERFACE="eth-id-00:00:5a:9d:7c:21"
DHCPD_RUN_CHROTED="no"
DHCPD_CONF_INCLUDED_FILES=""
DHCPD_RUN_AS="nobody"
DHCPD_OTHER_ARGS=""
 
Oben