Differences between revisions 4 and 5
Revision 4 as of 2009-05-25 11:58:10
Size: 951
Editor: PieterSmit
Comment:
Revision 5 as of 2009-05-25 11:59:18
Size: 973
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 31: Line 31:
acl numeric_IPs urlpath_regex ^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+
acl connect method CONNECT
http_access deny connect numeric_IPs all
# Skype
acl numeric_IPs url_regex ^[0-9]+.[0-9]+.[0-9]+.[0-9]+:443
acl Skype_UA browser ^skype^
http_access deny numeric_IPS
http_acces
s deny Skype_UA

Squid web proxy

  • My goal is to keep notes on how to enable Windows AD authentication on Squid3.x

I joined the domain using "net rpc join -S PDC -U Administrator" # wbinfo -t > checking the trust secret via RPC calls succeeded > # wbinfo -u # wbinfo -g

http://www.cyberciti.biz/faq/squid-ntlm-authentication-configuration-howto/

  • Not tested
    #auth_param negotiate program /usr/local/squid/bin/ntlm_auth --helper-protocol=gs
    s-spnego

domain=> [domain] auth_param ntlm program /usr/lib/squid3/ntlm_auth -d domain/serv1 domain/serv2

acl Ip_Block_Range url_regex [0-9]*\.[0-9]*\.[0-9]*\.[0-9]*\:443
http_access deny Ip_Block_Range

# Skype
acl numeric_IPs url_regex ^[0-9]+.[0-9]+.[0-9]+.[0-9]+:443
acl Skype_UA browser ^skype^
http_access deny numeric_IPS
http_access deny Skype_UA

...


CategoryLinux

linux/squidproxy (last edited 2022-05-05 19:32:03 by PieterSmit)