How do I block login access to SSH?
Você deve executar o seguinte comando na linha de comando.
sudo systemsetup -setremotelogin off
Vale a pena ressaltar que o comando solicitará a confirmação de que você realmente deseja desativar esse recurso.
When you successfully execute the command, you will be asked: “Do you really want to turn remote login off? If you do, you will lose this connection and can only turn it back on locally at the server (yes/no)?” so type “yes” to confirm, which will disable SSH and also disconnect any active SSH connections to the Mac in question.
Você pode evitar esse prompt usando o seguinte comando.
sudo systemsetup -f -setremotelogin off