Log IP of failed ssh connection (#5766)

Fix #5765 by log the IP address of a connecting remote machine in case of a SSH connection error for the built-in ssh server.

Signed-off-by: Robert Sprunk <github@sprunk.me>
release/v1.8
Robert Sprunk 5 years ago committed by zeripath
parent af45648e26
commit 65b6ebf243

@ -135,9 +135,9 @@ func listen(config *ssh.ServerConfig, host string, port int) {
sConn, chans, reqs, err := ssh.NewServerConn(conn, config)
if err != nil {
if err == io.EOF {
log.Warn("SSH: Handshaking was terminated: %v", err)
log.Warn("SSH: Handshaking with %s was terminated: %v", conn.RemoteAddr(), err)
} else {
log.Error(3, "SSH: Error on handshaking: %v", err)
log.Error(3, "SSH: Error on handshaking with %s: %v", conn.RemoteAddr(), err)
}
return
}

Loading…
Cancel
Save