Hello,
I've installed a Squid/SquidGuard server on my network at work. Everything is OK but Skype connects/disconnects regularly.
Here is an extract of my squid.conf file :
Code:
acl LAN-IT src 10.33.160.160/27
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 # https
acl Safe_ports port 1025-65535 # unregistered ports
acl SSL_port port 443
acl CONNECT method CONNECT
acl password proxy_auth REQUIRED
acl numeric_IPs dstdom_regex ^([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+):443
http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_port
http_access allow localhost
http_access allow CONNECT LAN-IT numeric_IPS
http_access allow LAN-IT password
http_access deny all
Any idea ?
Edit : If I disable the proxy setting in IE and allow my subnet to access to the Internet on my firewall, it works.