jaymzwise | Bonjour,
J'ai un serveur d'impression CUPS (1.3.6-3) sous Debian Lenny.
Lorsque je souhaite ajouter une imprimante via l'interface Web Cups tout se passe correctement jusqu'au moment de valider l'ajout, qui se traduit logiquement par le passage en https et la demande d'authentification.
Je n'ai aucune demande d'authentification et une page "Connexion réinitialisée" apparait.
Voici mes fichiers de conf :
CUPS
Code :
- #
- #
- # Sample configuration file for the Common UNIX Printing System (CUPS)
- # scheduler. See "man cupsd.conf" for a complete description of this
- # file.
- #
- # Log general information in error_log - change "info" to "debug" for
- # troubleshooting...
- LogLevel warning
- ServerName X.X.X
- DefaultCharset iso-8859-15
- DefaultLanguage fr
- MaxLogSize 0
- PreserveJobHistory Yes
- PreserveJobFiles Yes
- AutoPurgeJobs No
- MaxCopies 100
- MaxJobs 50
- # Administrator user group...
- SystemGroup lpadmin
- # Only listen for connections from the local machine.
- Listen X.X.X.X:631
- Listen /var/run/cups/cups.sock
- # Show shared printers on the local network.
- Browsing On
- BrowseOrder allow,deny
- BrowseAllow all
- # Default authentication type, when authentication is required...
- DefaultAuthType Basic
- # Restrict access to the server...
- <Location />
- Order allow,deny
- Allow localhost
- Allow From X.X.X.X/X.X.X.X
- Allow From X.X.X.X/X.X.X.X
- Allow @LOCAL
- </Location>
- # Restrict access to the admin pages...
- <Location /admin>
- Order allow,deny
- Allow localhost
- Allow From X.X.X.X/X.X.X.X
- Allow From X.X.X.X/X.X.X.X
- </Location>
- # Restrict access to configuration files...
- <Location /admin/conf>
- AuthType Default
- Require user @SYSTEM
- Order allow,deny
- Allow localhost
- </Location>
- # Set the default printer/job policies...
- <Policy default>
- # Job-related operations must be done by the owner or an administrator...
- <Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job CUPS-Move-Job>
- Require user @OWNER @SYSTEM
- Order deny,allow
- </Limit>
- # All administration operations require an administrator to authenticate...
- <Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default>
- AuthType Default
- Require user @SYSTEM
- Order deny,allow
- </Limit>
- # All printer operations require a printer operator to authenticate...
- <Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After CUPS-Accept-Jobs CUPS-Reject-Jobs>
- AuthType Default
- Require user @SYSTEM
- Order deny,allow
- </Limit>
- # Only the owner or an administrator can cancel or authenticate a job...
- <Limit Cancel-Job CUPS-Authenticate-Job>
- Require user @OWNER @SYSTEM
- Order deny,allow
- </Limit>
- <Limit All>
- Order deny,allow
- </Limit>
- </Policy>
|
SAMBA
Code :
- [global]
- workgroup = X
- netbios name = X
- server string =
- domain master = No
- local master = No
- prefered master = No
- domain logons = Yes
- os level = 40
- #passwd program = /usr/sbin/smbldap-passwd ?u %u
- ldap passwd sync = Yes
- passdb backend = ldapsam:ldap://127.0.0.1/
- ldap admin dn = cn=admin,dc=X,dc=X
- ldap suffix = dc=X,dc=X
- ldap group suffix = ou=Groups
- ldap user suffix = ou=Users
- ldap machine suffix = ou=Machines
- add user script = /usr/sbin/smbldap-useradd -m "%u"
- ldap delete dn = Yes
- delete user script = /usr/sbin/smbldap-userdel "%u"
- add machine script = /usr/sbin/smbldap-useradd -w "%u"
- add group script = /usr/sbin/smbldap-groupadd -p "%g"
- #delete group script = /usr/sbin/smbldap-groupdel "%g"
- add user to group script = /usr/sbin/smbldap-groupmod -m "%u" "%g"
- delete user from group script = /usr/sbin/smbldap-groupmod -x "%u" "%g"
- set primary group script = /usr/sbin/smbldap-usermod -g "%g" "%u"
- logon path =
- logon drive =
- logon home =
- # logon home = \\%L\%U
- socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
- case sensitive = No
- default case = lower
- preserve case = yes
- short preserve case = Yes
- #character set = iso8859-1
- #domain admin group = @admin
- dns proxy = No
- # wins support = Yes
- wins server = X.X.X.X
- wins proxy = Yes
- hosts allow = X.X. X. 127.
- smb ports = 139
- winbind use default domain = Yes
- nt acl support = Yes
- msdfs root = Yes
- hide files = /desktop.ini/ntuser.ini/NTUSER.*/
- # CUPS printing. See also the cupsaddsmb(8) manpage in the
- # cupsys-client package.
- printing = cups
- printcap name = cups
- [netlogon]
- path = /home/netlogon
- writeable = No
- browseable = No
- write list = @Admins,Administrateur
- [Temp]
- comment = Temp
- path = /tmp
- writeable = yes
- public = yes
- [printers]
- comment = All Printers
- browseable = yes
- path = /tmp
- guest ok = yes
- printable = yes
|
Error_log de CUPS
Code :
- D [14/Apr/2008:12:10:52 +0200] cupsdAcceptClient: 8 from X.X.X.X:631 (IPv4)
- D [14/Apr/2008:12:10:52 +0200] Report: clients=1
- D [14/Apr/2008:12:10:52 +0200] Report: jobs=0
- D [14/Apr/2008:12:10:52 +0200] Report: jobs-active=0
- D [14/Apr/2008:12:10:52 +0200] Report: printers=0
- D [14/Apr/2008:12:10:52 +0200] Report: printers-implicit=0
- D [14/Apr/2008:12:10:52 +0200] Report: stringpool-string-count=169
- D [14/Apr/2008:12:10:52 +0200] Report: stringpool-alloc-bytes=4944
- D [14/Apr/2008:12:10:52 +0200] Report: stringpool-total-bytes=3704
- D [14/Apr/2008:12:10:52 +0200] cupsdReadClient: 8 GET /admin/ HTTP/1.1
- D [14/Apr/2008:12:10:52 +0200] cupsdAuthorize: No authentication data provided.
- D [14/Apr/2008:12:10:52 +0200] [CGI] /usr/lib/cups/cgi-bin/admin.cgi started - PID = 3288
- I [14/Apr/2008:12:10:52 +0200] Started "/usr/lib/cups/cgi-bin/admin.cgi" (pid=3288)
- D [14/Apr/2008:12:10:52 +0200] cupsdSendCommand: 8 file=9
- D [14/Apr/2008:12:10:52 +0200] [CGI] admin.cgi started...
- D [14/Apr/2008:12:10:52 +0200] cupsdAcceptClient: 11 from localhost (Domain)
- D [14/Apr/2008:12:10:52 +0200] [CGI] http=0x807a4f8
- D [14/Apr/2008:12:10:52 +0200] [CGI] No form data, showing main menu...
- D [14/Apr/2008:12:10:52 +0200] [CGI] /usr/share/cups/drivers/pscript5.dll: No such file or directory
- D [14/Apr/2008:12:10:52 +0200] cupsdReadClient: 11 POST / HTTP/1.1
- D [14/Apr/2008:12:10:52 +0200] cupsdAuthorize: No authentication data provided.
- D [14/Apr/2008:12:10:52 +0200] Get-Subscriptions ipp://localhost/
- D [14/Apr/2008:12:10:52 +0200] Get-Subscriptions client-error-not-found: Aucune souscription trouvée.
- D [14/Apr/2008:12:10:52 +0200] cupsdProcessIPPRequest: 11 status_code=406 (client-error-not-found)
- D [14/Apr/2008:12:10:52 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
- D [14/Apr/2008:12:10:52 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
- D [14/Apr/2008:12:10:52 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
- D [14/Apr/2008:12:10:52 +0200] cupsdCloseClient: 11
- D [14/Apr/2008:12:10:52 +0200] PID 3288 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
- D [14/Apr/2008:12:10:54 +0200] cupsdReadClient: 8 GET /admin?op=add-printer HTTP/1.1
- D [14/Apr/2008:12:10:54 +0200] cupsdAuthorize: No authentication data provided.
- D [14/Apr/2008:12:10:54 +0200] [CGI] /usr/lib/cups/cgi-bin/admin.cgi started - PID = 3289
- I [14/Apr/2008:12:10:54 +0200] Started "/usr/lib/cups/cgi-bin/admin.cgi" (pid=3289)
- D [14/Apr/2008:12:10:54 +0200] cupsdSendCommand: 8 file=9
- D [14/Apr/2008:12:10:54 +0200] [CGI] admin.cgi started...
- D [14/Apr/2008:12:10:54 +0200] cupsdAcceptClient: 11 from localhost (Domain)
- D [14/Apr/2008:12:10:54 +0200] [CGI] http=0x807a4f8
- D [14/Apr/2008:12:10:54 +0200] [CGI] op="add-printer"...
- D [14/Apr/2008:12:10:54 +0200] [CGI] do_am_printer: DEVICE_URI="(null)"
- D [14/Apr/2008:12:10:54 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
- D [14/Apr/2008:12:10:54 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
- D [14/Apr/2008:12:10:54 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
- D [14/Apr/2008:12:10:54 +0200] cupsdCloseClient: 11
- D [14/Apr/2008:12:10:54 +0200] PID 3289 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
- D [14/Apr/2008:12:10:59 +0200] cupsdReadClient: 8 POST /admin HTTP/1.1
- D [14/Apr/2008:12:10:59 +0200] cupsdAuthorize: No authentication data provided.
- D [14/Apr/2008:12:10:59 +0200] [CGI] /usr/lib/cups/cgi-bin/admin.cgi started - PID = 3290
- I [14/Apr/2008:12:10:59 +0200] Started "/usr/lib/cups/cgi-bin/admin.cgi" (pid=3290)
- D [14/Apr/2008:12:10:59 +0200] cupsdSendCommand: 8 file=11
- D [14/Apr/2008:12:10:59 +0200] [CGI] admin.cgi started...
- D [14/Apr/2008:12:10:59 +0200] cupsdAcceptClient: 9 from localhost (Domain)
- D [14/Apr/2008:12:10:59 +0200] [CGI] http=0x807a4f8
- D [14/Apr/2008:12:10:59 +0200] [CGI] op="add-printer"...
- D [14/Apr/2008:12:10:59 +0200] [CGI] do_am_printer: DEVICE_URI="(null)"
- D [14/Apr/2008:12:10:59 +0200] [CGI] Getting list of devices...
- D [14/Apr/2008:12:10:59 +0200] cupsdReadClient: 9 POST / HTTP/1.1
- D [14/Apr/2008:12:10:59 +0200] cupsdAuthorize: No authentication data provided.
- D [14/Apr/2008:12:10:59 +0200] CUPS-Get-Devices ipp://localhost/printers/
- D [14/Apr/2008:12:10:59 +0200] [CGI] /usr/lib/cups/daemon/cups-deviced started - PID = 3291
- I [14/Apr/2008:12:10:59 +0200] Started "/usr/lib/cups/daemon/cups-deviced" (pid=3291)
- D [14/Apr/2008:12:10:59 +0200] cupsdSendCommand: 9 file=12
- D [14/Apr/2008:12:10:59 +0200] [CGI] perl: warning: Setting locale failed.
- D [14/Apr/2008:12:10:59 +0200] [CGI] perl: warning: Please check that your locale settings:
- D [14/Apr/2008:12:10:59 +0200] [CGI] LANGUAGE = (unset),
- D [14/Apr/2008:12:10:59 +0200] [CGI] LC_ALL = (unset),
- D [14/Apr/2008:12:10:59 +0200] [CGI] LANG = "fr.UTF8"
- D [14/Apr/2008:12:10:59 +0200] [CGI] are supported and installed on your system.
- D [14/Apr/2008:12:10:59 +0200] [CGI] perl: warning: Falling back to the standard locale ("C" ).
- D [14/Apr/2008:12:10:59 +0200] [cups-deviced] Added device "beh"...
- D [14/Apr/2008:12:10:59 +0200] [cups-deviced] Added device "ipp"...
- D [14/Apr/2008:12:10:59 +0200] [CGI] perl: warning: Setting locale failed.
- D [14/Apr/2008:12:10:59 +0200] [CGI] perl: warning: Please check that your locale settings:
- D [14/Apr/2008:12:10:59 +0200] [CGI] LANGUAGE = (unset),
- D [14/Apr/2008:12:10:59 +0200] [CGI] LC_ALL = (unset),
- D [14/Apr/2008:12:10:59 +0200] [CGI] LANG = "fr.UTF8"
- D [14/Apr/2008:12:10:59 +0200] [CGI] are supported and installed on your system.
- D [14/Apr/2008:12:10:59 +0200] [CGI] perl: warning: Falling back to the standard locale ("C" ).
- D [14/Apr/2008:12:11:01 +0200] cupsdAcceptClient: 13 from localhost (Domain)
- D [14/Apr/2008:12:11:01 +0200] cupsdReadClient: 13 POST / HTTP/1.1
- D [14/Apr/2008:12:11:01 +0200] cupsdAuthorize: No authentication data provided.
- D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Printers
- D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Printers client-error-not-found: Aucune destination ajoutée.
- D [14/Apr/2008:12:11:01 +0200] cupsdProcessIPPRequest: 13 status_code=406 (client-error-not-found)
- D [14/Apr/2008:12:11:01 +0200] cupsdReadClient: 13 POST / HTTP/1.1
- D [14/Apr/2008:12:11:01 +0200] cupsdAuthorize: No authentication data provided.
- D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Classes
- D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Classes client-error-not-found: Aucune destination ajoutée.
- D [14/Apr/2008:12:11:01 +0200] cupsdProcessIPPRequest: 13 status_code=406 (client-error-not-found)
- D [14/Apr/2008:12:11:01 +0200] cupsdReadClient: 13 POST / HTTP/1.1
- D [14/Apr/2008:12:11:01 +0200] cupsdAuthorize: No authentication data provided.
- D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Default
- D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Default client-error-not-found: Pas d’imprimante par défaut
- D [14/Apr/2008:12:11:01 +0200] cupsdProcessIPPRequest: 13 status_code=406 (client-error-not-found)
- D [14/Apr/2008:12:11:01 +0200] cupsdReadClient: 13 POST / HTTP/1.1
- D [14/Apr/2008:12:11:01 +0200] cupsdAuthorize: No authentication data provided.
- D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Printers
- D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Printers client-error-not-found: Aucune destination ajoutée.
- D [14/Apr/2008:12:11:01 +0200] cupsdProcessIPPRequest: 13 status_code=406 (client-error-not-found)
- D [14/Apr/2008:12:11:01 +0200] [CGI] lpstat: Aucune destination ajoutée.
- D [14/Apr/2008:12:11:01 +0200] cupsdReadClient: 13 POST / HTTP/1.1
- D [14/Apr/2008:12:11:01 +0200] cupsdAuthorize: No authentication data provided.
- D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Printers
- D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Printers client-error-not-found: Aucune destination ajoutée.
- D [14/Apr/2008:12:11:01 +0200] cupsdProcessIPPRequest: 13 status_code=406 (client-error-not-found)
- D [14/Apr/2008:12:11:01 +0200] cupsdReadClient: 13 POST / HTTP/1.1
- D [14/Apr/2008:12:11:01 +0200] cupsdAuthorize: No authentication data provided.
- D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Classes
- D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Classes client-error-not-found: Aucune destination ajoutée.
- D [14/Apr/2008:12:11:01 +0200] cupsdProcessIPPRequest: 13 status_code=406 (client-error-not-found)
- D [14/Apr/2008:12:11:01 +0200] cupsdReadClient: 13 POST / HTTP/1.1
- D [14/Apr/2008:12:11:01 +0200] cupsdAuthorize: No authentication data provided.
- D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Default
- D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Default client-error-not-found: Pas d’imprimante par défaut
- D [14/Apr/2008:12:11:01 +0200] cupsdProcessIPPRequest: 13 status_code=406 (client-error-not-found)
- D [14/Apr/2008:12:11:01 +0200] cupsdReadClient: 13 POST / HTTP/1.1
- D [14/Apr/2008:12:11:01 +0200] cupsdAuthorize: No authentication data provided.
- D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Printers
- D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Printers client-error-not-found: Aucune destination ajoutée.
- D [14/Apr/2008:12:11:01 +0200] cupsdProcessIPPRequest: 13 status_code=406 (client-error-not-found)
- D [14/Apr/2008:12:11:01 +0200] [CGI] lpstat: Aucune destination ajoutée.
- D [14/Apr/2008:12:11:01 +0200] cupsdCloseClient: 13
- D [14/Apr/2008:12:11:01 +0200] [cups-deviced] Added device "socket://X.X.X.X"...
- D [14/Apr/2008:12:11:01 +0200] [cups-deviced] Added device "socket"...
- D [14/Apr/2008:12:11:02 +0200] [cups-deviced] Added device "socket://X.X.X.X"...
- D [14/Apr/2008:12:11:02 +0200] [cups-deviced] Added device "socket://X.X.X.X"...
- D [14/Apr/2008:12:11:02 +0200] [cups-deviced] Added device "smb"...
- D [14/Apr/2008:12:11:02 +0200] [cups-deviced] Added device "lpd"...
- D [14/Apr/2008:12:11:02 +0200] [cups-deviced] Added device "http"...
- D [14/Apr/2008:12:11:02 +0200] [cups-deviced] Added device "parallel:/dev/lp0"...
- D [14/Apr/2008:12:11:02 +0200] [cups-deviced] Added device "scsi"...
- D [14/Apr/2008:12:11:02 +0200] PID 3291 (/usr/lib/cups/daemon/cups-deviced) exited with no errors.
- D [14/Apr/2008:12:11:02 +0200] [CGI] Got device list!
- D [14/Apr/2008:12:11:02 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
- D [14/Apr/2008:12:11:02 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
- D [14/Apr/2008:12:11:02 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
- D [14/Apr/2008:12:11:02 +0200] cupsdCloseClient: 9
- D [14/Apr/2008:12:11:02 +0200] PID 3290 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
- D [14/Apr/2008:12:11:03 +0200] cupsdReadClient: 8 POST /admin HTTP/1.1
- D [14/Apr/2008:12:11:03 +0200] cupsdAuthorize: No authentication data provided.
- D [14/Apr/2008:12:11:03 +0200] [CGI] /usr/lib/cups/cgi-bin/admin.cgi started - PID = 3308
- I [14/Apr/2008:12:11:03 +0200] Started "/usr/lib/cups/cgi-bin/admin.cgi" (pid=3308)
- D [14/Apr/2008:12:11:03 +0200] cupsdSendCommand: 8 file=11
- D [14/Apr/2008:12:11:03 +0200] [CGI] admin.cgi started...
- D [14/Apr/2008:12:11:03 +0200] cupsdAcceptClient: 9 from localhost (Domain)
- D [14/Apr/2008:12:11:03 +0200] [CGI] http=0x807a4f8
- D [14/Apr/2008:12:11:03 +0200] [CGI] op="add-printer"...
- D [14/Apr/2008:12:11:03 +0200] [CGI] do_am_printer: DEVICE_URI="socket"
- D [14/Apr/2008:12:11:03 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
- D [14/Apr/2008:12:11:03 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
- D [14/Apr/2008:12:11:03 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
- D [14/Apr/2008:12:11:03 +0200] cupsdCloseClient: 9
- D [14/Apr/2008:12:11:03 +0200] PID 3308 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
- D [14/Apr/2008:12:11:08 +0200] cupsdReadClient: 8 POST /admin HTTP/1.1
- D [14/Apr/2008:12:11:08 +0200] cupsdAuthorize: No authentication data provided.
- D [14/Apr/2008:12:11:08 +0200] [CGI] /usr/lib/cups/cgi-bin/admin.cgi started - PID = 3309
- I [14/Apr/2008:12:11:08 +0200] Started "/usr/lib/cups/cgi-bin/admin.cgi" (pid=3309)
- D [14/Apr/2008:12:11:08 +0200] cupsdSendCommand: 8 file=11
- D [14/Apr/2008:12:11:08 +0200] [CGI] admin.cgi started...
- D [14/Apr/2008:12:11:08 +0200] cupsdAcceptClient: 9 from localhost (Domain)
- D [14/Apr/2008:12:11:08 +0200] [CGI] http=0x807a4f8
- D [14/Apr/2008:12:11:08 +0200] [CGI] op="add-printer"...
- D [14/Apr/2008:12:11:08 +0200] [CGI] do_am_printer: DEVICE_URI="socket://X.X.X.X|infotec IS2045"
- D [14/Apr/2008:12:11:08 +0200] cupsdReadClient: 9 POST / HTTP/1.1
- D [14/Apr/2008:12:11:08 +0200] cupsdAuthorize: No authentication data provided.
- D [14/Apr/2008:12:11:08 +0200] CUPS-Get-PPDs ipp://localhost/printers/
- D [14/Apr/2008:12:11:08 +0200] [CGI] /usr/lib/cups/daemon/cups-driverd started - PID = 3310
- I [14/Apr/2008:12:11:08 +0200] Started "/usr/lib/cups/daemon/cups-driverd" (pid=3310)
- D [14/Apr/2008:12:11:08 +0200] cupsdSendCommand: 9 file=12
- E [14/Apr/2008:12:11:08 +0200] [cups-driverd] Unable to open PPD directory "/usr/share/cups/model": No such file or directory
- E [14/Apr/2008:12:11:08 +0200] [cups-driverd] Unable to open PPD directory "/opt/share/ppd": No such file or directory
- D [14/Apr/2008:12:11:08 +0200] [cups-driverd] requested-attributes="all"
- D [14/Apr/2008:12:11:08 +0200] [cups-driverd] ppd-make="infotec"
- D [14/Apr/2008:12:11:08 +0200] PID 3310 (/usr/lib/cups/daemon/cups-driverd) exited with no errors.
- D [14/Apr/2008:12:11:08 +0200] cupsdReadClient: 9 POST / HTTP/1.1
- D [14/Apr/2008:12:11:08 +0200] cupsdAuthorize: No authentication data provided.
- D [14/Apr/2008:12:11:08 +0200] CUPS-Get-PPDs ipp://localhost/printers/
- D [14/Apr/2008:12:11:08 +0200] [CGI] /usr/lib/cups/daemon/cups-driverd started - PID = 3311
- I [14/Apr/2008:12:11:08 +0200] Started "/usr/lib/cups/daemon/cups-driverd" (pid=3311)
- D [14/Apr/2008:12:11:08 +0200] cupsdSendCommand: 9 file=12
- E [14/Apr/2008:12:11:08 +0200] [cups-driverd] Unable to open PPD directory "/usr/share/cups/model": No such file or directory
- E [14/Apr/2008:12:11:08 +0200] [cups-driverd] Unable to open PPD directory "/opt/share/ppd": No such file or directory
- D [14/Apr/2008:12:11:08 +0200] [cups-driverd] requested-attributes="ppd-make"
- D [14/Apr/2008:12:11:08 +0200] [cups-driverd] Sending lsb/usr/cups-included/Dymo/dymo.ppd (Dymo Label Printer, 1.3)...
- D [14/Apr/2008:12:11:08 +0200] [cups-driverd] Sending lsb/usr/cups-included/Epson/epson9.ppd (Epson 9-Pin Series, 1.3)...
- D [14/Apr/2008:12:11:08 +0200] [cups-driverd] Sending lsb/usr/cups-included/postscript.ppd (Generic PostScript Printer)...
- D [14/Apr/2008:12:11:08 +0200] [cups-driverd] Sending lsb/usr/gs-esp/model/pxlcolor.ppd (HP Color LaserJet Series PCL 6 CUPS)...
- D [14/Apr/2008:12:11:08 +0200] [cups-driverd] Sending lsb/usr/cups-included/Intellitech/intelbar.ppd (Intellitech IntelliBar Label Printer, 1.3)...
- D [14/Apr/2008:12:11:08 +0200] [cups-driverd] Sending lsb/usr/cups-included/Oki/okidata9.ppd (Oki 9-Pin Series, 1.3)...
- D [14/Apr/2008:12:11:08 +0200] [cups-driverd] Sending raw (Raw Queue)...
- D [14/Apr/2008:12:11:08 +0200] [cups-driverd] Sending lsb/usr/cups-included/Zebra/zebracpl.ppd (Zebra CPCL Label Printer, 1.3)...
- D [14/Apr/2008:12:11:08 +0200] PID 3311 (/usr/lib/cups/daemon/cups-driverd) exited with no errors.
- D [14/Apr/2008:12:11:08 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
- D [14/Apr/2008:12:11:08 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
- D [14/Apr/2008:12:11:08 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
- D [14/Apr/2008:12:11:08 +0200] cupsdCloseClient: 9
- D [14/Apr/2008:12:11:08 +0200] PID 3309 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
- D [14/Apr/2008:12:11:12 +0200] cupsdReadClient: 8 POST /admin HTTP/1.1
- D [14/Apr/2008:12:11:12 +0200] cupsdAuthorize: No authentication data provided.
- D [14/Apr/2008:12:11:12 +0200] [CGI] /usr/lib/cups/cgi-bin/admin.cgi started - PID = 3312
- I [14/Apr/2008:12:11:12 +0200] Started "/usr/lib/cups/cgi-bin/admin.cgi" (pid=3312)
- D [14/Apr/2008:12:11:12 +0200] cupsdSendCommand: 8 file=11
- D [14/Apr/2008:12:11:12 +0200] [CGI] admin.cgi started...
- D [14/Apr/2008:12:11:12 +0200] cupsdAcceptClient: 9 from localhost (Domain)
- D [14/Apr/2008:12:11:12 +0200] [CGI] http=0x807a4f8
- D [14/Apr/2008:12:11:12 +0200] [CGI] op="add-printer"...
- D [14/Apr/2008:12:11:12 +0200] [CGI] do_am_printer: DEVICE_URI="socket://X.X.X.X"
- D [14/Apr/2008:12:11:12 +0200] [CGI] file->tempfile=/var/spool/cups/tmp/48032dc0ea09d
- D [14/Apr/2008:12:11:12 +0200] [CGI] file->name=PPD_FILE
- D [14/Apr/2008:12:11:12 +0200] [CGI] file->filename=Infotec-IS2045_PXL.ppd
- D [14/Apr/2008:12:11:12 +0200] [CGI] file->mimetype=application/octet-stream
- D [14/Apr/2008:12:11:12 +0200] cupsdReadClient: 9 POST /admin/ HTTP/1.1
- D [14/Apr/2008:12:11:12 +0200] cupsdAuthorize: No authentication data provided.
- D [14/Apr/2008:12:11:12 +0200] CUPS-Add-Modify-Printer ipp://localhost/printers/Copieur
- D [14/Apr/2008:12:11:12 +0200] cupsdIsAuthorized: username=""
- E [14/Apr/2008:12:11:12 +0200] CUPS-Add-Modify-Printer: Unauthorized
- D [14/Apr/2008:12:11:12 +0200] cupsdSendError: 9 code=401 (Unauthorized)
- D [14/Apr/2008:12:11:12 +0200] cupsdSendHeader: WWW-Authenticate: Basic realm="CUPS"
- D [14/Apr/2008:12:11:12 +0200] [CGI] cgi_passwd(prompt="Mot de passe pour lp sur localhost? " ) called!
- D [14/Apr/2008:12:11:12 +0200] cupsdSendError: 8 code=426 (Upgrade Required)
- D [14/Apr/2008:12:11:12 +0200] cupsdCloseClient: 8
- D [14/Apr/2008:12:11:12 +0200] cupsdCloseClient: 9
- D [14/Apr/2008:12:11:12 +0200] PID 3312 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
|
Message édité par jaymzwise le 14-04-2008 à 12:14:35
|