Browse Source

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>
for-closed-social
Robert Sprunk 5 years ago
committed by zeripath
parent
commit
65b6ebf243
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      modules/ssh/ssh.go

+ 2
- 2
modules/ssh/ssh.go View File

@ -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