Squid proxy не работает после обновления с Ubuntu 16.04 до 18.04 - PullRequest
0 голосов
/ 24 января 2019

Я использую следующий squid.conf

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 9100        # printer
acl Safe_ports port 427         # udp port for printer
acl Safe_ports port 137         # udp port for printer
acl Safe_ports port 161         # udp port for printer
acl Safe_ports port 123         # udp port for NTP
acl Safe_ports port 2159         # udp port for gdb
acl CONNECT method CONNECT
acl whitelist dstdomain "/etc/squid/whitelist.txt"
#http_access deny !whitelist
#http_access deny !Safe_ports
#http_access deny CONNECT !SSL_ports
#acl IP_whitelist src 172.16.140.34
#http_access allow IP_whitelist
http_access allow localhost manager
http_access deny manager
http_access allow localhost
http_access deny all
http_port 3128
coredump_dir /var/spool/squid3
refresh_pattern ^ftp:           1440    20%     10080
refresh_pattern ^gopher:        1440    0%      1440
refresh_pattern -i (/cgi-bin/|\?) 0     0%      0
refresh_pattern (Release|Packages(.gz)*)$      0       20%     2880
refresh_pattern .               0       20%     4320
request_header_add X-Custom-Caller "Alfarhan-System-Image/1.1" all
include /etc/squid/conf.d/*.conf

Конфигурация работала в Ubuntu 16.04, но после обновления до Ubuntu 18.04 я не могу получить доступ к веб-сайтам из белого списка.

Следующие строкииз журналов доступа squid:

1548355758.020      0 127.0.0.1 TAG_NONE/503 0 CONNECT clients1.google.com:443 - HIER_NONE/- -
1548355758.020      0 127.0.0.1 TAG_NONE/503 0 CONNECT clients1.google.com:443 - HIER_NONE/- -
1548355758.021      0 127.0.0.1 TAG_NONE/503 0 CONNECT clients1.google.com:443 - HIER_NONE/- -
1548355758.022      0 127.0.0.1 TAG_NONE/503 0 CONNECT clients1.google.com:443 - HIER_NONE/- -
1548355777.119      0 127.0.0.1 TAG_NONE/503 0 CONNECT clients1.google.com:443 - HIER_NONE/- -
1548355777.402      0 127.0.0.1 TAG_NONE/503 0 CONNECT clients1.google.com:443 - HIER_NONE/- -
1548355777.416      0 127.0.0.1 TAG_NONE/503 0 CONNECT clients1.google.com:443 - HIER_NONE/- -
1548355777.433      0 127.0.0.1 TAG_NONE/503 0 CONNECT clients1.google.com:443 - HIER_NONE/- -
1548355777.435      0 127.0.0.1 TAG_NONE/503 0 CONNECT clients1.google.com:443 - HIER_NONE/- -
1548355777.437      0 127.0.0.1 TAG_NONE/503 0 CONNECT clients1.google.com:443 - HIER_NONE/- -
1548355787.873      0 127.0.0.1 TAG_NONE/503 0 CONNECT clients1.google.com:443 - HIER_NONE/- -

Пожалуйста, помогите мне здесь: (

...