Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

access tu cups via http://debian:631 from LAN

Linux Kernel, Network, and Services configuration.
Post Reply
Message
Author
cc
Posts: 820
Joined: 2005-06-08 19:14

access tu cups via http://debian:631 from LAN

#1 Post by cc »

hi

howto configure Sarge Stable to access to cups via http://debian:631
from other computers in LAN ?

I've setup in /etc/cups/cupsd.conf

## Restrict access to local domain
Order Deny,Allow
Deny From All
Allow From 127.0.0.1 192.168.0.0/24

but it doesn't work.

kind regards
cccc

lacek
Posts: 764
Joined: 2004-03-11 18:49
Location: Budapest, Hungary
Contact:

#2 Post by lacek »

Try to put the Allow... directives to separate lines, like:

Code: Select all

Order Deny,Allow
Deny From All
Allow From 127.0.0.1
Allow From 192.168.0.0/24

Guest

#3 Post by Guest »

hi

I changed, but still doesn't work.

greetings
cc

cc
Posts: 820
Joined: 2005-06-08 19:14

#4 Post by cc »

this problem is solved now !

after:

Code: Select all

<Location />
Order Deny,Allow
Deny From All
Allow From 127.0.0.1 
Allow From 192.168.0.0/24
</Location>
in /etc/cups/cupsd.conf , it works well.

greetings
cc

Post Reply