diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-02-25 10:17:06 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-02-25 10:17:06 +0300 |
commit | ce4a75929e756c54a92fe2135b6bf6e5160eabc3 (patch) | |
tree | 53e749f9157a5fa975c0cdd4f1c54152ec7e357f /_posts/2020-02-24-ssh-tunnel-windows.md | |
parent | add ssh-tunnel-windows.md (diff) | |
download | jekyll-theme-ce4a75929e756c54a92fe2135b6bf6e5160eabc3.tar.gz jekyll-theme-ce4a75929e756c54a92fe2135b6bf6e5160eabc3.zip |
ssh-tunnel: fix a typo
Diffstat (limited to '')
-rw-r--r-- | _posts/2020-02-24-ssh-tunnel-windows.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_posts/2020-02-24-ssh-tunnel-windows.md b/_posts/2020-02-24-ssh-tunnel-windows.md index 8b947e4..f8b1864 100644 --- a/_posts/2020-02-24-ssh-tunnel-windows.md +++ b/_posts/2020-02-24-ssh-tunnel-windows.md @@ -20,7 +20,7 @@ requests to the SSH server. Say, you have access to SSH server `gateway` on port 22, and you want to gain access to HTTPS server `dest` on port 443, which is only accessible from the network both it and the SSH server belong to. -You can the run something like +You can then run something like ``` ssh -L 4433:dest:443 gateway -p 22 |