Здравствуйте.
Установлен и настроен Squid3+Kerberos ( авторизация в AD)
Вот конфиг:
# Авторизация по IP для серверов
acl wsus src 10.8.254.33/32
acl sql src 10.8.254.3/32
acl term src 10.8.254.46/32
acl mail src 10.8.254.7/32
http_access allow mail
http_access allow wsus
http_access allow sql
#Service ACL
acl Skype_IPs url_regex ^(([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)|(\[(0-9af]+)?:([0-9af:]+)?:([0-9af]+)?\])):443 #skype
acl Skype_RU browser ^skype^ # skype
#Service access
http_access allow Skype_IPS
http_access allow Skype_RU
# указание, какой хелпер использовать с каким SPN для negotiate авторизации
auth_param negotiate program /usr/lib/squid3/squid_kerb_auth -s HTTP/service.domain.local@DOMAIN.LOCAL
# сколько параллельных потоков запускать для обслуживания аутентификации клиентов через kerberos
auth_param negotiate children 100
# указывает поддерживать связь, а не обрывать, когда браузер опрашивает схемы аутентификации
auth_param negotiate keep_alive on
# если клиент не прошел negotiate аутентификацию, ему будет выдан запрос логина/пароля для Basic аутентификации
#auth_param basic program /usr/lib/squid3/ncsa_auth /etc/squid3/squidbasicusers
# сколько параллельных потоков запускать для обслуживания basic аутентификации клиентов
#auth_param basic children 100
# Группы пользователей
acl acl000 proxy_auth "/etc/squid3/acl/allusers.acl"
acl acl001 proxy_auth "/etc/squid3/acl/users/users-001"
acl acl002 proxy_auth "/etc/squid3/acl/users/users-002"
acl acl003 proxy_auth "/etc/squid3/acl/users/users-003"
# Списков интернет контента
acl acl201 dstdomain "/etc/squid3/acl/domain/mail"
acl acl202 dstdomain "/etc/squid3/acl/domain/social"
acl acl203 dstdomain "/etc/squid3/acl/domain/games"
acl acl204 urlpath_regex -i \.mp3$ \.asf$ \.wma$ \.avi$ \.mov$
acl acl205 dstdomain "/etc/squid3/acl/domain/job"
acl acl210 dstdomain "/etc/squid3/acl/domain/job-only"
acl acl206 dstdomain .com
acl acl207 dstdomain .org
acl acl208 dstdomain .net
acl acl209 dstdomain .ch
acl manager proto cache_object
acl localhost src 127.0.0.1/32 10.8.254.51/32
acl to_localhost dst 127.0.0.0/8 0.0.0.0/32
acl SSL_ports port 443
acl Safe_ports port 80 # http
acl Safe_ports port 20-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 CONNECT method CONNECT
# Разрешаем полный доступ
http_access allow acl001
http_access allow acl002
http_access allow acl003
# Запрещаем социальные сети
http_access deny acl202
# Запрещаем онлайн игры
http_access deny acl203
# Запрещаем HR сайты
http_access deny acl205
# Запрещаем public mail
http_access deny acl201
# Открыт весь интернет за исключением всех листов запрета.
http_access allow acl000
##########################################################
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 deny all
http_port 3128
#http_port 3128 transparent
access_log /var/log/squid3/access.log
error_directory /usr/share/squid3/errors/Russian-1251
hierarchy_stoplist cgi-bin ?
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 . 0 20% 4320
Не работает ftp ресурсы через браузер в пасивном и активном режиме , пример домена
ftp://ftp.acnielsen.ru/Вот ошибка
tail -f /var/log/squid3/access.log | grep ftp
1380218318.831 27 10.8.248.1 TCP_MISS/000 0 GET ftp://ftp.acnielsen.ru/ user@DOMAIN.LOCAL DIRECT/194.84.162.131 -
1380218318.858 24 10.8.248.1 TCP_MISS/000 0 GET ftp://ftp.acnielsen.ru/ user@DOMAIN.LOCAL DIRECT/194.84.162.131 -
1380218318.891 26 10.8.248.1 TCP_MISS/000 0 GET ftp://ftp.acnielsen.ru/ user@DOMAIN.LOCAL DIRECT/194.84.162.131 -
1380218318.895 0 10.8.248.1 TCP_DENIED/407 2424 GET ftp://ftp.acnielsen.ru/ - NONE/- text/html
1380218319.056 137 10.8.248.1 TCP_MISS/000 0 GET ftp://ftp.acnielsen.ru/ user@DOMAIN.LOCAL DIRECT/194.84.162.131 -
Как поправить конфиг чтобы FTP заработал ?
Заранее благодарен!