On Thursday 02 October 2003 10:37 pm, someone claiming to be Alan Jackson 
wrote:
> On Thu, 2 Oct 2003 14:15:12 -0400
>
> "Matthew Carpenter" <[EMAIL PROTECTED]> wrote:
> > Is it xinetd?
> > Does it use tcpwrappers of any sort?
> >  (more specifically, are you being blocked by /etc/hosts.deny or
> > /etc/hosts.allow)
> > What do your logs tell you? (/var/log/messages, /var/log/xxxxxxx)
>
> Nothing in /var/log/messages
>
> There was no /etc/hosts.allow or deny (*those* I understand!)
>
> Running CUPS - don't know which port it should be using...
>
> bash-2.05b$ netstat -an
> Active Internet connections (servers and established)
> Proto Recv-Q Send-Q Local Address           Foreign Address         State
> tcp        0      0 0.0.0.0:6000            0.0.0.0:*               LISTEN
> tcp        0      0 0.0.0.0:10000           0.0.0.0:*               LISTEN
> tcp        0      0 0.0.0.0:13045           0.0.0.0:*               LISTEN
> tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN
<snip>
631 is cups
check /etc/cups/cupsd.conf
You probly have to edit that file to allow the local network to get access, 
something like:

<Location />
Order Deny,Allow
Deny From All
Allow From 127.0.0.1
Allow From 192.168.*
</Location>

.... and further down, for admin access...

<Location /admin>
#
# You definitely will want to limit access to the administration functions.
# The default configuration requires a local connection from a user who
# is a member of the system group to do any admin tasks.  You can change
# the group name using the SystemGroup directive.
#

AuthType Basic
AuthClass System

## Restrict access to local domain
Order Deny,Allow
Deny From All
Allow From 127.0.0.1
Allow From 192.168.*

#Encryption Required
</Location>

HTH, 
Tim

-- 
RedHat 8.0 Kernel 2.4.20-20.8,  KDE 3.1.3, Xfree86 4.2.1
 10:55pm  up 5 days, 15:18,  2 users,  load average: 0.02, 0.05, 0.07
It's what you learn after you know it all that counts

_______________________________________________
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc -> http://smtp.linux-sxs.org/mailman/listinfo/linux-users

Reply via email to