198
edits
Changes
→NAT configuration
== NAT configuration ==
The firewall and NAT is configured with a iptables script: /root/iptables.sh
1. Stop/disable firewalld
<pre>
systemctl stop firewalld
systemctl disable firewalld
</pre>
2. Start/enable iptables
<pre>
systemctl start iptables
systemctl enable iptables
<pre>
3. Run the iptables script and save the iptables rules
<pre>
/root/iptables.sh
iptables-save > /etc/sysconfig/iptables
</pre>
<pre>