Linux - ServerThis forum is for the discussion of Linux Software used in a server related context.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Do you know for sure that telnet has been installed on your system? If not then install it. Also look for the telnet file inside xinet.d and see if it has been disabled. By default it is. You need to enable the service. But for security reasons, use ssh. Telnet is highly insecure. Do you have any specific reason for using telnet?
Distribution: On my PC I use RHEL, at office AIX, Solaris, HP-UX, RHEL.
Posts: 254
Original Poster
Rep:
Quote:
Originally Posted by linuxlover.chaitanya
Do you know for sure that telnet has been installed on your system? If not then install it.
Really not sure. But this command works:
Code:
-bash-2.05b# service xinetd status
xinetd (pid 1332) is running...
And this file does exits:
Code:
-bash-2.05b# cat /etc/xinetd.d//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
}
-bash-2.05b#
Quote:
Do you have any specific reason for using telnet?
Nope! Not at all! Some interviewers asked me that question yesterday. And I was.... then said... maybe service telnetd stop would do the work... he repeated... "the service name is telnetd right...?"
So, you know now that I am testing it on my Linux box and learning from my experience I had at the interview.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.