Squid mit Steam und Mail Client

haruchin

New Member
Hi,

habe mir vor einigen Tagen einen Proxy Server eingerichtet (Squid), läuft eig. so weit gut, nur habe ich Probleme mit Steam und meinem Mail-Client (eM Client).

So bald ich den Proxy in Win10 aktiviere, bekomme ich mit Steam und meinem Mail-Client keine Verbindung mehr. Bei Steam bekomme ich Error 111 und der Mail-Client möchte immer einen Benutzer Namen und PW haben, was ich eig. immer eingebe, kommt aber halt immer.

kA ob ich einen Fehler in meiner squid.conf habe und ich bin einfach Blind den Fehler zu finden.

Code:
http_port 3456
acl QUERY urlpath_regex cgi_bin \?
cache deny all

httpd_suppress_version_string on

visible_hostname xxxxx

access_log none
cache_store_log none
cache_log /dev/null

refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern -i (/cgi-bin/|\?) 0 0% 0
refresh_pattern . 0 20% 4320

acl manager proto cache_object

acl SSL_ports port 443
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 # https
acl Safe_ports port 70 # gopher
acl Safe_ports port 210 # wais
acl Safe_ports port 1025-65535 # unregistered ports
acl Safe_ports port 280 # http-mgmt
acl Safe_ports port 488 # gss-http
acl Safe_ports port 591 # filemaker
acl Safe_ports port 777 # multiling http
acl Safe_ports port 993
acl Safe_ports port 587
acl Safe_ports port 5223
acl CONNECT method CONNECT
http_access allow manager localhost
http_access deny manager

http_access deny !Safe_ports

http_access deny CONNECT !SSL_ports
auth_param basic program /usr/lib/squid/basic_ncsa_auth /etc/squid/squid_passwd
auth_param basic realm proxy
acl ncsa_users proxy_auth REQUIRED

auth_param basic children 5
auth_param basic realm Squid proxy-caching web server
auth_param basic credentialsttl 2 hours
acl password proxy_auth REQUIRED
http_access allow localhost
http_access allow password
http_access deny all

forwarded_for off
request_header_access Allow allow all
request_header_access Authorization allow all
request_header_access WWW-Authenticate deny all
request_header_access Proxy-Authorization allow all
request_header_access Proxy-Authenticate allow all
request_header_access Cache-Control allow all
request_header_access Content-Encoding allow all
request_header_access Content-Length allow all
request_header_access Content-Type allow all
request_header_access Date allow all
request_header_access Expires allow all
request_header_access Host allow all
request_header_access If-Modified-Since allow all
request_header_access Last-Modified allow all
request_header_access Location allow all
request_header_access Pragma allow all
request_header_access Accept allow all
request_header_access Accept-Charset allow all
request_header_access Accept-Encoding allow all
request_header_access Accept-Language allow all
request_header_access Content-Language allow all
request_header_access Mime-Version allow all
request_header_access Retry-After allow all
request_header_access Title allow all
request_header_access Connection allow all
request_header_access Proxy-Connection allow all
request_header_access User-Agent allow all
request_header_access Cookie allow all
request_header_access X-Forwarded-For deny all
request_header_access Server deny all
request_header_access Link deny all
request_header_access User-agent deny all
request_header_access Via deny all
request_header_access All deny all

# Response Headers Spoofing

reply_header_access Via deny all
reply_header_access X-Cache deny all
reply_header_access X-Cache-Lookup deny all

# Mail Settings
cache_mgr xxxxxxx.eu
cache_mgr xxxxxxx.eu
cache_mgr xxxxxxx.com
cache_mgr xxxxxxx.com
 
Back
Top