Difference between revisions of "Telnet"

From ArmadeusWiki
Jump to: navigation, search
m (Links)
m (Installation)
Line 4: Line 4:
  
 
==Installation==
 
==Installation==
Telnet client and server are installed by default on the standard Armadeus rootfs. (Included in Busybox).
+
Telnet client and server are installed by default on the standard Armadeus rootfs. (Included in Busybox).<br>
Create a user that you will use when connecting through telnet:
+
As it's not a good idea to log in as root through Telnet, create a user that you will use when connecting:
* TBD
+
# adduser guest
 +
Changing password for guest
 +
New password:
 +
Retype password:
 +
Password for guest changed by root
  
 
==Usage==
 
==Usage==

Revision as of 13:27, 6 December 2008

From Wikipedia:
"Telnet (Telecommunication network) is a network protocol used on the Internet or local area network (LAN) connections. It was developed in 1969 beginning with RFC 15 and standardized as IETF STD 8, one of the first Internet standards. Typically, telnet provides access to a command-line interface on a remote machine.
The term telnet also refers to software which implements the client part of the protocol."

Installation

Telnet client and server are installed by default on the standard Armadeus rootfs. (Included in Busybox).
As it's not a good idea to log in as root through Telnet, create a user that you will use when connecting:

# adduser guest
Changing password for guest
New password:
Retype password:
Password for guest changed by root

Usage

Telnet server (telnetd) is launched by inetd when someone is trying to access port 23. This behaviour can be configured in /etc/inetd.conf:

# cat /etc/inetd.conf
23      stream  tcp     nowait  root    /usr/sbin/telnetd telnetd -l /bin/login

If so you just have to launch inetd at the start of your system.


Links