Привет всем!!! Столкнулся с ситуацией при установке dhcp в Linux Gentoo. На работе поставился с пол пня, зашуршал голубчик. дамой пришел делаю то же самое не работает. просматриваю логи нету ничего. глухо как в танке. Делаю касяки в файле /etc/ndcp/dhcpd.conf в логах сразу появляются записи!!! Просмотрел кучу доков не работает, конфы разные пробывал не идет и неговорит почему!!! Подскажите где я ошибся прилогаю мои конфы.
/etc/dhcp/dhcpd.conf
default-lease-time 1209600;
max-lease-time 2592000;
ddns-update-style interim;
authoritative;
lease-file-name "/var/lib/dhcp/dhcpd.leases";
log-facility local7;
option domain-name "ubk.local";
option domain-name-servers 192.168.1.1;
option routers 192.168.1.2;
option subnet-mask 255.255.0.0;
subnet 192.168.1.0 netmask 255.255.0.0
{
range 192.168.1.50 192.168.100.100;
}
/etc/conf.d/dhcp
# /etc/conf.d/dhcpd: config file for /etc/init.d/dhcpd
# If you require more than one instance of dhcpd you can create symbolic
# links to dhcpd service like so
# cd /etc/init.d
# ln -s dhcpd dhcpd.foo
# cd ../conf.d
# cp dhcpd dhcpd.foo
# Now you can edit dhcpd.foo and specify a different configuration file.
# You'll also need to specify a pidfile in that dhcpd.conf file.
# See the pid-file-name option in the dhcpd.conf man page for details.
# If you wish to run dhcpd in a chroot, uncomment the following line
DHCPD_CHROOT="/chroot/dhcp"
# Then run emerge dhcp --config
# All file paths below are relative to the chroot.
# You can specify a different chroot directory but MAKE SURE it's empty.
# Specify a configuration file - the default is /etc/dhcp/dhcpd.conf
DHCPD_CONF="/etc/dhcp/dhcpd.conf"
# Configure which interface or interfaces to for dhcpd to listen on.
# List all interfaces space separated. If this is not specified then
# we listen on all interfaces.
DHCPD_IFACE="eth0"
# Insert any other dhcpd options - see the man page for a full list.
# DHCPD_OPTS=""