Last active
August 29, 2015 14:07
-
-
Save bcelenza/3ee8c6ddf7c0c085a544 to your computer and use it in GitHub Desktop.
Stop checking host keys for localhost
This file contains hidden or 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
# ~/.ssh/config | |
# Disable checking of host key (great when you use lots of VMs) | |
Host localhost | |
StrictHostKeyChecking no | |
UserKnownHostsFile /dev/null | |
User foo | |
LogLevel QUIET |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment