Enabling NTLM Authentication (Single Sign-On) in Firefox
This HowTo will describe how to enable NTLM authentication (Single Sign-On) in Firefox.
How many of you have noticed that when you are using Internet Explorer and you browse to your companies intranet page that it will automatically authenticate you but when you use Firefox you will be prompted with a login box?
I recently, in searching for solutions to allow NTLM authentication with Apache, stumbled across how to set a preference in Firefox that will pass the NTLM authentication information to a web server. The preference is network.automatic-ntlm-auth.trusted-uris.
So how do you do it?
1) Open Firefox and type “about:config” in the address bar. (without the quotes of course)
2) In the ‘Filter’ field type the following “network.automatic-ntlm-auth.trusted-uris”
3) Double click the name of the preference that we just searched for
4) Enter the URLs of the sites you wish to pass NTLM auth info to in the form of:
http://intranet.company.com,http://email.company.lan
5) Notice that you can use a comma separated list in this field.
6) Updated: I have created VBScript that can be used to insert this information into a users prefs.js file by using group policy or standalone if for some reason you want to use it for that.
The script is available to be downloaded here.
After downloading the script you will want to extract it from the ZIP archive and then modify the line starting with strSiteList.
NOTE: This script will not perform its function if the user has Firefox open at the time the script is executed. Running the script through group policy will work without problem unless for some reason your group policy launches Firefox before the execution of this script.
You can read through the rest of the script for additional information. If you have questions, comments or concerns please let me know.
Possibly Related Posts:
- Separating Pings from Comments in WordPress 2.7
- XCache Admin Cannot Login When Using Apache and mod_fcgid
- Checkgmail Uses 100% CPU at Startup
- Getting Lighttpd, FastCGI and PHP working on CentOS 4
- CheckGmail Problem With Google Hosted Domains
Comments
Comment from Sol
Time June 25, 2008 at 3:18 am
network.automatic-ntlm-auth.trusted-uris seems to be removed in firefox 3…
Comment from Matt
Time June 30, 2008 at 11:02 am
@Sol: I just checked and that configuration is indeed still in Firefox 3.
Comment from Dan
Time August 8, 2008 at 10:54 am
@Sol: you probably mistyped something. Just use “ntlm” as your filter, there will only be three or four results, and the trusted-urls one is definitely in there in FF3.
Comment from Naƫl
Time September 18, 2008 at 9:50 am
Thanks. Works on FF 3
Comment from Jesse
Time September 26, 2008 at 11:02 am
This is amazing, thanks so much. I already deployed it to my whole company
Comment from JungHwan Lee
Time November 4, 2008 at 7:39 pm
This is great help to use without authentication at work.
It bumped up before. now I am happy with this solution.
Thanks!
Trackbacks/Pingbacks
- Enabling NTLM Authentication (Single Sign-On) in Firefox | Sivel.net
- Podcast #5 - stackoverflow
- Mind Gravy » Blog Archive » links for 2008-05-23
Comment from frances
Time June 27, 2007 at 7:04 pm
Good clear instructions.