<div dir="ltr"><div>Hi All,</div><div><br></div><div>We have a requirement to use the same Squid instance for Basic and NTLM authentication to serve various customer groups (may not be on different network sections). The customer groups which are using Basic authentication (for legacy reasons) should not receive NTLM scheme and the customer groups which use NTLM should not receive Basic scheme. I couldn't find a way to implement this using the existing Squid 4.x config options. So I am thinking of introducing a new config parameter called "endpoints" like below.</div><div><br></div><div>auth_param basic endpoints ipofBasic portofBasic # Default is "endpoints all"</div><div><br></div><div>auth_param ntlm endpoints ipofNTLM portofNTLM # Default is "endpoints all"</div><div><br></div><div>acl ipofBasic  localip 192.168.4.2</div><div>acl portofBasic localport 3129 3139</div><div><br></div><div>acl ipofNTLM ipofNTLM  192.168.4.2</div><div>acl portofNTLMlocalport 3149 3159</div><div><br></div><div><br></div><div>The idea is ,if Squid recieves a request on an endpoint on which only basic authentication is needed (ie <a href="http://192.168.4.2:3129">192.168.4.2:3129</a> and <a href="http://192.168.4.2:3139">192.168.4.2:3139</a>), NTLM will not be presented to the client/browser. Vice versa for NTLM. If no endpoints is configured , then the existing behavior will be applied.</div><div><br></div><div>Do you think this is reasonable and is there are any obvious problems with this?. If you find this useful, I am happy to contribute back when I finish implementing this module (I haven't yet started developing).</div><div><br></div><div>Please let me know your thoughts.</div><div><br></div><div>Regards,</div><div>John</div></div>