443 8443 iptable 重定向

443 8443 iptable 重定向

想要将443重定向到tomcat 8443:

sudo iptables -t nat -n -L PREROUTING --line-numbers

num  target     prot opt source               destination
1    DOCKER     all  --  0.0.0.0/0            0.0.0.0/0            ADDRTYPE match dst-type LOCAL
2    REDIRECT   tcp  --  0.0.0.0/0            0.0.0.0/0            tcp dpt:80 redir ports 8080
3    REDIRECT   tcp  --  0.0.0.0/0            0.0.0.0/0            tcp dpt:443 redir ports 8443

sudo ufw status

To                         Action      From
--                         ------      ----
80/tcp                     ALLOW       Anywhere
8080/tcp                   ALLOW       Anywhere
8443/tcp                   ALLOW       Anywhere
443/tcp                    ALLOW       Anywhere

我可以访问https://lo.con.com:8443但不是https://lo.con.com

访问 http 正确地将我引导至 8080。

相关内容