Configure the iptables behavior in file /etc/sysconfig/iptables-config to save the new rules
IPTABLES_SAVE_ON_STOP="yes"
IPTABLES_SAVE_ON_RESTART="yes"
IPTABLES_SAVE_COUNTER="yes"
Manually add the following rules:
> iptables -t nat -A OUTPUT -d localhost -p tcp --dport 80
-j REDIRECT --to-ports 8080
> iptables -t nat -A OUTPUT -d <your_ip> -p tcp --dport 80
-j REDIRECT --to-ports 8080
> iptables -t nat -A PREROUTING -d <your_ip> -p tcp --dport 80
-j REDIRECT --to-ports 8080
Save and restart the service:
> /etc/init.d/iptables save
> /etc/init.d/iptables restart
1 comment:
Thank you Karsten.
Post a Comment