korvoman
(usa Debian)
Enviado em 09/09/2010 - 23:00h
Bem provavel que voce deva libera o acesso administrativo para o cups. Faça primeira copia de segurança do arquivo /etc/cups/cupsd.conf:
cd /etc/cups/
cp cupsd.conf cupsd.conf.bkp
e edite o arquivo conforme a seguir.
# Show shared printers on the local network.
Browsing On
BrowseOrder allow,deny
BrowseAllow all
######## Coloque sua rede aqui.
BrowseAddress 192.168.1.
BrowseAddress 192.168.2.
# Default authentication type, when authentication is required...
DefaultAuthType Basic
# Restrict access to the server...
<Location />
Order allow,deny
Allow From ALL
</Location>
# Restrict access to the admin pages...
<Location /admin>
Order allow,deny
Allow From All
</Location>
# Restrict access to configuration files...
<Location /admin/conf>
AuthType Default
Require user @SYSTEM
Order allow,deny
Allow From All
</Location>
Todas as demais diretivas coloco Allow From All. Salve o arquivo e restart o serviço cups :
/etc/init.d/cups restart ou reload