우선 ssh 폴더로 찻아 들어 간다.
cd /etc/ssh
vim sshd_config
Port 22 #접속 포트 지정
#AddressFamily any
#ListenAddress 0.0.0.0
#ListenAddress ::
#HostKey /etc/ssh/ssh_host_rsa_key
#HostKey /etc/ssh/ssh_host_ecdsa_key
#HostKey /etc/ssh/ssh_host_ed25519_key
# Ciphers and keying
#RekeyLimit default none
# Logging
#SyslogFacility AUTH
#LogLevel INFO
# Authentication:
#LoginGraceTime 2m
PermitRootLogin yes #이부분 yes로 변경
#StrictModes yes
#MaxAuthTries 6
#MaxSessions 10
#PubkeyAuthentication yes
저장 후
service ssh restart
그러면 끝!
'리눅스' 카테고리의 다른 글
centos 7 root 패스워드 변경 (0) | 2018.09.21 |
---|---|
vim 설치 (0) | 2018.09.21 |
여러 파일 문자열 치환 스크립트 (0) | 2018.09.20 |
rsync 에러 해결 (0) | 2018.09.20 |
postfix main.cf 설정 2 (0) | 2017.12.15 |