When authenticating ssh using this documentation; the following error is returned.
I have tried everything but unable to proceed any further.
ssh_dispatch_run_fatal: Connection to 104.192.142.24 port 22: Operation timed out
Hi Amandeep,
Welcome to the community!
The error message:
ssh_dispatch_run_fatal: Connection to 104.192.142.24 port 22: Operation timed out
suggests that the SSH connection is being blocked or unable to reach Bitbucket Cloud Here are some troubleshooting steps you can try:
1. Check Network Restrictions:
telnet bitbucket.org 22
nc -zv bitbucket.org 22
2. Try SSH over HTTPS (Port 443):
3. Verify SSH Key Setup
ssh -T git@bitbucket.org
4. Check Local SSH Configuration:
ssh -vvv git@bitbucket.org
5. Restart SSH Agent:
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/<YOUR_PRIVATE_KEY_NAME>
Hopefully theses step help you get to the bottom of the issue.
Cheers,
- Phil
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.