A resposta é semelhante à que você vinculou.
No arquivo /System/Library/LaunchDaemons/ssh.plist
, você precisa editar o item Listeners
. O endereço IP pode ser especificado com a chave SockNodeName
. Quando terminar, a parte Listeners
do arquivo deve ser algo assim:
<key>Listeners</key>
<dict>
<key>SockNodeName</key>
<string>10.10.1.70</string> ####This is the IP address you want
<key>SockServiceName</key>
<string>ssh</string>
<key>Bonjour</key>
<array>
<string>ssh</string>
<string>sftp-ssh</string>
</array>
</dict>
Quando terminar, recarregue a configuração ao fazer
sudo launchctl unload /System/Library/LaunchDaemons/ssh.plist
sudo launchctl load /System/Library/LaunchDaemons/ssh.plist