On Mon, Oct 22, 2001 at 05:54:26PM +0200, Lucian Stroe wrote:
> 
> Hello all,
> 
> I just installed RH7.1 last week and I have the same problem: telnet works
> FROM my PC to outside, but not TO my PC. 
> 
> I've read today the mailing archive and I found the same problem in some
> other mails. Unfortunately it seems that my case is out-of-normal and I
> will explain why:
> 
> - telnet IS running, the command "netstat -ta" gives me 
> 
> tcp  0  0 pc259.lnl.infn.it:32838 pciris.lnl.infn.:telnet ESTABLISHED
> 
> - in the various messages I've read about this problem, the solution was
> almost always of type "edit the file /etc/xinitd.d/telnet and...." BUT I
> DON'T HAVE THIS FILE!!!
> 
> - almost always, the solution also includes the part 
> "/sbin/service xinitd restart" or sometimes "/etc/init.d/xinetd restart"
> BUT /sbin/service SAYS "xinetd: unrecognized service" AND I DON'T HAVE ANY
> xinitd FILE IN MY /etc/init.d/ DIRECTORY!!!
> 
> - don't reply using the question "why don't you use ssh instead?" because
> the same thing happens for the ssh too.
> 
> My question is: is there something wrong with my RedHat 7.1? And, if YES,
> WHY??
> 
> Dr. Lucian Stroe
> 
> INFN - Legnaro National Laboratories, Legnaro, ITALY
Ok below is the xinetd.d file for telnet:
# default: on
# description: The telnet server serves telnet sessions; it uses \
#       unencrypted username/password pairs for authentication.
service telnet
{
        disable = no
        flags           = REUSE
        socket_type     = stream
        wait            = no
        user            = root
        server          = /usr/sbin/in.telnetd
        log_on_failure  += USERID
}

You restart xinitrd by finding its pid so:
ps aux |grep xinetd
then use the kill:
kill -SIGUSR2 <pid>

There is another way to restart xinetd but I can't remember it right
now.
-- 
-------------------------------------------
Aaron Konstam
Computer Science
Trinity University
715 Stadium Dr.
San Antonio, TX 78212-7200

telephone: (210)-999-7484
email:[EMAIL PROTECTED]



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

Reply via email to