SSH login verification


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting SSH login verification
# 1  
Old 03-25-2007
Java SSH login verification

I need to write a script that check users authenting to a particular server

ssh -l [user] [servername]

if sucessfull

echo loggin sucess

else

echo login invalid


Any Suggestions ?
# 2  
Old 03-25-2007
Not sure if i am right,The message while be displayed only upon the successful login using the below command,

ssh -l user hostname "echo login successful"

Thanks
Nagarajan Ganesan.
# 3  
Old 03-25-2007
Thanks for posting, I just want to validate i dont want to login Smilie
# 4  
Old 03-25-2007
But the above command will prompt for password,if the user is authenticated then the echo command is executed on the remote host and exits.It will not establish a sesssion on the remote host.

Thanks
Nagarajan Ganesan.
# 5  
Old 03-26-2007
Thanks Nagraj,

Can I skip the Question
Are you sure you want to continue connecting (yes/no)? yes[/B]

[sriram@unixguy ~]$ ssh -l root 127.0.0.1 "echo login successful"
The authenticity of host '127.0.0.1 (127.0.0.1)' can't be established.
RSA key fingerprint is 8a:57:60:90:49:98:1d:39:50:20:76:f2:5b:cb:a8:4c.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '127.0.0.1' (RSA) to the list of known hosts.
root@127.0.0.1's password:
login successful
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

Need to login without password using ssh

I am using redhat 6.4 and i want to login ssh without password kindly guide me (2 Replies)
Discussion started by: kannansoft1985
2 Replies

2. Solaris

Server login verification

Hi , How to ensure the server i logged in OS cluster ? Is there any command to verify that ? Regards, maddy (5 Replies)
Discussion started by: Maddy123
5 Replies

3. Shell Programming and Scripting

Getting ssh to try login only once

spawn ssh remotehost -l skysmart when the password is incorrect, this will attempt to log in 2 more times, before it exits. is there an option I can pass to ssh that'll make it try only once and will then abort immediately if the password is incorrect? something like: spawn ssh... (1 Reply)
Discussion started by: SkySmart
1 Replies

4. Red Hat

ssh problem could not login

Dear all, I have unknowingly deleted openssh-server on one of my linux boxes... So I could not do ssh in to this machine and also could not scp to it. Now I need to copy and install openssh-server in this box.. How could I do as both ssh and scp is not working. Even FTP is also... (1 Reply)
Discussion started by: jegaraman
1 Replies

5. Shell Programming and Scripting

ssh login

Hi, I am trying to login Server2 from server1 in a shell script and need to perfrom few commands, Below is the command i used to login to server2 from server1 ssh -l username server2 However everytime it executes it asking for password. How do write a script in such way it takes... (1 Reply)
Discussion started by: ch33ry
1 Replies

6. Red Hat

issues with ssh login

I have a Rhel 3 machine. I can login to it through telnet. The config files /etc/ssh/sshd_config and /etc/ssh/ssh_config has not been modified. But the IP address of the system was changed. Could this be issue? It was earlier configured for passwordless login(dsa). I tried moving the... (4 Replies)
Discussion started by: kirtikjr
4 Replies

7. HP-UX

telnet login successful ,but ssh can not login

why I can login by telnet using root account but when i use login by ssh using root account it is not successful ,is it different password i am sure ssh service is started (2 Replies)
Discussion started by: alert0919
2 Replies

8. Shell Programming and Scripting

ssh login help

I would like to login to host and once logged into host would like to run script. i.e "ssh hostname -l username /opt/share/scripts/vol" Can someone please have this run as script .. Many Thanks -sam (1 Reply)
Discussion started by: sam786
1 Replies

9. Red Hat

help with ssh login

hi, to ssh login i give the command.. root@localhost~] # ssh ip_add it allows me to login on a remote machine if i know the password, but i work on wireless network so the ip keeps on changing for the remote machine, how can i access that machine with some unique name , that does not changes.i... (3 Replies)
Discussion started by: ankita tux
3 Replies

10. UNIX for Dummies Questions & Answers

help with ssh login

hi, i have red hat RHEL-5 on my machine, i ma trying to ssh login on remote machine root@localhost~]# ssh ip_address(of remote machine) it works fine if i know the password, i use wireless network so the ip keeps on changing,so is there any way to access the machine with some unique name, which... (1 Reply)
Discussion started by: ankita tux
1 Replies
Login or Register to Ask a Question