Up until now, I've only managed networks with Windows users and the occasional *nix server. Soon, a few users with Macs will get added to our network. What are some "gotchas" to look out for when adding Macs to the network? Key concerns here: compatibility with Active Directory and security
8 Answers
You might want to invest in a utility that disables the creation of .DS_Store files on network volumes. Otherwise you'll find these little files popping up all over your network volumes as the Mac users use them.
I use an app called Cocktail for this.
- 418
- 3
- 9
-
3you can also do it from the terminal - there is a program called "defaults" that allows you to write out configuration keys (sorta reminiscent of the registry) "defaults write com.apple.desktopservices DSDontWriteNetworkStores true" – reconbot Apr 30 '09 at 19:22
-
Based in the information found here, it's a small price to pay for just disabling the default as wizard suggests – Adrian Anttila May 13 '09 at 05:03
If you have enough Macs, I'd suggest adding a Mac server - to create the so called "Holy Trinity". You don't even need to buy an Xserve - OSX server runs on a Mac Mini!
The Macs use AD for all the normal access/permissions and the Mac server for Mac specific task such as updates (you'll find a Mac version of WSUS called Software Update Server). You could also use the Mac server deployment options (NetInstall) for installs.
- 4,989
- 3
- 30
- 47
-
I'd always heard of it referred to as the Golden Triangle, but Holy Trinity definitely is interesting. – Chealion May 26 '09 at 16:56
If your internal domain is .local
, you will have a problem resolving names via DNS. There is an old article on Mac OS X Hints which describes a solution:
I created a
company.local
file in/etc/resolver
, and populated this file with the nameservers for thecompany.local
AD domain. This allows Mac OS X to use standard DNS to resolvecompany.local
(orsubdomain.company.local
), while still allowing Rendezvous to operate as expected.The only drawback I've seen to this approach is that the nameservers in this
company.local
file don't update via DHCP, so I have to update them manually.
Here is a more official support document from Apple which will parse your existing /etc/resolv.conf
to populate the file in /etc/resolvers
.
- 596
- 6
- 14
-
hmm. i think you can just add "local" to "Search Domains" in Network Prefs. This should force the Mac to lookup ".local" hostnames on the DNS server instead of using Bonjour – username May 08 '09 at 22:35
-
The answer to another ServerFault question claims that doesn't work. http://serverfault.com/questions/6509/workaround-for-using-local-as-a-leopard-servers-hostname/6600#6600 – Jared Oberhaus Jun 11 '09 at 23:36
Updates ... although OS X can authenticate to AD there is nothing that requires them to update their computers. Make sure you talk to them about installing the updates as they come out. There really isn't any way to force them to do it though.
- 3,094
- 18
- 17
Some versions of OSX crash a lot when connected to a windows 2003 server that has active directory enabled. They seem to have fixed it at some point but I couldn't tell you when. So keep up to date.
Depending on who gets the machine, you may or may not want to enable network logon. While you can restrict user access (using parental controls) you might just want to make the user not an administrator and leave it at that as many apps self update and spawn other apps, so restricting them can lead to trouble. I've always giving my mac users full aministrative access and never saw any of the problems crop up that I've seen my windows users get into when they have full admin access to their boxes. There's basically no spyware or virus's for the mac, it makes it a lot easier to maintain.
You should also note that every mac has "internet sharing" capability that comes with a DHCP server which can cause trouble.
Also enable imap in exchange and let them use apple's "Mail". It's worlds better then entourage. Also the address book has ldap support built in. There's nothing else special to the mac that comes to mind.
- 2,435
- 3
- 25
- 30
Here's a good trick, don't bother trying to get OSX itself to connect to your AD - it can be done but I believe it's not that easy and can take a fair bit of support. Buy something called 'AdmitMac' from http://www.thursby.com/ - it takes all the pain away and is of course supported by them directly. Oh and don't let your macs use any protocols that you're not happy with, they're very flexible but they should work around you not the other way around.
- 100,240
- 9
- 106
- 238
I know of a few end-user support issues you might encounter:
- Renaming a user's home directory can result in "missing files"
- While this has since been fixed, earlier versions of OS X had some AD integration issues at times.
- Replacing a folder with a folder of the same name can have semantical differences from what you're used to.
- It is possible to blow away a directory (under certain circumstances) by writing out a file with the same name.
- 14,326
- 1
- 48
- 87
One thing it took me a while to figure out: if you set an "inherit" ACL on a folder, it will only affect newly created files - the "gotcha" being that if a user "drags and drops" a file into the folder in question, the permissions for the folder won't change in any way (unless it's dragged from a different volume, where it will, in essence, be copied and pasted). For the files to assume the inherited ACL you set, they will have to "copy and paste", or manually set the permissions... maybe (since ACL behavior should in theory be the same) this happens on Windows too, I don't know, but it's worth repeating.
- 4,725
- 18
- 54
- 78