1. I’d make a seperate package just for file vault so that way if you decide to not do it in the future, you can just remove it.
2. Are you using the following to enable SSH?
[code]/usr/libexec/PlistBuddy -c “Delete Disabled” $3/System/Library/LaunchDaemons/ssh.plist[/code]
If so, any local admin should be able to connect untill you’ve edited the sshd_config file. I edit mine as follows on the firstboot:
[code]echo KerberosAuthentication yes >> /etc/sshd_config
echo KerberosOrLocalPasswd yes >> /etc/sshd_config
echo AllowGroups DOMAIN\\admingroup admin >> /etc/sshd_config
[/code]
This makes it so you can log in to SSH using Kerberos (AD in this case) and only DOMAIN\admingroup or admin (this is a local group) can log in using ssh.
Hope that helps!
Nate
Comments are closed