Created
December 22, 2023 10:42
-
-
Save aleskxyz/1e5957a7f0852b7ab3f28fe2c174e3f5 to your computer and use it in GitHub Desktop.
Revisions
-
aleskxyz created this gist
Dec 22, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ # This snippet is an example of how we can forward port 80 and 443 from a local server to a remote server # These commands are working on Debian and Ubuntu echo net.ipv4.ip_forward=1 > /etc/sysctl.d/99-ipforward.conf sysctl -p apt install iptables-persistent iptables -t nat -A PREROUTING -p tcp --dport 80 -j DNAT --to-destination <remote-server-ip>:80 iptables -t nat -A PREROUTING -p tcp --dport 443 -j DNAT --to-destination <remote-server-ip>:443 iptables -t nat -A POSTROUTING -j MASQUERADE iptables-save > /etc/iptables/rules.v4