I am having very similar issues, and have found tons of posts on here regarding this but no fixes so far. Here is my environment:
IPCop v1.4.10 running Squid Proxy (squid/2.5.STABLE12). Here is a copy of my squid.conf:
#################################
shutdown_lifetime 5 seconds
icp_port 0
http_port 127.0.0.1:800
acl QUERY urlpath_regex cgi-bin \?
no_cache deny QUERY
cache_effective_user squid
cache_effective_group squid
pid_filename /var/run/squid.pid
cache_access_log /var/log/squid/access.log
cache_log /var/log/squid/cache.log
cache_store_log none
log_mime_hdrs off
forwarded_for off
# Uncomment the following line to enable logging of User-Agent header:
#useragent_log /var/log/squid/user_agent.log
# Uncomment the following line to enable logging of Referer header:
#referer_log /var/log/squid/referer.log
acl all src 0.0.0.0/0.0.0.0
acl localhost src 127.0.0.1/255.255.255.255
acl SSL_ports port 443 563
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 563 # https, snews
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 800 # Squids port (for icons)
acl IPCop_http port 81
acl IPCop_https port 445
acl IPCop_ips dst 10.0.0.2
acl IPCop_networks src 10.0.0.0/255.255.255.0
acl CONNECT method CONNECT
##Access to squid:
#local machine, no restriction
#http_access allow localhost
#GUI admin if local machine connects
#http_access allow IPCop_ips IPCop_networks IPCop_http
#http_access allow CONNECT IPCop_ips IPCop_networks IPCop_https
#Deny not web services
#http_access deny !Safe_ports
#http_access deny CONNECT !SSL_ports
#Finally allow IPCop_networks clients
#http_access allow IPCop_networks
#http_access deny all
# Cop+ acl rules follow, above rules should remain commented out
http_access allow localhost IPCop_http
http_access allow CONNECT localhost IPCop_https
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localhost
http_access deny all
maximum_object_size 4096 KB
minimum_object_size 0 KB
cache_mem 2000 KB
cache_dir aufs /var/log/cache 50 16 256
request_body_max_size 0 KB
reply_body_max_size 0 allow all
visible_hostname fake.hostname
httpd_accel_host virtual
httpd_accel_port 80
httpd_accel_with_proxy on
httpd_accel_uses_host_header on
#############################################
As you can see from the acl allows, port 21/FTP is allowed access. Yet anytime I attempt to hit an ftp site through Squid via a Windows client using both IE 6.0+ or Smart FTP, I get the following error message:
ERROR
The requested URL could not be retrieved
--------------------------------------------------------------------------------
The FTP server was too busy while trying to retrieve the URL:
ftp://ftp.conleyservices.com/
Squid sent the following FTP command:
USER anonymous
and then received this reply
Unable to set up secure anonymous FTPYour cache administrator is webmaster.
--------------------------------------------------------------------------------
Generated Sat, 10 Jun 2006 03:18:06 GMT by fake.hostname (squid/2.5.STABLE12)
######################################
Help?! Someone?! Also, if I go to a Linux ftp server that requires a log in other than anonymous, it seems to work (except i don't have a password, so not sure if it really works, but at least i get prompted to put one in).