I am trying to setup up my Linksys SPA3102, according to the wiki. All is going well until i made factory reset and Linksys doesnt get IP adress from the Core. Here is my dhcpd.conf file:
# option definitions common to all supported networks...
#option domain-name "fugue.com";
#option domain-name-servers toccata.fugue.com;
option domain-name-servers 192.168.80.1;
authoritative;
option routers 192.168.80.1;
option subnet-mask 255.255.255.0;
# lease IPs for 1 day, maximum 1 week
default-lease-time 86400;
max-lease-time 604800;
allow booting;
allow bootp;
option space pxelinux;
option pxelinux.magic code 208 = string;
option pxelinux.configfile code 209 = text;
option pxelinux.pathprefix code 210 = text;
option pxelinux.reboottime code 211 = unsigned integer 32;
subnet 192.168.80.0 netmask 255.255.255.0 {
next-server 192.168.80.1;
filename "/tftpboot/pxelinux.0";
option pxelinux.reboottime = 30;
default-lease-time 86400;
max-lease-time 604800;
pool {
allow unknown-clients;
range 192.168.80.129 192.168.80.149;
range 192.168.80.151 192.168.80.254;
}
}
# PXE booting machines
group {
next-server 192.168.80.1;
filename "/tftpboot/pxelinux.0";
option pxelinux.reboottime = 30;
# Compaq 700EA (43)
host moon43 { hardware ethernet 00:08:02:4A:0B:AC; fixed-address 192.168.80.2; }
# Generic PC as MD (72)
host moon72 { hardware ethernet 00:1B:38:8F:8A:B2; fixed-address 192.168.80.3; }
}
# regular machines
group {
# Generic Motion IP Camera (146)
host pc1 { hardware ethernet 00:22:B0:01:FC:D1; fixed-address 192.168.80.20; }
# FREENAS - FREENAS (149)
host pc2 { hardware ethernet 00:50:BA:D4:A3:15; fixed-address 192.168.80.150; }
}
# CORE (1) has bad mac address:
My setup is 2 NICs, like its supposed to be. I havent had any problems with DHCP before, and a few days ago I added my WebDT366 without a problem.
Thanks to anyone for any suggestion.