Youre kinda missing some goodies, default router.... once you have made your changes you have to restart dhcpd '%/etc/init.d/dhcpd restart' dont forget to reconfigure windows clients and setup DHCP on the LAN settings afterwards and run a ipconfig \release then a ipconfig \renew. also, make sure that your router/glorified hub or smc switch has DHCP services turned OFF
--------------sample dhcpd.conf---------------------------------
ddns-update-style interim; redhat 9.0 NEEDS THIS LINE
ignore client-updates;
subnet 10.1.1.0 netmask 255.255.255.0 {
# --- default gateway
option routers 10.1.1.1;
option nis-domain "mycompany.com";
option domain-name "mycompany.com";
option domain-name-servers 1.1.1.1; (your primary DNS host here, internal)
option time-offset -18000; # Eastern Standard Time
host servername {servername.mycompany.com;
hardware ethernet xx:xx:xx:xx:xx:xx;(obtained by running ifconfig, HWaddr value for eth0)
fixed-address 200.180.200.199; (whatever you externally resolve as)
}
}
------------------------------------------------ end--
Enjoy,