openssh8.1.tar.gz 필요
rpm -qa | grep openssh
rpm -e openssh-* --nodeps
yum install -y gcc pam-devel zlib-devel openssl-devel
./configure -prefix=/usr/local/openssh -with-md5-passwords
make
make install
cp ./contrib/sshd.pam.generic /etc/pamd.sshd
/usr/local/openssh/sbin/sshd -> ssh 실행 명령어
yum, rpm 설치가 아니라 컴파일 기반이라 systemctl 사용 불가로
/etc/rc.local에 등록
chmod u+x /etc/rc.d/rc.local
systemctl start rc-local
vi /etc/rc.d/rc.local 에다가
/usr/local/openssh/sbin/sshd 기입
vi /etc/ssh/sshd_config
PermitRootLogin no -> yes
kill -HUP sshd_pid
reboot
설정은
/usr/local/openssh/etc/sshd_config
주석처리 풀어야함
'Security' 카테고리의 다른 글
PAM 모듈 정리 (0) | 2021.01.12 |
---|---|
Linux 로그인 시 Login Incorrect가 반복되는 현상 (0) | 2020.12.29 |
pam.d 모듈 설명 (0) | 2020.12.17 |
보안취약점 점검 가이드 및 조치 방법 (0) | 2020.11.18 |
pam_tally2.so 모듈 설정 관련 주의사항 (0) | 2020.11.16 |