Sto provando a reindirizzare il traffico http sulla porta 8080 sullo stesso computer e avere le regole iptables sotto funzionanti.Come aggiornare in modo permanente iptables
iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-ports 8080
iptables -t nat -A OUTPUT -p tcp --dport 80 -j REDIRECT --to-ports 8080
Sto cercando di capire come rendere permanente questo cambiamento in caso di riavvio del sistema.
Utilizzo il server Ubuntu 11.10.
http://askubuntu.com/questions/66890/how-can-i -make-a-specifico-set-of-iptables-rules-permanent – azerafati