Quote:
it's included in the BSD sub system pckg
it's called "launchctl"
|
Yeah, got it.
Stop sshd:
Code:
# launchctl remove com.openssh.sshd
It's very polite. Won't dump you, but when you disconnect, it stops sshd.
Start sshd: (From the terminal)
Code:
# launchctl load /Library/LaunchDaemons/com.openssh.sshd.plist
sshd will also restart on boot, so if you crash, or for some reason poweroff, and back on, you'll be open to ssh again.
Thanks ! I should have at least known what to look for. Too much penguin p()()p in my head.