Robyn Hood n00b
Joined: 14 Nov 2003 Posts: 41 Location: Nottingham
|
Posted: Thu Apr 15, 2004 2:08 pm Post subject: cups - lpstat: get-jobs failed: client-error-forbidden |
|
|
I've got one machine with a printer attatched, running cupsd. The printer is set up and working perfectly with cups.
I've got a second machine also running cupsd. I'm able to set printers up on this machine which point to the remote printers on the other machine and this works perfectly.
But what I'm trying to do is point the second machine to the the first machine's server using:
in /etc/cups/client.conf.
however this gives me the following error message when using lpstat:
Code: | lpstat: get-jobs failed: client-error-forbidden |
I can log onto the first machine's web interface using my browser and supplying a user name and password, and the server on the second machine has no problems passing print jobs to the server on the first, so what's preventing the client from comunicating directly with the server on the first machine?
This is what the end of /etc/cups/cupsd.conf looks like on the first machine:
Code: | ...
<Location />
Order Deny,Allow
Deny From All
Allow From 127.0.0.1
Allow From @eth2
</Location>
<Location /jobs>
AuthType Basic
AuthClass System
</Location>
<Location /printers>
</Location>
<Location /admin>
AuthType Basic
AuthClass System
</Location> |
|
|