Created
February 9, 2021 11:55
-
-
Save tinohager/8fd995c3c4e40ee111a87fec93e2cc0f to your computer and use it in GitHub Desktop.
Use Windows internal SSH
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Change the Windows Service config for "OpenSSH Authentication Agent" | |
sc config "ssh-agent" start=delayed-auto | |
sc start "ssh-agent" | |
# Create a private/public key pair | |
ssh-keygen -t ecdsa -b 521 -f myKey | |
ssh-add myKey | |
ssh [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment