proxy server 셋팅을 하고 있는데,
22번 포트에 대해서도 다른 서버로 전달을 해주어야 하는 경우가 생겼다.
어!? 그러면, proxy server에 ssh 접속은 어떻게 하지?!
proxy server의 ssh 포트를 변경해야할 필요가 생긴 것이다!
그래서, 122번 포트로 변경을 해보고자 한다.
1. 접속 안되는 상황 확인
$ ssh chani@192.168.100.105 -p 122
ssh_exchange_identification: Connection closed by remote host
2. /etc/ssh/sshd_config 수정
$ ssh chani@192.168.100.105 -p 22
$ sudo nano /etc/ssh/sshd_config
Port 22
Port 122
3. /etc/services 수정
- 필수 사항은 아니지만, 이것도 같이 변경해주는 것이 좋다.
$ sudo nano /etc/services
ssh 122/tcp # SSH Remote Login Protocol (by whatwant)
4. 설정 반영 및 확인
$ sudo service ssh restart
$ sudo netstat -anlp | grep sshd
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1668/sshd
tcp 0 0 0.0.0.0:122 0.0.0.0:* LISTEN 1668/sshd
5. 접속
$ ssh chani@192.168.100.105 -p 122
Success !!
파이팅!!
'OS > Ubuntu' 카테고리의 다른 글
LinuxBrew(HomeBrew) 설치하기 (Ubuntu 18.04) (0) | 2020.12.06 |
---|---|
password 관리 (0) | 2020.01.05 |
Ubuntu Server 18.04.2 LTS 64bit (Bionic Beaver) - Installation (0) | 2019.07.14 |
Linux Mint (Global #1 리눅스 배포판) (0) | 2018.02.03 |
Xpad - 포스트잇 for 리눅스 (Ubuntu 14.04 64bit) (0) | 2018.01.24 |