1 Jan 2011 02:31
DHCPD troubleshooting..? help!
Hello,
i've setup dhcp as such:
yum install dhcp
vim /etc/dhcpd.config
#
# DHCP Server Configuration file.
# see /usr/share/doc/dhcp*/dhcpd.conf.sample
#ddns-update-style interim;
ddns-update-style interim;
ddns-rev-domainname "in-addr.arpa";
ignore client-updates;
subnet 192.168.75.0 netmask 255.255.255.0 {
option routers 192.168.75.25; #Default Gateway
option subnet-mask 255.255.255.0;
option domain-name "home.local";
option domain-name-servers 8.8.8.8;
#option netbios-name-servers 192.168.0.2; #WINS Server
range dynamic-bootp 192.168.75.26 192.168.75.100; #DHCP Range to assign
default-lease-time 43200;
max-lease-time 86400;
}
more /etc/sysconfig/dhcpd
# Command line options here
DHCPDARGS=eth0
(Continue reading)
RSS Feed