gss(5) | File Formats Manual | gss(5) |
gss
— how to
configure gss framework
The gss
GSS.frameworks have several
configuration domains, all can configured with
defaults(1).
Configuration can be stored both in the user's configuration ( ~/Library/Preferences) and system ( /Library/Preferences ).
Use gsstool(1) to list the supported options and their settings:
Common options are:
defaults write com.apple.GSS.NTLM AllowedHosts -array host.local '*.my.domain'
If you want to disable NTLM support completely in both the acceptor (server) and initiator (client), you need disable both NTLMv1 and NTLMv2, and set their values to boolean false or 0.
defaults write com.apple.GSS.NTLM NTLMv1 -bool false defaults write com.apple.GSS.NTLM NTLMv2 -bool false
You can use the defaults write command to change the options, for simple boolean options, use this:
You can also turn on debugging (output in syslog) using:
September 1, 2010 | HEIMDAL |