보안/클라우드 AWS

ubuntu linux 공부하기

Eprld 2024. 10. 7. 09:41

root 계정 활성화

ssh server 설치

apt install openssh-server

 

ssh 데몬 재가동

systemctl restart ssh

 

ssh 포트 방화벽 허용

utf allow 22/tcp

 

 

SSH

원격 서버에 안전하게 연결할 수 있도록 해주는 프로토콜, 암호화 된 통신을 제공함

 


PUTTY 다운로드

putty : 대표적인 원격접속 프로그램

 

https://www.putty.org/

 

Download PuTTY - a free SSH and telnet client for Windows

Is Bitvise affiliated with PuTTY? Bitvise is not affiliated with PuTTY. We develop our SSH Server for Windows, which is compatible with PuTTY. Many PuTTY users are therefore our users as well. From time to time, they need to find the PuTTY download link. W

www.putty.org

 

 

 64-bit x86 내 운영체제에 맞춰서 다운로드 하기

설치완료

 


ubuntu에서 putty설치하기

apt-get install putty

putty 실행

 

폰트 패키지가 설치되지 않아서 실행이 안 될 경우 아래 명령어 입력하기 

sudo apt update
sudo apt install gtk2-engines-pixbuf
sudo apt install x11-xserver-utils

 

 

'보안 > 클라우드 AWS' 카테고리의 다른 글

aws 보안  (0) 2024.10.10
aws sns  (0) 2024.10.08
AWS VPC  (0) 2024.10.02
AWS EC2 ubuntu ssh 접속하기  (0) 2024.10.02
AWS EC2 서버 세팅  (0) 2024.10.02