LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Server (https://www.linuxquestions.org/questions/linux-server-73/)
-   -   Squid blocks battle.net (https://www.linuxquestions.org/questions/linux-server-73/squid-blocks-battle-net-4175512579/)

shardik 07-29-2014 02:13 AM

Squid blocks battle.net
 
I have a fully working squid setup, i can browse, download, the only problem i'm having is logging in to battle.net. (the windows client, not the website - that one works so it's not due to the login servers being down...).

i'm using a little cleaned up config:

Code:

http_port 8888
refresh_pattern ^ftp:          1440    20%    10080
refresh_pattern -i (/cgi-bin/|\?) 0    0%      0
refresh_pattern .              0      20%    4320
acl localnet src 192.168.1.0/24 # RFC 1918 possible internal network
acl SSL_ports port 443
acl Safe_ports port 80          # http
acl Safe_ports port 21          # ftp
acl Safe ports port 22
acl Safe_ports port 443        # https
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 CONNECT method CONNECT

http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localhost
http_access allow localnet
http_access deny all

however, this results in the following loggings:

Code:

TCP_MISS/200 12095 GET http://eu.patch.battle.net:1119/hero/blob/game - HIER_DIRECT/213.248.127.133 application/octet-stream
TCP_MEM_HIT/200 402 GET http://eu.launcher.battle.net/service/app/alert/en-gb - HIER_NONE/- text/plain
TCP_MEM_HIT/200 655 GET http://eu.launcher.battle.net/service/app/maintenance/en-gb - HIER_NONE/- text/plain

(multiple lines of these )

the ports that should be used are:
80, 443, 1119, 3724, 6881-6999 (both TCP & UDP)

I don't think i'm blocking any of these ?

Is there a problem in my config, or could it just be because i'm using this proxy from a remote location through a ssh tunnel ?


All times are GMT -5. The time now is 03:31 PM.