2016년 10월 20일 목요일

[Linux] SSH 설치와 실행

설치, 실행

$ sudo apt-get install ssh
$ sudo /etc/init.d/ssh start

시작프로그램 등록

$ sudo vim /etc/rc.local

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
# start ssh server
/etc/init.d/ssh start
exit 0


포트 변경하기

변경하지 않아도 된다. SSH의 기본 포트는 22번이고 변경할 필요가 있다면
$ sudo vim /etc/ssh/sshd_config

port 22 라고 되어있는 것을 원하는 포트로 바꿔준다. 예) port 2200

댓글 없음:

댓글 쓰기