반응형
아래와 같이 ssh 를 설치한다.
# apt-get install ssh
SSH는 기본 22포트 사용한다.
하지만 SSH Bruteforce 등 해킹에 취약하므로 포트를 변경한다.
SSH는 기본 22포트를 사용하는데 이대로 사용 해버리면 SSH Bruteforce 즉 SSH 무작위 공격이 와서 해킹을 당할수도 있습니다.
그러므로 22포트를 다른 포트로 변경하여 사용하면 안전하지요...
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
이후 ssh를 재시작 /etc/init.d/ssh restart
반응형
'ubuntu 12.04' 카테고리의 다른 글
ubuntu 12.04 ftp 설치 (0) | 2014.01.03 |
---|---|
ubuntu 12.04 GUI 환경에서 root 계정 로그인 방법 (0) | 2013.12.30 |
ubuntu 12.04 server 콘솔 부팅 설정 (0) | 2013.12.30 |
ubuntu 12.04 server 설치 후 gui 설치하기 (0) | 2013.12.30 |
ubuntu 12.04 server 업데이트 서버 다음으로 변경하기 (0) | 2013.12.30 |