Skip to content

Instantly share code, notes, and snippets.

@jiverson
Forked from m5m1th/localPorts.sh
Created May 5, 2014 17:38
Show Gist options
  • Save jiverson/ce947d2353a6f10e5de4 to your computer and use it in GitHub Desktop.
Save jiverson/ce947d2353a6f10e5de4 to your computer and use it in GitHub Desktop.
#Requests from outside
iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-ports 3000
iptables -t nat -A PREROUTING -p tcp --dport 443 -j REDIRECT --to-ports 3443
#Requests from localhost
iptables -t nat -I OUTPUT -p tcp -d 127.0.0.1 --dport 80 -j REDIRECT --to-ports 3000
iptables -t nat -I OUTPUT -p tcp -d 127.0.0.1 --dport 443 -j REDIRECT --to-ports 3443
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment