Software: Apache/2.0.54 (Fedora). PHP/5.0.4 uname -a: Linux mina-info.me 2.6.17-1.2142_FC4smp #1 SMP Tue Jul 11 22:57:02 EDT 2006 i686 uid=48(apache) gid=48(apache) groups=48(apache) Safe-mode: OFF (not secure) /usr/share/doc/squid-2.5.STABLE13/ drwxr-xr-x |
Viewing file: Select action/file-type: 23. Authentication23.1 How does Proxy Authentication work in Squid?Note: The information here is current for version 2.4. Users will be authenticated if squid is configured to use proxy_auth ACLs (see next question). Browsers send the user's authentication credentials in the Authorization request header. If Squid gets a request and the http_access rule list gets to a proxy_auth ACL, Squid looks for the Authorization header. If the header is present, Squid decodes it and extracts a username and password. If the header is missing, Squid returns an HTTP reply with status 407 (Proxy Authentication Required). The user agent (browser) receives the 407 reply and then prompts the user to enter a name and password. The name and password are encoded, and sent in the Authorization header for subsequent requests to the proxy. NOTE: The name and password are encoded using ``base64'' (See section 11.1 of RFC 2616). However, base64 is a binary-to-text encoding only, it does NOT encrypt the information it encodes. This means that the username and password are essentially ``cleartext'' between the browser and the proxy. Therefore, you probably should not use the same username and password that you would use for your account login. Authentication is actually performed outside of main Squid process. When Squid starts, it spawns a number of authentication subprocesses. These processes read usernames and passwords on stdin, and reply with "OK" or "ERR" on stdout. This technique allows you to use a number of different authentication schemes, although currently you can only use one scheme at a time. The Squid source code comes with a few authentcation processes. These include:
In order to authenticate users, you need to compile and install one of the supplied authentication modules, one of the others, or supply your own. You tell Squid which authentcation program to use with the authenticate_program option in squid.conf. You specify the name of the program, plus any command line options if necessary. For example: authenticate_program /usr/local/squid/bin/ncsa_auth /usr/local/squid/etc/passwd 23.2 How do I use authentication in access controls?Make sure that your authentication program is installed and working correctly. You can test it by hand. Add some proxy_auth ACL entries to your squid configuration. For example: acl foo proxy_auth REQUIRED acl all src 0/0 http_access allow foo http_access deny allThe REQURIED term means that any authenticated user will match the ACL named foo. Squid allows you to provide fine-grained controls by specifying individual user names. For example: acl foo proxy_auth REQUIRED acl bar proxy_auth lisa sarah frank joe acl daytime time 08:00-17:00 acl all src 0/0 http_access allow bar http_access allow foo daytime http_access deny allIn this example, users named lisa, sarah, joe, and frank are allowed to use the proxy at all times. Other users are allowed only during daytime hours. 23.3 Does Squid cache authentication lookups?Yes. Successful authentication lookups are cached for one hour by default. That means (in the worst case) its possible for someone to keep using your cache up to an hour after he has been removed from the authentication database. You can control the expiration time with the authenticate_ttl option. 23.4 Are passwords stored in clear text or encrypted?Squid stores cleartext passwords in itsmemory cache. Squid writes cleartext usernames and passwords when talking to the external authentication processes. Note, however, that this interprocess communication occors over TCP connections bound to the loopback interface. Thus, its not possile for processes on other comuters to "snoop" on the authentication traffic. Each authentication program must select its own scheme for persistent storage of passwords and usernames. 23.5 How do I use the Winbind authenticators?Winbind is a recent addition to Samba providing some impressive capabilities for NT based user accounts. From Squid's perspective winbind provides a robust and efficient engine for both basic and NTLM challenge/response authentication against an NT domain controller. The winbind authenticators have been used successfully under Linux, FreeBSD and Solaris. Supported Samba ReleasesSamba 2.2.x releases 2.2.4 and later are officially supported. Squid 2.5 uses an internal Samba interface to communicate with the winbindd daemon. It is therefore sensitive to any changes the Samba team may make to the interface. If using Samba 2.2.4 or 2.2.5 then the Squid winbind helpers will work as is. With Samba 2.2.6, the winbindd interface changed and Squid 2.5 will not work as
distributed. Replacing the Samba 3.0a17 and 3.0a18 implement the same winbindd interface as 2.2.4+ and are known to work. With Samba 3.0a19, the winbindd interface changed and Squid 2.5 will not work as
distributed. Replacing the The approach may be applicable for later Samba 3.0 versions as long as the interface does not change significantly, but there is no guarantees. The Samba and Squid teams are actively working together to insure future Samba stable releases will be supported. Configure SambaBuild/Install Samba Samba must be built with configure options: --with-winbind --with-winbind-auth-challenge (needed for ntlm) Optionally, if building Samba 2.2.5, apply the smbpasswd.diff patch. See SMBD and Machine Trust Accounts below to determine if the patch is worthwhile. Test Samba's winbindd
SMBD and Machine Trust Accounts Samba 2.2.x Samba's smbd daemon, while not strictly required by winbindd may be needed to manage the machine's trust account. Well behaved domain members change the account password on a regular basis. Windows and Samba servers default to changing this password every seven days. The Samba component responsible for managing the trust account password is smbd. Smbd needs to receive requests to trigger the password change. If the machine will be used for file and print services, then just running smbd to serve routine requests should keep everything happy. However, in cases where Squid's winbind helpers are the only reason Samba components are running, smbd may sit idle. Indeed, there may be no other reason to run smbd at all. There are two sample options to change the trust account. Either may be scheduled daily via a cron job to change the trust password. UglySolution.pl is a sample perl script to load smbd, connect to a Samba share using smbclient, and generate enough dummy activity to trigger smbd's machine trust account password change code. smbpasswd.diff is a patch to Samba 2.2.5's smbpasswd utility to allow changing the machine account password at will. It is a minimal patch simply exposing a command line interface to an existing Samba function. Note: This patch has been included in Samba as of 2.2.6pre2. Once patched, the smbpasswd syntax to change the password is: smbpasswd -t DOMAIN -r PDC Samba 3.x The Samba team has incorporated functionality to change the machine
trust account password in the new "net" command. A simple daily cron
job scheduling " Configure SquidBuild/Install Squid Squid must be built with the configure options: --enable-auth="ntlm,basic" --enable-basic-auth-helpers="winbind" --enable-ntlm-auth-helpers="winbind" Test Squid without auth Before going further, test basic Squid functionality. Make sure squid is functioning without requiring authorization. Test the helpers Testing the winbind ntlm helper is not really possible from the command line, but the winbind basic authenticator can be tested like any other basic helper: # /usr/local/squid/libexec/wb_auth -d /wb_auth[65180](wb_basic_auth.c:136): basic winbindd auth helper ... mydomain\myuser mypasswd /wb_auth[65180](wb_basic_auth.c:107): Got 'mydomain\myuser mypasswd' from squid (length: 24). /wb_auth[65180](wb_basic_auth.c:54): winbindd result: 0 /wb_auth[65180](wb_basic_auth.c:57): sending 'OK' to squid OKThe helper should return "OK" if given a valid username/password. Edit squid.conf
Test Squid with auth
If no usernames appear in access.log and/or no password dialogs appear in either browser, then the acl/http_access portions of squid.conf are not correct. References Joining a Domain in Samba 2.2.x Next Previous Contents |
:: Command execute :: | |
--[ c99shell v. 1.0 pre-release build #16 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0028 ]-- |