# iptables -V<br>iptables v1.4.13<br><br># iptables -v -t nat -A PREROUTING -p tcp --destination-port 80 -j REDIRECT --to-port 8080<br>REDIRECT tcp opt -- in * out * <a href="http://0.0.0.0/0">0.0.0.0/0</a> -> <a href="http://0.0.0.0/0">0.0.0.0/0</a> tcp dpt:80 redir ports 8080<br>
iptables: No chain/target/match by that name.<br><br>I would like to redirect all traffic on port 80 to port 8080<br>Manpages says everything is correct. There is no redirect option in the kernel(zen-3.3.7) config that I can find.<br>
<br>