LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   ssh users (https://www.linuxquestions.org/questions/linux-software-2/ssh-users-386196/)

mrbabis 11-24-2005 02:35 PM

ssh users
 
how to add new user to ssh server?

do "ssh" need "rshd" running on remote computer?

microsoft/linux 11-24-2005 02:53 PM

you don't need to add a user specifically for ssh. Assuming the machine you're loggin g into has ssh server installed the command you need is
Code:

ssh -l <username> <hostname>
this will let you log in as any user on the remote machine.

If I understand you correctly, you're also asking if ssh need rsh, correct? No, it doesn't, ssh is completely independant of rsh, and a better alternative. Whenever possible, you should be using ssh.

Haiyadragon 11-24-2005 03:40 PM

Beware though. If there are users with very simple passwords (like my father and sister) your computer will be easy to "hack". I happened to me. I now make ssh only available to me (because they don't use it anyway).

mrbabis 11-25-2005 04:22 AM

Does ssh works same way in the windows enviroment?

Haiyadragon 11-25-2005 04:28 AM

Quote:

Originally posted by mrbabis
Does ssh works same way in the windows enviroment?
I can't see how it would. They pretty much phased out anything dos. Maybe with Cygwin or something like that but I haven't a clue about that. Also, I don't think it's possible to run multiple sessions. Just the graphical one on the machine. But again I'm not sure.

mrbabis 11-25-2005 06:52 AM

is it some way to configure ssh so that just one user can access to ssh to remote computer?

microsoft/linux 11-25-2005 10:55 AM

you can use PuTTy in Windows as an ssh client.As far as I know there is no way to ssh into a windows box though. Yes, there is a way to configure ssh so only one user can access it. I think it's in one of the config files.


All times are GMT -5. The time now is 06:59 AM.