Question
UFW and iptables issue with port forwarding
Hi all
I am relatively new to UFW and iptables.
I need the following port forwarding to be permanent:
iptables -A INPUT -i eth0 -p tcp –dport 80 -j ACCEPT
iptables -A INPUT -i eth0 -p tcp –dport 8080 -j ACCEPT
iptables -A PREROUTING -t nat -i eth0 -p tcp –dport 80 -j REDIRECT –to-port 8080
iptables -A INPUT -i eth0 -p tcp –dport 443 -j ACCEPT
iptables -A INPUT -i eth0 -p tcp –dport 8443 -j ACCEPT
iptables -A PREROUTING -t nat -i eth0 -p tcp –dport 443 -j REDIRECT –to-port 8443
I have enabled UFW and made settings in there as well.
When rebooting the UFW settings remain but the iptables settings disappear.
How do I make them permanent? Preferably via UFW - if possible.
Thanks
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×