-
SSH 설치Full-Stack/Back-end 2015. 4. 13. 10:22
우분투에서 외부에서 SSH로 접속을 하려고 하면 SSH를 설치해야합니다.
우선 내 우분투에 SSH가 설치 되었는지 부터 확인을 해봐야 합니다.
터미널에서 dpkg -l |grep ssh 를 입력해서 이렇게 나오면 설치가 되어 있지 않은 겁니다.
ii openssh-client 1:6.6p1-7ubuntu1
ii ssh-import-id 3.21-0ubuntu1
클라이어트 즉 다른 서버에는 접근을 할수 있지만 내 ubuntu로는 접근을 할수 없는 것이지요설치 명령어는 $ sudo apt-get install openssh-server설치가 완료가 되면 $ netstat -ntl 명령어를 통하여 잘 작동하는 지 확인을 해보면 됩니다.
일단 SSH 기본 포트는 22 번입니다.
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address Statetcp 0 0 0.0.0.0:22 0.0.0.0:* LISTENtcp6 0 0 :::22 :::* LISTEN그리고 $ sudo vi /etc/ssh/sshd_config 를 통하여 포트를 설정의 주석을 풀어줘야 합니다.
포트를 변경하실 분은 변경 하시면 됩니다.
# Package generated configuration file
# See the sshd_config(5) manpage for details
# What ports, IPs and protocols we listen for
Port 22
# Use these options to restrict which interfaces/protocols sshd will bind to
#ListenAddress ::
#ListenAddress 0.0.0.0
댓글