Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save indilo53/536f9c898f680a14791000cffecd1f45 to your computer and use it in GitHub Desktop.
Save indilo53/536f9c898f680a14791000cffecd1f45 to your computer and use it in GitHub Desktop.
`socat` as an SSH reverse proxy (or anything TCP-based)
local$ socat TCP-LISTEN:2222,bind=127.0.0.1,reuseaddr,fork TCP-LISTEN:2223,reuseaddr
local$ ssh -p 2222 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no localhost
remote$ socat TCP:10.0.2.2:2223 TCP:127.0.0.1:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment