1753884 Members
7347 Online
108809 Solutions
New Discussion юеВ

Telnet

 
SOLVED
Go to solution
Anjaneyulu
Frequent Advisor

Telnet

Hi, I need to know about these things

Telnet,rlogin,rcp,rsh,ssh,scp

Which daemons are must running to login these commands?

If you have any document Please forward me.
4 REPLIES 4
Laurent Menase
Honored Contributor

Re: Telnet

telnet, rlogin, rcp, rsh it is inetd with
the following services

telnet -> telnet starting telnetd
rlogin -> login starting rlogind
rcp, rsh-> shell starting remshd
rexec -> exec starting rexecd

for ssh/scp it is sshd which is the daemon
OldSchool
Honored Contributor

Re: Telnet

ssh / scp rely on the Secure Shell package being installed and configured, and sshd must be running on the destination.

Telnet requires telnetd be up and running in the destination.

rlogin requires rlogind be runing.

Note:
generally, if ssh / sftp / scp are installed, then telnet / rlogin / rcp and remsh would be disabled.

Refer to the man pages, /etc/services and /etc/inetd.conf for more info
Jeeshan
Honored Contributor

Re: Telnet

>>Telnet,rlogin,rcp,rsh

check in /etc/inetd.conf

>>scp,ssh

check in /etc/opt/ssh/sshd_config
a warrior never quits
Laurent Menase
Honored Contributor
Solution

Re: Telnet

docs are:

man inetd
man inetd.conf
man telnetd
man rlogind
man remshd ( for rcp and remsh since both are using remshd)
man sshd
man sshd_config

everything is above
what other type of info are you looking for?