About Linux FAQ

Browse More FAQs:

Squid NTLM authentication configuration using ntlm_auth

Posted by Vivek on Wednesday January 24, 07 @9:00 pm

Q. How do I configure squid for NTLM authentication?

A. You need to use squid ntlm_auth helper tool. It o allow external access to Winbind's NTLM authentication function. ntlm_auth uses winbind to access the user and authentication data for a domain.

Make sure winbindd is working

winbindd is a daemon that provides a number of services to the Name Service Switch capability found in most modern C libraries, to arbitary applications via PAM and ntlm_auth and to Samba itself. If you are not sure about winbindd, refer to official Samba documentation for configuration.

Configure squid for NTLM authentication

Open squid configuration file - squid.conf, enter:
# vi squid.conf
Append following configuration directive:
auth_param ntlm program /usr/lib/squid/ntlm_auth --helper-protocol=squid-2.5-ntlmssp
auth_param basic program /usr/lib/squid/ntlm_auth --helper-protocol=squid-2.5-basic
auth_param basic children 5
auth_param basic realm Squid proxy-caching web server
auth_param basic credentialsttl 2 hours

To setup ntlm_auth for use by squid 2.5 with group limitation, add:
auth_param ntlm program /usr/lib/squid/ntlm_auth --helper-protocol=squid-2.5-ntlmssp --require-membership-of="WORKGROUP\Domain Users"
auth_param basic program /usr/lib/squid/ntlm_auth --helper-protocol=squid-2.5-basic --require-membership-of="WORKGROUP\Domain Users"
auth_param ntlm children 5
auth_param ntlm max_challenge_reuses 0
auth_param ntlm max_challenge_lifetime 2 minutes

OR You can also pass DOMAIN/PDC name:
auth_param ntlm program /usr/lib/squid/ntlm_auth DOMAINNAME/PDC
auth_param ntlm children 5
auth_param ntlm max_challenge_reuses 0
auth_param ntlm max_challenge_lifetime 2 minutes

Now add ACL configuration for ntlm_auth helper
acl ntlm_users proxy_auth REQUIRED
http_access allow ntlm_users
http_access deny all

Save and close the file. Restart Squid:
# /etc/init.d/squid restart
For more information:

Updated for accuracy.

Subscribe to our free e-mail newsletter or RSS feed to get all updates. You can Email this page to a friend.

Related Linux / UNIX FAQ:

Discussion on This FAQ

  1. Tapan Shah Says:

    I am getting an error while configuring this the error is

    FATAL: authparam basic program /usr/bin/ntml_auth: (2) No such file or directory
    Squid Cache (Version 2.5.STABLE6): Terminated abnormally.
    CPU Usage: 0.007 seconds = 0.002 user + 0.005 sys
    Maximum Resident Size: 0 KB
    Page faults with physical i/o: 0
    Aborted. so do reply me about this
    Thank you.

  2. nixcraft Says:

    Set correct path for /usr/lib/squid/ntml_auth file

  3. jayaram Says:

    How can l block one Active directory user to access internet through squid ( or blank password users)

  4. dark_harmonics Says:

    If you are getting error its because the author messed up his script. Check for where he substitues ntml instead of ntlm. Fix that and you are good to go!

  5. vivek Says:

    dark_harmonics,

    The FAQ has been updated. I appreciate your feedback.

  6. deepak ray Says:

    Good work
    and we have to share our experiences and idea

    to all Linux worker

  7. samerk Says:

    thank you guys for this documentation it’s quite helpful when configuring Squid with NTLM.
    However i have a couple of questions regarding clients that are not joined to the Active directory DC:

    1- a NON-joined client using IE will have to log on using realm/username and passwd. Is there a way to make him authenticate with only his username and passwd ?
    NB:It works fine with other browsers such as Firefox.

    2- If you use IE with this NTLM auth (on an NON-joined pc) and select the ’save password’ checkbox the password gets stored in the registry as if it was for a network location. To delete the record you will have to run
    “rundll32.exe keymgr.dll, KRShowKeyMgr”
    This is causing real problems to users. Have you encountered this? and were you able to figure a way out?

    Thanks again,
    Samerk

Leave a Reply

We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Please do not use the comment form to ask for help / question. Ask your question on the excellent Linux tech support forum. Thank you very much for stopping by our site!

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

*
To prove you're a person (not a spam script), type the security word shown in the picture. Click on the picture to hear an audio file of the word.
Click to hear an audio file of the anti-spam word

Tags: , , , , , , , ~ Last updated on: September 12, 2007

Copyright © 2006-2008 nixCraft. All rights reserved - TOS/Disclaimer - Privacy policy - Sitemap - Powered by Open source software.