Information AboutRsh |
|
rsh ('''''r'''emote '''sh'''ell'') is a Command Line Computer Program which can execute Shell Command s as another user, and on another computer across a Computer Network . The remote system on which the rsh executes the command needs to be running the '''rshd''' Daemon . rsh originated as part of the Unix Operating System , along with Rcp , as part of the Rlogin Package on Berkeley Software Distribution version 4.2 in 1983 . rsh has since been ported to other operating systems. As described in the Rlogin article, the rsh Protocol is not Secure for network use, because it sends Unencrypted Information over the network, among other things. Some implementations also Authenticate by sending unencrypted Password s over the network. rsh has largely been replaced by the very similar Ssh (''secure shell'') program on untrusted networks like the Internet . As an example of rsh use, the following executes the command ''mkdir testdir'' as user ''remoteuser'' on the computer ''remotecomputer.com'': rsh -l remoteuser remotecomputer.com "mkdir testdir" After the command has finished rsh terminates. If no command is specified then rsh will log in on the remote system using Rlogin . The network location of the remote computer is looked up using the Domain Name System . REFERENCES
|