Boa Tarde pessoal,

Instalei o slack em uma máquina de testes e na instalação já configurei o dhcp para ser instalado,

Entrei no arquivo /etc/dhcpd.conf e coloquei o seguintes configurações:
--------------------------------------------------------------------------------------
ddns-update-style interim;
authoritative;
ignore client-updates;


subnet 192.168.100.0 netmask 255.255.255.0 {
# --- default gateway
option routers 192.168.100.1;
option subnet-mask 255.255.255.0;


option nis-domain "laboratorio";
option domain-name "laboratorio";


option domain-name-servers 208.67.222.222,208.67.220.220;


option time-offset -18000; # Eastern Standard Time


# --- Selects point-to-point node (default is hybrid). Don't change this unless
# -- you understand Netbios very well
# option netbios-node-type 2;


range dynamic-bootp 192.168.100.101 192.168.100.254;
default-lease-time 21600;
max-lease-time 43200;


# -------------------------------------------------------------------
# SERVERS
# -------------------------------------------------------------------
# SERVIDOR DE SISTEMAS WIN 2003
# host server_sistemas {
# next-server laboratorio;
# hardware ethernet ff:fe:45:27:32:bf;
# fixed-address 172.21.100.2;
# }
# -------------------------------------------------------------------
# PRINTERS
# -------------------------------------------------------------------
# IMPRESSORA 01
# host printer_impressora01 {
# next-server laboratorio;
# hardware ethernet 1c:c1:ee:ce:3d:2d;
# fixed-address 192.168.100.11;
# }
# INICIO DA LISTA DE IPS PARA AS ESTACOES DE TRABALHO
# -------------------------------------------------------------------
# HOSTS - TESTES (Range: 192.168.100.101 - 192.168.100.254)
# -------------------------------------------------------------------
# estacao-01
host client_estacao01 {
next-server laboratorio;
hardware ethernet 00:44:2f:dd:eb:53;
fixed-address 192.168.100.101;
}
}
--------------------------------------------------------------------------------------
Ao entrar na pasta onde se encontra o exec. do dhcpd em /usr/sbin e dar o comando ./dhcpd start ele me traz o erro abaixo.

Internet Systems Consortium DHCP Server 4.1.1
Copyright 2004-2010 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/
WARNING: Host declarations are global. They are not limited to the scope you declared them in.
Can't open lease database /var/state/dhcp/dhcpd.leases: No such file or directory --
check for failed database rewrite attempt!
Please read the dhcpd.leases manual page if you
don't know what to do about this.


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 [email protected]
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.
------------------------------
tentei tb o comando dhcpd eth1
e o mesmo resultado, no /var/log/messages traz o seguinte texto:

Sep 24 14:31:09 server01 dhcpd: Internet Systems Consortium DHCP Server 4.1.1
Sep 24 14:31:09 server01 dhcpd: Copyright 2004-2010 Internet Systems Consortium.
Sep 24 14:31:09 server01 dhcpd: All rights reserved.
Sep 24 14:31:09 server01 dhcpd: For info, please visit https://www.isc.org/software/dhcp/
Sep 24 14:31:13 server01 dhcpd: Internet Systems Consortium DHCP Server 4.1.1
Sep 24 14:31:13 server01 dhcpd: Copyright 2004-2010 Internet Systems Consortium.
Sep 24 14:31:13 server01 dhcpd: All rights reserved.
Sep 24 14:31:13 server01 dhcpd: For info, please visit https://www.isc.org/software/dhcp/
Sep 24 14:31:23 server01 dhcpd: Internet Systems Consortium DHCP Server 4.1.1
Sep 24 14:31:23 server01 dhcpd: Copyright 2004-2010 Internet Systems Consortium.
Sep 24 14:31:23 server01 dhcpd: All rights reserved.
Sep 24 14:31:23 server01 dhcpd: For info, please visit https://www.isc.org/software/dhcp/

Alguem poderia me ajudar?

Pelo que vi o server dhcp é o 4.1.1 e o slackware meu é 13.1.0




Grato,


Fabio