Thank you very much for the reply. Your suggestion worked perfect! Granted initially I was using a linksys router for DHCP, I had put in an extra NIC card in my linux box, setup a dhcp server and added the options you mentioned and the phones booted up with the configs I created no problem!
This was my first time setting up a linux DHCP server, but for anone else that may run across this, this is what I did. There may be another way, but this is what I did to get it to work.
dhcpd.conf
Quote:
option domain-name "linux.wmx";
option ip-forwarding off;
option routers 10.10.10.1;
option option-66 code 66 = ip-address; <-- added custom 66 option
option option-67 code 67 = ip-address; <-- added custom 67 option
ddns-update-style interim;
ignore client-updates;
default-lease-time 14400;
subnet 10.10.10.0 netmask 255.255.255.0 {
range 10.10.10.20 10.10.10.30;
option broadcast-address 10.10.10.255;
option subnet-mask 255.255.255.0;
option domain-name-servers 10.10.10.3;
default-lease-time 14400;
max-lease-time 172800;
option option-66 10.2.10.91; <-- Entered IP for TFTP server address
option option-67 10.2.10.91; <-- Entered IP for TFTP server address
}