본문 바로가기
SW 프로그래밍/우분투

openssh 설치 및 설정

by N2info 2021. 10. 2.
sudo apt update -y

sudo apt-get install openssh-server

설치후 실행

systemctl start ssh   또는   service ssh start

#안되면

systemctl start openssh-server   또는   service openssh-server start

실행여부 확인

netstat -tnlp

 

Root 계정으로 SSH 접속을 할 수 있도록 설정

vi /etc/ssh/sshd_config

-----------------------
#PermitRootLogin prohibit-password
#PasswordAuthentication yes

위의 항목들을 아래와 같이 수정합니다.

PermitRootLogin yes                              << 주석해제 및 옵션 값 yes
PasswordAuthentication yes                     << 주석해제

 

ssh server를 재시작

systemctl restart ssh   또는  systemctl restart openssh-server

 

# PuTTY를 사용한 SSH 접속

 

# Window Command를 사용한 SSH 접속

ssh root@192.168.83.128