본문 바로가기
IT/Linux

[에러 해결]ssh_exchange_identification: read: Connection reset by peer 에러 해결

by twofootdog 2021. 3. 22.

리눅스에서 sshpass와 scp를 통해서 파일 전송 시(클라이언트 서버 -> 호스트서버로 파일 전송) 다음과 같은 에러가 발생하는 경우가 있다.

ssh_exchange_identification: read: Connection reset by peer
lost connection
Build step 'Execute shell' marked build as failure

 

 

해당 에러는 호스트 서버에 클라이언트 서버의 SSH 접근이 허용되지 않았기 때문에 발생한 문제다.

해당 문제를 해결하기 위해서는 호스트 서버에 있는 /etc/hosts.allow 파일에 클라이언트 서버의 IP를 추가해주면 된다.

sshd: [클라이언트 서버 ip]

 

 


참고

phoenixnap.com/kb/fix-connection-reset-by-peer-ssh-error

 

How to Fix The "Connection reset by peer" SSH Error

The "ssh_exchange_identification: read: Connection reset by peer" error just croped up? This article helps identify the cause and re-establish your SSH connection within moments.

phoenixnap.com

 

댓글