ssh의 기본 포트는 22이다.
OSX에서 ssh 포트를 변경하는 방법
1. /etc/services에서 변경
vi /etc/services
ssh 22/udp # SSH Remote Login Protocol
ssh 22/tcp # SSH Remote Login Protocol
22를 적당한 포트로 변경하고 저장한다.
1 ~ 65535 중의 하나로 변경가능하지만 다른 곳에서 사용중인 것은 피한다.
2. ssh데몬 재시작
아래와 같이 데몬을 내렸다가 올리는 방식으로 처리한다.
sudo launchctl unload /System/Library/LaunchDaemons/ssh.plist
sudo launchctl load -w /System/Library/LaunchDaemons/ssh.plist
변경된 포트로 접속하는 방법
ssh 192.168.0.100 -p 변경된포트 -l 사용자명
'Mac' 카테고리의 다른 글
macOs 10.15.7 catalina php7.4 upgrade 성공기 (0) | 2024.06.15 |
---|---|
OSX Mojave freetype install error (0) | 2023.03.18 |
OSX mariadb 설치 (0) | 2022.04.21 |
osx apache httpd는 어디에 설치? (0) | 2022.04.21 |
osx 원격제어설정 (0) | 2022.04.15 |