Redirect port 80 in a zone to port 8070 in a zone - IPFILTER/IPNAT
807557Apr 11 2008 — edited Apr 11 2008I have a non-root user running a web server on 8070 in a zone, and he wants port 80 redirected to 8070 so his URL wont have :8070 in it.
On Linux with iptables, I did:
iptables -t nat -I PREROUTING -p tcp dport 80 -j REDIRECT to-ports 8070
Works great, all traffic to port 80 is redirected to port 8070.
How can I do the same with IP Filter? I understand IP Filter has to be run in the global zone, not a problem.