Archives for: June 2008
Windows Vista not accepting IP address from a Linux dhcpd
June 18th, 2008I had a problem with Windows Vista not accepting an IP address, being offered from a Linux DHCP server.
Apart from changing the already known registry entry (DhcpConnEnableBcastFlagToggle), I had to add the following line to my dhcpd.conf
server-identifier 192.168.0.3;
Now my config looks like this:
subnet 192.168.0.0 netmask 255.255.255.0 {
allow unknown-clients;
ddns-updates on;
ddns-domainname "olympus.home";
option domain-name-servers 192.168.0.3;
option broadcast-address 192.168.0.255;
option subnet-mask 255.255.255.0;
option routers 192.168.0.1;
range 192.168.0.100 192.168.0.200;
server-identifier 192.168.0.3;
}
Restarting the dhcpd server, solved my problem.
I found the solution at http://www.fedoraforum.org/forum/archive/index.php/t-157188.html
Zikula is the new name for PostNuke
June 5th, 2008It's out there. We've been waiting for this a long time now, but finally the new name for Postnuke is known: Zikula.
Congratulations, guys!
The announcement tells us the new is derived from the Zulu language.
Read more in the official press release.