1827809 Members
1961 Online
109969 Solutions
New Discussion

telnet

 
aswathanarayan
New Member

telnet

How to configure telnet service in linux
4 REPLIES 4
Ivan Krastev
Honored Contributor

Re: telnet

Enable with:

chkconfig krb5-telnet on

also check /etc/xinetd.d/krb5-telnet for configuration

regards,
ivan
Ivan Krastev
Honored Contributor

Re: telnet

Propper command is:
chkconfig --level 345 krb5-telnet on


In case you don't have a krb5-version of the telnet use:

chkconfig --level 345 telnet on


regards,
ivan
Stuart Browne
Honored Contributor

Re: telnet

...

Make sure the 'telnet-server' package is installed (isn't usually these days), then 'chkconfig telnet on'.

You'll also have to make sure that 'xinetd' is configured to start, with 'chkconfig xinetd on'.

This assumes you're using RedHat/Centos/Fedora or SuSE/OpenSuSE.
One long-haired git at your service...
fushigi
Advisor

Re: telnet


To enable telnet, edit w/c type of linux that you have i.e

/etc/xinetd.d/telnet (for mandrake)
/etc/xinetd.d/krb5-telnet (for RHEL 3)

under "disable" field change yes to no

disable = no

then restart the service.

# service xinetd restart

hope this helps.


regards