Two issues I'm having
-
@BrendoJohnso Have you checked firewalls on the FOG Server?
-
@BrendoJohnso There are 2 things you need to do to the FOG host server when FOG is installed.
- Disable the firewall (iptables)
- Change selinux config to permissive.
beyond that.
On the fog server linux console, if you key in the following commandsudo netstat -an|grep 69
that should give you an output that looks like this:# sudo netstat -an|grep 69 udp 0 0 0.0.0.0:69 0.0.0.0:*
That tells us the tftp server is running (what the client needs to pick up the undionly.kpxe file)
If you are unsure if the firewall is disabled, post the output of this command
sudo iptables -L
If your output looks like this then your firewall is off
# sudo iptables -L Chain INPUT (policy ACCEPT) target prot opt source destination Chain FORWARD (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination
-
@george1421 The firewall one looks the same so its off
However the tftp one says this
-
@BrendoJohnso What’s output with:
sudo systemctl status tftpd-hpa
-
@Tom-Elliott its saying that’s an unknown command
-
@BrendoJohnso Maybe:
service tftpd-hpa status
-
@Tom-Elliott tftpd-hpa start/running
-
@BrendoJohnso So looking at the picture of the
netstat -an | grep 69
command, I don’t see anything showing “network” outgoing stuff.Maybe:
ifconfig
Might help us out?
-
-
@BrendoJohnso can you edit the
/etc/default/tftpd-hpa
Change the line that reads as “:69”
Make it read as: “0.0.0.0:69”
Then restart the tftpd-hpa service with:
sudo service tftpd-hpa restart
-
@Tom-Elliott i restarted the service and now its booting correctly and im creating our first test image thank you very much saved my life
-
I think that’s a bit “extreme”. I would certainly hope FOG is not a “life or death” situation.
(At least I would hope people aren’t threatening other’s lives over it).
Glad we could help though.