반응형
ssh_exchange_identification: Connection closed by remote host
라는 에러를 만나게 되면 다음과 같이 해결하면 된다.
host.allow host.deny를 수정하면 된다.
/etc/hosts.allow 수정
#
# hosts.allow This file describes the names of the hosts which are
# allowed to use the local INET services, as decided
# by the '/usr/sbin/tcpd' server.
#
sshd: 192.168.124.12
sshd: 132.79.44.
sshd: 133.11.
위와 같이 설정하면 sshd: 192.168.124.12, 132.79.44.XXX, 133.11.XXX.XXX 대역을 허용한다는 의미가 된다.
이때 sshd를 나눠 안적고 ','를 이용하여 다 같이 적어도된다.
/etc/hosts.deny 수정
#
# hosts.deny This file describes the names of the hosts which are
# *not* allowed to use the local INET services, as decided
# by the '/usr/sbin/tcpd' server.
#
# The portmap line is redundant, but it is left to remind you that
# the new secure portmap uses hosts.deny and hosts.allow. In particular
# you should know that NFS uses portmap!
sshd: ALL
위와같이 설정하면 hosts.allow에 지정한 것 외 나머지는 모두 ssh 접근이 불가능하게 된다.
반응형
'Applied > Linux' 카테고리의 다른 글
Ubuntu에서 PC 정보 확인 방법 (0) | 2019.09.16 |
---|---|
리눅스 Crontab 이용 방법 (0) | 2019.09.05 |
Ubuntu 18.04 에서 dock, theme, icon 깔끔하게 변경 (0) | 2019.06.01 |
Ubuntu에서 git and github 사용하기 (0) | 2019.05.24 |
Install Docker and Tensorflow with Ubuntu 18.04 LTS (0) | 2019.05.19 |