일상 메모장

Ubuntu SSH 서버 구축 본문

Linux & Windows

Ubuntu SSH 서버 구축

핸드오버 2020. 1. 21. 18:00

안녕하세요.

 

오늘은 Ubuntu에 SSH 서버 구축하는 방법에 대해 포스팅하겠습니다.

Ubuntu Desktop 버전을 설치하게 되면 처음에 ssh server가 설치되어있지 않습니다.

'dpkg -l | grep openssh' 명령어로 어떤 openssh 패키지가 설치되어 있는지 아래와 같이 확인합니다.

dpkg

openssh server를 설치해야 하는데 apt-get 명령어를 사용하여 openssh server를 설치합니다.

openssh-server

이제 아래와 같이 systemctl start 명령어를 사용해서 openssh server를 실행하고,

현재 잘 동작하고 있는지 systemctl status로 확인하고,

그리고 재부팅 시 자동 실행되도록 systemctl enable 명령어를 사용합니다.

 

systemctl

윈도우에서 ssh를 접속하기 전에 먼저 'ip addr' 명령어 또는 'ifconfig' 명령어로

Ubuntu 의 IP address 를 외워둡니다.

ip addr, ifconfig

이제 윈도우에서 Ubuntu 에 ssh 로 접속해 보도록 하겠습니다.

접속하기 전에 putty 라는 프로그램을 아래 링크에서 다운받아서 설치합니다.

https://www.putty.org/

 

Download PuTTY - a free SSH and telnet client for Windows

Is Bitvise affiliated with PuTTY? Bitvise is not affiliated with PuTTY. We develop our SSH Server for Windows, which is compatible with PuTTY. Many PuTTY users are therefore our users as well. From time to time, they need to find the PuTTY download link. W

www.putty.org

Putty 를 실행하고 좀 전에 외워두었던 Ubuntu 의 IP 주소를 입력한 후,

연결을 누르고 아이디, 패스워드를(Ubuntu 계정) 입력하면 접속됩니다.

putty ssh
ssh 접속완료

위 그림은 접속이 완료된 모습니다.

 

다른 Linux에서 명령어로 ubuntu ssh 서버에 접속하려면 아래 명령어를 사용하시면 됩니다.

ssh test@192.168.1.61

읽어주셔서 감사합니다.