본문 바로가기
Development Solutions/Linux

[Linux] Change and add ssh port number (ssh 포트 번호 바꾸기, 추가하기)

by studio ODOC 2022. 9. 3.
반응형

[Linux]

Change and add ssh port number

(ssh 포트 번호 바꾸기, 추가하기)

 

 

리눅스의 OpenSSH 설정 파일에서 포트 번호를 수정 또는 추가하면 된다.

(You can edit or add the port number in the Linux OpenSSH configuration file.)

 sudo vim /etc/ssh/sshd_config
#Port 22
-> Port 22
-> Port 2022
service sshd restart

또는

/etc/rc.d/init.d/sshd restart

 

반응형