macOS开启远程连接SSH
🕙2023-05-08
开启远程连接SSH
开启远程登录功能
sudo systemsetup -setremotelogin on
启动SSH服务
sudo launchctl load -w /System/Library/LaunchDaemons/ssh.plist
关闭防火墙
关闭远程连接SSH
关闭SSH服务
sudo launchctl unload -w /System/Library/LaunchDaemons/ssh.plist
关闭远程登录功能
sudo systemsetup -setremotelogin off