💾 Archived View for sdf.org › blippy › iptables.gmi captured on 2023-09-08 at 16:30:22. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2023-01-29)
-=-=-=-=-=-=-
Created 2022-06-12
Redirect port 300 to port 3000.:
sudo iptables -t nat -I PREROUTING --src 0/0 --dst 127.0.0.1 -p tcp --dport 300 -j REDIRECT --to-ports 3000 sudo iptables -t nat -I OUTPUT --src 0/0 --dst 127.0.0.1 -p tcp --dport 300 -j REDIRECT --to-ports 3000
It might have some snags, though.
The above won't survive reboot.