$ dpkg -l
너무 많은 목록이 나오기 때문에 ssh 관련 목록만 확인해 보자.
$ dpkg -l |grep ssh
ii openssh-client 1:5.8p1-7ubuntu1 secure shell (SSH) client, for secure access to remote machines
$ sudo apt-get install openssh-server
패키지가 다운로드 되어 자동으로 설치되고 데몬이 동작한다.
>>> 설치 과정에 오류가 있다면 여길 참고 <<<
데몬이 잘 동작하는지 확인하자...ssh 기본 포트는 22이다.
Active Internet connections (only servers)
-----------------------------------------------------------------------------------------------------------
## ssh 서버 재시작
$ sudo /etc/init.d/ssh restart
## ssh포트변경
아래 파일을 열어서 포트를 변경하면 된다.
$ 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