반응형
Ubuntu 20.04 - SSH 설치와 접속 방법
Ubuntu 20.04 - SSH 설치와 접속 방법 (codechacha.com)
서버
1. OpenSSH 서버 설치
$ sudo apt update
$ sudo apt install openssh-server
2. 상태 확인
sudo systemctl status ssh
3. 실행하기
$ sudo systemctl enable ssh
$ sudo systemctl start ssh
4. 방화벽 허용과 상태 확인
$ sudo ufw allow ssh
$ sudo ufw status
Status: inactive
5. SSH 비활성화 / 중지
중지
$ sudo systemctl stop ssh
부팅 시 비활성 설정
$ sudo systemctl disable ssh
부팅 시 자동 실행 설정
$ sudo systemctl stop ssh
$ sudo systemctl enable ssh
클라이언트
1. 설치
$ sudo apt-get install openssh-client
2. 접속 ( ssh 계정@접속 도메인(또는 IP) )
$ ssh username@ip_address
$ ssh ubuntu@192.168.10.25
The authenticity of host '192.168.0.14 (192.168.0.14)' can\'t be established.
ECDSA key fingerprint is SHA256:TmCvd0W1ETUS5rpK1fnDh7gEiS6QIVUfKXC3kh6ucMg.
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
암호 요구하는 곳에서 암호 입력...
3. 접속 성공 화면
Welcome to Ubuntu 20.04.1 LTS (GNU/Linux 5.4.0-58-generic x86_64)
반응형
'Linux, Mac' 카테고리의 다른 글
DIY 블록체인 개발도구 Substrate 설치/실행 + 속성 리눅스 (0) | 2023.01.01 |
---|---|
맥북, 텍스트(.txt) 파일 유니코드(utf-8) 인코딩 오류 해결 (0) | 2022.12.07 |
우분투 ifconfig 설치 (0) | 2022.09.28 |
ssh config 설정 방법 (0) | 2022.09.28 |
nohup, 백그라운드 실행, PID 확인, 프로세스 제거 (0) | 2022.07.31 |