Galera, boa tarde. Desculpem-me estar incomodando. Já tem mais de 2 anos que não ando envolvido com Linux. E agora estou voltando a ativa e tomando uma surra legal. Estou montando um servidor com firewall e proxy no CentOS. O firewall está ok. O Proxy está rodando relativamente ok. Digo relativamente porque eu criei as acl no squid e tenho um grupo de superusuários que tem acesso livre na net. E o resto está restrito. O estranho é que o pessoal que está liberado, quando abre o site do Terra, aparece perfeito. E quando o pessoal que tem restrição, o site do Terra, aparece como se fosse o navegador Lynx que vem com as distribuições Linux. Quase não aparece imagem nenhuma e no formato do Lynx. Os outros sites abrem todos normais. Sómente o site do Terra, é que apresenta esse problema. Alguém tem alguma idéia ???
Estou enviando o meu squid que é autenticado, apenas na parte das acl's para darem uma olhada. No mais galera, obrigado a quem puder me dar alguma dica.

#
#Examples:
#acl macaddress arp 09:00:2b:23:45:67
#acl myexample dst_as 1241
#acl password proxy_auth REQUIRED
#acl fileupload req_mime_type -i ^multipart/form-data$
acl javascript rep_mime_type -i ^application/x-javascript$
#
#Recommended minimum configuration:
acl all src 0.0.0.0/0.0.0.0
acl manager proto cache_object
acl localhost src 127.0.0.1/255.255.255.255
acl to_localhost dst 127.0.0.0/8
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 CONNECT method CONNECT
#
# TAG: http_access
# Allowing or Denying access based on defined access lists
#
# Access to the HTTP port:
# http_access allow|deny [!]aclname ...
#
# NOTE on default values:
#
# If there are no "access" lines present, the default is to deny
# the request.
#
# If none of the "access" lines cause a match, the default is the
# opposite of the last line in the list. If the last line was
# deny, the default is allow. Conversely, if the last line
# is allow, the default will be deny. For these reasons, it is a
# good idea to have an "deny all" or "allow all" entry at the end
# of your access lists to avoid potential confusion.
#
# http_access deny all
#
#Default:
# http_access deny all
#
#Recommended minimum configuration:
#
# Only allow cachemgr access from localhost
http_access allow manager localhost
http_access deny manager
# Deny requests to unknown ports
http_access deny !Safe_ports
# Deny CONNECT to other than SSL ports
http_access deny CONNECT !SSL_ports
#
# We strongly recommend the following be uncommented to protect innocent
# web applications running on the proxy server who think the only
# one who can access services on "localhost" is a local user
#http_access deny to_localhost
#
# INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS
#
# Example rule allowing access from your local networks. Adapt
# to list your (internal) IP networks from where browsing should
# be allowed
#acl our_networks src 192.168.1.0/24 192.168.2.0/24
#http_access allow our_networks
#
#
# Rede Eletrominas na interface eth1
#
acl rede_eth1 src 192.168.1.0/24
#
http_access allow rede_eth1 javascript
#
# Usuarios com acesso livre
acl supergrupo proxy_auth "/etc/squid/configuracoes/supergrupo.txt"
http_access allow rede_eth1 supergrupo
#
# Nome dos Usuarios que vao passar pela acl dstdomain
acl usuarios_direcionados proxy_auth "/etc/squid/configuracoes/usuarios_direcionados.txt"
#
# O arquivo dominiodst.txt contem os sites direcionados pela Eletrominas
# O arquivo dominiourl.txt tem alguns sites que nao encaixam na acl dstdomain
acl dominiodst dstdomain "/etc/squid/configuracoes/dominiodst.txt"
acl dominiourl url_regex -i "/etc/squid/configuracoes/dominiourl.txt"
#
# arquivo com palavras bloqueadas
acl palavras_bloqueadas url_regex -i "/etc/squid/configuracoes/palavras_bloqueadas.txt"
#
#
http_access allow usuarios_direcionados dominiodst !palavras_bloqueadas
#
http_access allow usuarios_direcionados dominiourl
#
# And finally deny all other access to this proxy
#
http_access allow localhost
http_access deny all
#