Forum Discussion
Kerberos on macOS
Testing out Edge v79.0.309.56 on macOS Catalina 10.15.2. When i hit a page that uses kerberos like SharePoint i get prompted for credentials. This works fine in Safari. Am i missing a policy setting to get this working silently?
Thanks
- th3dzdjCopper Contributor
jason411 I figured it out.
defaults write com.microsoft.Edge RestoreOnStartup -int 1
defaults write com.microsoft.Edge AuthServerAllowlist *.domain.name
(*.domain.name = your domain name. so, like if you were contoso it would be *.contoso.com)
Run those in Terminal, Kerberos auth will automagically start working.
- Johannes GoerlichBrass Contributor
had the same issue as jason411. For me it started to work after adjusting AuthServerAllowlist and executing kinit at the command-line. Not sure if there was an issue with Kerberos SSO.
- MattFranzCopper ContributorThis worked for me.
Catalina 10.15.7
Edge Version 90.0.818.39 (Official build) (64-bit)
- th3dzdjCopper Contributor
I'd also like to figure this out, as I am able to do Kerberos tickets with Chrome using the following commands:
defaults write com.google.Chrome AuthServerWhitelist “*.domain.example”
defaults write com.google.Chrome AuthNegotiateDelegateWhitelist “*.domain.example”
What is the equivalent for Edge on MacOS?