Question

forwarding HTTp to HTTPS issues

I’m trying to forward HTTP to HTTPS in the Iptables. By doing this: sudo iptables -t nat -A PREROUTNG -p tcp --dport 80 -j R EDIRECT --to-port 443

and this sudo iptables -t nat -A PREROUTNG -p tcp --sport 80 -j R EDIRECT --to-port 443

I get an error that says No chain/target/match by that name. What am I doing wrong?


Submit an answer
Answer a question...

This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hello there,

I don’t think you have it formatted correctly, you can try it:

  1. sudo iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-ports 443

Hope that helps,

Sergio Turpín