I am doing a kickstart installation of CentOS 6.6, using the same kickstart file that I used for CentOS 6.5. I have the following line to define the firewall settings:<br />
<br />
firewall --service=ssh --port=5432,6161,8080,8443,61616<br />
<br />
When the install completes and I reboot, iptables is enabled in chkconfig, but not started. There is no /etc/sysconfig/iptables file present on the system.<br />
<br />
If I check the /root/anaconda-ks.cfg file, the firewall line is present, albeit formatted a little differently:<br />
<br />
firewall --port=5432:tcp --port=6161:tcp --port=8080:tcp --port=8443:tcp --port=61616:tcp --service=ssh<br />
<br />
So it seems like the anaconda installer is processing the line but it isn't setting up the firewall correctly.
↧