ssh connection strict check disabled

This commit is contained in:
pokamest 2021-03-09 18:45:41 +03:00
parent 3e4a9f54a7
commit 407ea77a9e

View file

@ -267,6 +267,7 @@ SshConnectionParameters ServerController::sshParams(const ServerCredentials &cre
sshParams.timeout = 10;
sshParams.port = credentials.port;
sshParams.hostKeyCheckingMode = QSsh::SshHostKeyCheckingMode::SshHostKeyCheckingNone;
sshParams.options = SshIgnoreDefaultProxy;
return sshParams;
}