mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 12:15:43 +01:00
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>
This commit is contained in:
parent
af45648e26
commit
65b6ebf243
1 changed files with 2 additions and 2 deletions
|
@ -135,9 +135,9 @@ func listen(config *ssh.ServerConfig, host string, port int) {
|
||||||
sConn, chans, reqs, err := ssh.NewServerConn(conn, config)
|
sConn, chans, reqs, err := ssh.NewServerConn(conn, config)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if err == io.EOF {
|
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 {
|
} else {
|
||||||
log.Error(3, "SSH: Error on handshaking: %v", err)
|
log.Error(3, "SSH: Error on handshaking with %s: %v", conn.RemoteAddr(), err)
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue