Emmanuel Seyman wrote:
----------------->>>>
> Mar 28 16:05:28 nea sshd[795]: received signal 15; terminating.
> Mar 28 16:12:25 nea sshd[780]: Server listening on 0.0.0.0 port 22.

Ssh is running on your machine.

> Mar 28 16:13:54 nea xinetd[1296]: FAIL: sgi_fam libwrap from=0.0.0.0

sgi_fam can't bind to all your network interfaces (probably because
of whatever's in your /etc/hosts.deny) .

You can switch sgi_fam off, change your /etc/hosts.deny or
edit /etc/xinetd.d/sgi_fam to bind only to 127.0.0.1 .
----------------->>>>
Hmm... OK here are the files:

/etc/hosts.deny
---------------
# $Id: hosts.deny,v 1.3 2002/03/23 22:28:35 pnelsonsr Exp $
#-------------------------------------------------------------------------
# Corp hosts.deny       
#-------------------------------------------------------------------------

all:all
---------------

/etc/xinetd.d/sgi_fam
---------------------
# default: on
# description: FAM is a file monitoring daemon. It can \
# be used to get reports when files change.
service sgi_fam
{
        type         = RPC UNLISTED
        socket_type  = stream
        user         = root
        group        = nobody
        server       = /usr/bin/fam
        wait         = yes
        protocol     = tcp
        rpc_version  = 2
        rpc_number   = 391002
        bind         = 127.0.0.1
}
---------------------

what would you suggest I change?



_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to