From d35719202550781a3112876fbae0c7f6271d0a23 Mon Sep 17 00:00:00 2001 From: Pankaj Garg Date: Tue, 3 Dec 2019 15:53:12 -0800 Subject: [PATCH] Fix ssh connection error due to too many authentication failures (#7229) --- net/common.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/net/common.sh b/net/common.sh index 7f64cf9c0..9df146e9a 100644 --- a/net/common.sh +++ b/net/common.sh @@ -48,6 +48,7 @@ buildSshOptions() { -o "StrictHostKeyChecking=no" -o "UserKnownHostsFile=/dev/null" -o "User=solana" + -o "IdentitiesOnly=yes" -o "IdentityFile=$sshPrivateKey" -o "LogLevel=ERROR" )