在Linux中直接指定命令:
iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8080
其中80为要访问的端口,8080为被重定向的端口;