diff --git a/outbound/ssh.go b/outbound/ssh.go index 23187270..48d51a78 100644 --- a/outbound/ssh.go +++ b/outbound/ssh.go @@ -122,6 +122,9 @@ func (s *SSH) connect() (*ssh.Client, error) { Auth: s.authMethod, ClientVersion: s.clientVersion, HostKeyAlgorithms: s.hostKeyAlgorithms, + HostKeyCallback: func(hostname string, remote net.Addr, key ssh.PublicKey) error { + return nil + }, } clientConn, chans, reqs, err := ssh.NewClientConn(conn, s.serverAddr.Addr.String(), config) if err != nil {