1833780 Members
2200 Online
110063 Solutions
New Discussion

Re: telnet issue!!

 
Amit Manna_6
Regular Advisor

telnet issue!!

HI,
I am doing a telnet from a HP Server to a Linux Server.
I am getting the following error:
telnetd: Failed to contact authentication daemon

Can any body help me out ..
3 REPLIES 3
Steven E. Protter
Exalted Contributor

Re: telnet issue!!

Shalom Amit,

It worked prior today?

What is the pam configuration?

What has recently been changed ont he Linux server?

Has telnet been authorized to run in xinetd on the Linux server. ITs not done by default.

On Linux:
cd /etc/xinetd.d

find the telnet file

vi it.

change

disable = yes

to

disable = no

Restart the xinetd daemon.

service xinetd restart

Try again.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Raj D.
Honored Contributor

Re: telnet issue!!

Good Day Amit ! ,

Check if telnet is disabled in linux side.


Check in /etc/xinet.d/telnet
---------------------
service telnet
{
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
disable = yes
}

----------------------

Make disable = no.


Restart xinted # xinetd restart


Cheers,
Raj.
" If u think u can , If u think u cannot , - You are always Right . "
Amit Manna_6
Regular Advisor

Re: telnet issue!!

telnet is not Disabled on the Linux Side.

# 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 = /opt/boksm/lib/in.telnetd
log_on_failure += USERID