Fog 0.33b doesn't begin uploading after task scheduled.
-
Your DHCP server has options 66 and 67 set right?
66: yourfogerverip
67: undionly.kpxe -
have you verified that the tftp server service is running?
-
tftp is running
This is what I put in my dhcpd.conf
if substring (option vendor-class-identifier, 0, 9) = “PXEClient” {
next-server 10.233.219.152;
filename “pxelinux.0”;
}What should it say instead?
-
filename needs to be undionly.kpxe for 0.33b
-
filename “pxelinux.0”;
Should be
filename “undionly.kpxe”;
-
and that’s it - nothing about this 66 and 67 should be in there as well?
-
66 is next-server which is your fog ip address which you have supplied with your script
67 is the boot file which is unidonly.kpxe which you have supplied with your scriptWell as long as you change the pxelinux.0 to undionly.kpxe
You will likely need to reboot your dhcp server in order for it to take effect.
-
yea i restarted dhcp and the server fog is installed on- this time it came up and didn’t even display the fog menu- there was some text about pxe i couldn’t quite catch it - then straight to windows
-
John Hangouts
We can all help (Jaymes, Junk, et moi) if that’s good with all of you?!?!)
-
[code]# DHCP Server Configuration file.
see /usr/share/doc/dhcp*/dhcpd.conf.sample
This file was created by FOG
use-host-decl-names on;
ddns-update-style interim;
ignore client-updates;
next-server 10.233.219.152;subnet 10.233.219.0 netmask 255.255.255.0 {
option subnet-mask 255.255.255.0;
range dynamic-bootp 10.233.219.200 10.0.7.250;
default-lease-time 21600;
max-lease-time 43200;
option domain-name-servers 10.233.219.5;
option routers 10.233.219.152;
filename “undionly.kpxe”;[/code]