Skip to content

Instantly share code, notes, and snippets.

@tylerhall
Created August 26, 2020 15:27
Show Gist options
  • Save tylerhall/6314de11a7649e2944260d0013601a46 to your computer and use it in GitHub Desktop.
Save tylerhall/6314de11a7649e2944260d0013601a46 to your computer and use it in GitHub Desktop.
Fix Catalina SSH Bug
# 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