목차
아래 블로그를 참고하였음
1. ssh 서버 설치 및 포트 설정
sudo apt-get install openssh-server
22번포트는 잘 알려져있기때문에 바꿔주는게 좋다고함
나중에 수정해줄 예정
$ sudo vim /etc/ssh/sshd_config
# This is the sshd server system-wide configuration file. See
# sshd_config(5) for more information.
# This sshd was compiled with PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
# The strategy used for options in the default sshd_config shipped with
# OpenSSH is to specify options with their default value where
# possible, but leave them commented. Uncommented options override the
# default value.
Include /etc/ssh/sshd_config.d/*.conf
Port 22 # <- 이 부분 주석 해제하여 사용
1.1 ssh server 서비스 시작 및 확인
sudo service ssh start
sudo service ssh stop
sudo service ssh status
1.2 방화벽 실행 및 방화벽 예외 포트 등록
sudo ufw enable
sudo ufw allow [port number]
1.3 접속 확인
로컬 ip 확인 후 desktop(window) 에서 laptop(ubuntu) 접속
ip addr #전체 ip
hostname -I #시스템의 IPv4 주소를 출력해줌
참고
'IT etc > 개발 환경' 카테고리의 다른 글
데스크탑 RAM, SSD 업그레이드 (0) | 2023.11.18 |
---|---|
프로젝트 협업 툴 - 노션 (0) | 2023.06.19 |
vagrant + virtualbox (0) | 2023.06.05 |
Window Openssh Server Setting (0) | 2023.06.05 |