--------------------- PatchSet 6103 Date: 2003/12/24 16:28:29 Author: serassio Branch: nt-2_5 Tag: (none) Log: Changed deafault of use_ntlm_negotiate to off Members: src/cf.data.pre:1.49.2.5.4.48->1.49.2.5.4.49 src/auth/ntlm/auth_ntlm.c:1.18.2.1.4.6->1.18.2.1.4.7 Index: squid/src/cf.data.pre =================================================================== RCS file: /cvsroot/squid-sf//squid/src/cf.data.pre,v retrieving revision 1.49.2.5.4.48 retrieving revision 1.49.2.5.4.49 diff -u -r1.49.2.5.4.48 -r1.49.2.5.4.49 --- squid/src/cf.data.pre 20 Dec 2003 10:47:30 -0000 1.49.2.5.4.48 +++ squid/src/cf.data.pre 24 Dec 2003 16:28:29 -0000 1.49.2.5.4.49 @@ -1,6 +1,6 @@ # -# $Id: cf.data.pre,v 1.49.2.5.4.48 2003/12/20 10:47:30 serassio Exp $ +# $Id: cf.data.pre,v 1.49.2.5.4.49 2003/12/24 16:28:29 serassio Exp $ # # # SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -1447,7 +1447,7 @@ Use of ntlm NEGOTIATE is incompatible with challenge reuse, so enabling this parameter will OVERRIDE the max_challenge_reuses and max_challenge_lifetime parameters and set them to 0. - auth_param ntlm use_ntlm_negotiate on + auth_param ntlm use_ntlm_negotiate off NOCOMMENT_START #Recommended minimum configuration: @@ -1461,7 +1461,7 @@ #auth_param ntlm children 5 #auth_param ntlm max_challenge_reuses 0 #auth_param ntlm max_challenge_lifetime 2 minutes -#auth_param ntlm use_ntlm_negotiate on +#auth_param ntlm use_ntlm_negotiate off #auth_param basic program auth_param basic children 5 auth_param basic realm Squid proxy-caching web server Index: squid/src/auth/ntlm/auth_ntlm.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/auth/ntlm/auth_ntlm.c,v retrieving revision 1.18.2.1.4.6 retrieving revision 1.18.2.1.4.7 diff -u -r1.18.2.1.4.6 -r1.18.2.1.4.7 --- squid/src/auth/ntlm/auth_ntlm.c 20 Nov 2003 22:16:19 -0000 1.18.2.1.4.6 +++ squid/src/auth/ntlm/auth_ntlm.c 24 Dec 2003 16:28:29 -0000 1.18.2.1.4.7 @@ -168,7 +168,7 @@ ntlmConfig->authenticateChildren = 5; ntlmConfig->challengeuses = 0; ntlmConfig->challengelifetime = 60; - ntlmConfig->use_ntlm_negotiate = 1; + ntlmConfig->use_ntlm_negotiate = 0; } ntlmConfig = scheme->scheme_data; if (strcasecmp(param_str, "program") == 0) {