Tunneling traffic through ssh
2024-12-23 - 1 minute read
This lets you tunnel port 80 from your machine, to port 80 on another machine, using some ssh server as jump node.
bash
ssh -L :: username@
Pretty neat!
Example with values:
bash
ssh -L 80:blog.zacke.dev:80 zacke@ssh.example.org