If you are new to Unixmen, you may want to subscribe : ![]()
![]()
![]()
![]()
|
05 August 2009
Posted in
Linux tutorials -
Frequently Asked Questions
Question : how to install telnet server in Ubuntu/debian ?
Answer :
Download and install telnet server packages
$ sudo apt-get install telnetd
Restart inetd service:
$ sudo /etc/init.d/openbsd-inetd restart
for debian
# /etc/init.d/inetd restart
now yo shoud connect to telnet server from any other computer machine (windows -linux-unix- Mac)
$telnet   IP telnet server
or Telnet
$ telnet  hostname telnet server Related Articles By Tags:
| < Prev | Next > |
|---|


SSH (ssh and sshd) is much, much, much more secure, as telnet sends the password in clear text over the network. No, that is not secure when you have more than one computer on the net. You could as well post your login and password in your window, in large letters.
If you need telnetd, you have more then one computer on your net.
IF you need telnet, just install the client, not the server. And remember that all you write, is in plain text for everyone on all nets between your computer and the target. So do not use telnet for logging in somewhere.
(and the preferd way to restart a service is 'sudo invoke-rc.d telnetd')