1832853 Members
3195 Online
110047 Solutions
New Discussion

Telnet > ver 8

 
SOLVED
Go to solution
Nobody's Hero
Valued Contributor

Telnet > ver 8

I just installed Linux 8.0 on an E800. I am used to HPUX only. Newbie linux. I need to be able to telnet into the new linux system and remsh. I get a connection refused message. What files do I need to change to allow this option?

10x
RPM
UNIX IS GOOD
5 REPLIES 5
Bruno Vidal
Respected Contributor
Solution

Re: Telnet > ver 8

Hi,
What is your linux distrib ?
It change from each distrib...
There is two things:
-first verify /etc/securetty in case you want to log in using root
-if red-hat check /etc/xinetd.d/telnet and change "disable = yes" to "disable = no" and
then restart xinetd: /etc/rc.d/init.d/xinetd stop and then start

Cheers.
Claudio Cilloni
Honored Contributor

Re: Telnet > ver 8

verify whether the telnet server is installed:

# rpm -qa | grep telnet-server

If you get no output then it isn't installed.
but if it is, edit the file /etc/xinetd.d/telnet
and change the line 'disabled = yes' in 'disabled = no'. Then restart the xinetd demon:

# service xinetd restart.

this should be enough. Ask if you get other problems!

Bye
Claudio
Francisco J. Soler
Honored Contributor

Re: Telnet > ver 8

Hi,

To configure remsh (rsh in linux) you must do similar configuration than HP-UX, edit /etc/hosts.equiv file and add the HP-UX box.

Frank.
Linux?. Yes, of course.
Balaji N
Honored Contributor

Re: Telnet > ver 8

and to enable remsh to work, u need to edit the ~/.rhosts or /etc/hosts.equiv as the case may be.

-balaji
Its Always Important To Know, What People Think Of You. Then, Of Course, You Surprise Them By Giving More.
John Poff
Honored Contributor

Re: Telnet > ver 8

Hi,

Your security settings might be stopping you. Try turning off your iptables.

service iptables stop

JP