Skip to content

Instantly share code, notes, and snippets.

@tohuuuuu
Created May 17, 2020 07:16
Show Gist options
  • Save tohuuuuu/4546cef5b1723f2d324f38df0abb87b1 to your computer and use it in GitHub Desktop.
Save tohuuuuu/4546cef5b1723f2d324f38df0abb87b1 to your computer and use it in GitHub Desktop.
Powershell command to create a SSH tunnel
start-process -NoNewWindow powershell `
{ssh -f <user>@<host> `
-L 10443:127.0.0.1:443 `
-N }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment