Here is what it looks like now... shouldn't this do it? First I just commented out the Deny lines, and it just sat there and said "connecting.... " forever. So then I added the Deny From None lines, thinking that the Order Deny, Allow made it look for a Deny first. Now I'm getting the Network Host Busy error again. I've made two entries with the client, one with the server's name, the other with the IP, just in case that was the problem. Both are acting the same, though. The order of the Allow Froms doesn't really matter, does it? Shouldn't it just be a list of the allowed IPs? hrm... Also, I'll just check, but since I can get different errors, I think I'm doing this right... to restart (and reread the cupsd.conf file) I can just do a service cups restart, right? Thanks owensleftfoot.
<Location /printers/lp0>
Order Deny,Allow
#Deny From All
Deny From None
Allow From 127.0.0.1
Allow From 192.168.1.1
AuthType None
Allow from 192.168.1.1
</Location>
# Lines below are automatically generated - DO NOT EDIT
<Location /printers/deskjet>
Order Deny,Allow
#Deny From All
Deny From None
Allow From 127.0.0.1
Allow From 192.168.1.1
AuthType None
Allow from All
</Location>
<Location />
Order Deny,Allow
#Deny From All
Deny From None
Allow From 127.0.0.1
Allow From 192.168.1.1
</Location>
Browsing On
BrowseProtocols cups
BrowseOrder Deny,Allow
BrowseAllow from @LOCAL
BrowseAddress 255.255.255.255
Listen *:631
Main Topics
Browse All Topics





by: owensleftfootPosted on 2004-10-04 at 01:32:09ID: 12215382
You cant print from your other fedora box because of the Deny ALL, Allow from 127.0.0.1 option. This will only accept jobs from the machine cups is actually running from. If security isnt an issue, you could use Allow from ALL. If you want to limit access to hosts from your own network, you can do this too. If the cups box ip address is 192.168.1.1 you can allow the local network to print with Allow from 192.168.1.*
You probably do need samba for the win98 box to print but it shouldnt be hard. Add the line printing = cups to smb.conf and make sure the [printers] share is uncommented. You'll need to restart cups & samba after making changes.