Server(Windows&Linux)2014. 8. 7. 09:12

ssh 설치가 안되었을 때는 ....

 

~]# yum install openssh-server openssh-clients openssh-askpass

 

명령을 실행하고 y 를 눌러주면 끝

 

sshd 서비스 포트변경 ( 22 -> 2222 ) 및 root 로그인 막기

 

~]# vi /etc/sshd_config

--- 생략 ---

Port 2222

--- 생략 ---

PermitRootLogin no

--- 생략 ---

:wq (저장 후 나감)

----------------------------------------------------
#PermitRootLogin yes
를 찾아 변경해 줘야 한다.
----------------------------------------------------

 

구동

 

~]# /etc/init.d/sshd start

 

구동 확인

 

~]# ps -ef | grep sshd
root     00000       1  0 09:05 ?        00:00:00 /usr/sbin/sshd
root     00000 16871  0 09:15 pts/0    00:00:00 grep sshd

ssh 접속 확인

 

~]# ssh -l root localhost -p 2222

 

접속이 된다면 설정 오류 (root 로그인이 안되어야 한다)

 

~]# ssh -l tester localhost -p 2222

 

접속이 된다면 설정 완료.

Posted by 비니미니파파