From 67125cb5fea4aa4b70592e6cbf0ad91511fe00c1 Mon Sep 17 00:00:00 2001 From: Felix Pankratz Date: Mon, 3 Feb 2025 14:06:13 +0100 Subject: [PATCH] add ssh cheat --- cheats/ssh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cheats/ssh b/cheats/ssh index fe24cc8..5bef3fc 100644 --- a/cheats/ssh +++ b/cheats/ssh @@ -3,3 +3,6 @@ # forward remote port 8080 to localhost:1337 `ssh -L 1337:127.0.01:8080 user@host` + +# forward local port 8080 to remote:1337 +`ssh -R 1337:localhost:8080 user@host`