Advertisement
Guest User

Untitled

a guest
Dec 14th, 2016
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. sslproxy_cert_error allow all
  2.  
  3. visible_hostname pxy.solcablevision.com
  4.  
  5.  
  6. acl localnet src 10.0.0.0/24 # RFC1918 possible internal network
  7. #acl localnet src 172.16.0.0/12 # RFC1918 possible internal network
  8. #acl localnet src 192.168.0.0/16 # RFC1918 possible internal network
  9. #acl localnet src fc00::/7 # RFC 4193 local private network range
  10. #acl localnet src fe80::/10 # RFC 4291 link-local (directly plugged) machines
  11.  
  12. #allow Skype
  13. acl numeric_IPs dstdom_regex ^(([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)|(\[([0-9a-f]+)?:([0-9a-f:]+)?:([0-9a-f]+|0-9\.]+)?\])):443
  14. acl Skype_UA browser ^skype
  15.  
  16.  
  17. acl SSL_ports port 443
  18. acl Safe_ports port 80 # http
  19. acl Safe_ports port 21 # ftp
  20. acl Safe_ports port 443 # https
  21. acl Safe_ports port 70 # gopher
  22. acl Safe_ports port 210 # wais
  23. acl Safe_ports port 1025-65535 # unregistered ports
  24. acl Safe_ports port 280 # http-mgmt
  25. acl Safe_ports port 488 # gss-http
  26. acl Safe_ports port 591 # filemaker
  27. acl Safe_ports port 777 # multiling http
  28. acl Safe_ports port 587 #SMTP
  29. acl CONNECT method CONNECT
  30.  
  31. http_access deny !Safe_ports
  32. http_access deny CONNECT !SSL_ports
  33. http_access allow localhost manager
  34. http_access deny manager
  35. http_access allow localnet
  36. http_access allow localhost
  37. http_access deny all
  38. http_access allow CONNECT localnet numeric_IPs Skype_UA
  39.  
  40. http_port 3127 intercept
  41. http_port 3128
  42. #https_port 3129 tproxy ssl-bump generate-host-certificates=on dynamic_cert_mem_cache_size=4MB cert=/etc/squid/ssl_certs/squid.crt key=/etc/squid/ssl_certs/squid.key cipher=ECDHE-RSA-RC4-SHA:ECDHE-RSA-AES128-SHA:DHE-RSA-AES128-SHA:DHE-RSA-CAMELLIA128-SHA:AES128-SHA:RC4-SHA:HIGH:!aNULL:!MD5:!ADH
  43. https_port 3129 intercept ssl-bump generate-host-certificates=on dynamic_cert_mem_cache_size=4MB cert=/etc/squid/ssl_certs/squid.crt key=/etc/squid/ssl_certs/squid.key cipher=ECDHE-RSA-RC4-SHA:ECDHE-RSA-AES128-SHA:DHE-RSA-AES128-SHA:DHE-RSA-CAMELLIA128-SHA:AES128-SHA:RC4-SHA:HIGH:!aNULL:!MD5:!ADH
  44.  
  45.  
  46.  
  47. acl step1 at_step SslBump1
  48. acl step2 at_step SslBump2
  49. acl step3 at_step SslBump3
  50. acl skype_domains ssl::server_name "/home/solnet/domains-to-bypass.txt"
  51. ssl_bump peek step1 all
  52. ssl_bump splice skype_domains
  53. ssl_bump bump all
  54.  
  55. refresh_pattern ^ftp: 1440 20% 10080
  56. refresh_pattern ^gopher: 1440 0% 1440
  57. refresh_pattern -i (/cgi-bin/|\?) 0 0% 0
  58. refresh_pattern . 0 20% 4320
  59.  
  60.  
  61. url_rewrite_program /usr/bin/squidGuard
  62.  
  63.  
  64. # END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement