Created
August 26, 2020 15:27
-
-
Save tylerhall/6314de11a7649e2944260d0013601a46 to your computer and use it in GitHub Desktop.
Fix Catalina SSH Bug
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
# Solves https://tyler.io/so-uh-i-think-catalina-10154-broke-ssh/ | |
If you add a timeout to your SSH command, it will work. | |
ssh -p 6789 -oConnectTimeout=10 domain.com | |
Or, you can automatically apply it to all SSH connections by adding | |
Host * | |
ConnectTimeout 10 | |
to your ~/.ssh/config file. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment