Fix incorrect port forwarding

This commit is contained in:
Leni Ven 2022-12-07 22:26:28 -08:00
parent 55d73a764a
commit 48ddd656f3
1 changed files with 1 additions and 1 deletions

View File

@ -3,5 +3,5 @@
function ssh-forward function ssh-forward
set HOST $argv[1] set HOST $argv[1]
set PORT $argv[2] set PORT $argv[2]
autossh -N -M 0 -L $PORT:$HOST:$PORT autossh -N -M 0 -L $PORT:localhost:$PORT $HOST
end end