Verifying SSH connectivity in a script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Verifying SSH connectivity in a script
# 1  
Old 11-18-2008
Verifying SSH connectivity in a script

Hi everyone,

I'm trying to write a korne shell script that takes the IP address of a remote server as an argument and logs into that server if RSA key has been setup properly, otherwise exits if RSA key is not set for that server.

I don't want the script to get stuck with Password prompt from the remote server if the RSA key is not correctly set for it.

How do I do that?

Thanks,
omd
# 2  
Old 11-18-2008
Never mind

I needed to set the BatchMode option to yes in ssh_config.

"If set to "yes'', passphrase/password querying will be
disabled..."
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

SSH Connectivity

I am trying to setup a password less connection from a Linux server to Window server and will be using a script to scp a file without using password. Linux Server (source) servername : testlinux id : testbatch Windows Server (Target) servername : testwin id : testwinlogin I copied... (5 Replies)
Discussion started by: dr46014
5 Replies

2. Shell Programming and Scripting

Verifying if a file exist (script shell)

Hello, This is my code: nb_lignes=`wc -l $1 | cut -d " " -f1` for i in $(seq $(($nb_lignes - 1)) ) do machine=`head $1 -n $i | tail -1` machine1=`head $1 -n $nb_lignes | tail -1` ssh root@$machine -x " scp /home/file.txt root@$machine1:/home && rm -r /home/file.txt" done fi ... (2 Replies)
Discussion started by: chercheur857
2 Replies

3. Shell Programming and Scripting

ssh connectivity

Hi i have two servers name as ser1 ser2 with sudo user name "test" I want to ssh to the ser2 without using apassword am login with normal ssh method likes ssh test@ser2 i got the id_rsa.pub from ser1 and pasted int authorized_keys in ser2. and while connecting got one RSA key fingerprint .... (3 Replies)
Discussion started by: ckchelladurai
3 Replies

4. Shell Programming and Scripting

ssh connectivity

Hi, I have two unix servers named as uni115.net uni116.net In both the boxes, I have sudo access to access some file. From uni115.net , I need to login to uni116.net through script And while running my main script , it wont ask the password for login to another machine. How can we do... (1 Reply)
Discussion started by: ckchelladurai
1 Replies

5. UNIX for Advanced & Expert Users

SSH connectivity between two machines with private key

Hi I have two machines Mac1 and Mac2 logging in with same user id and same private key. can anyone let me know how to connect these two machine using ssh . or SCP files to other machine :wall: (1 Reply)
Discussion started by: madankumar
1 Replies

6. Shell Programming and Scripting

Verifying oracle connection from shell script

Hi, Oracle 9.2 Solaris 10 From the shell script ........How can we verify whether oracle connection is successful or not ? Shell script will prompt the user to enter the oracle schema username, password and tns name. So, *how to verify whether oracle connection has been established or... (14 Replies)
Discussion started by: milink
14 Replies

7. UNIX for Advanced & Expert Users

SSH/RCP connectivity error

Hi Team, Hope you will be able to help me out with this problem. Our sun solaris 9 system receives Idoc files from another xxx system through RCP. But before RCP they establish an SSH connection. Since today morning they are not able to establish connection and is getting an error as pasted below... (0 Replies)
Discussion started by: anitha111
0 Replies

8. Shell Programming and Scripting

ssh connectivity problem

Hi All, i have problem with ssh i have three server(linux box) like below server A server B server C i did ssh(Private key & Public key) for passwordls .. i did for server A to Server B connection without any issue now i am able to connect server A to server B without... (6 Replies)
Discussion started by: Shahul
6 Replies

9. UNIX for Advanced & Expert Users

SSH Connectivity script

Hi all, I have developed a script to list out the servers that is not able to connect to the remote host. The problem with this script is it, if the remote server ask for a password it gets struck there. It works only if the server name is invalid Ex: Lets say ssh -q test@test "exit" <... (5 Replies)
Discussion started by: lorcan
5 Replies
Login or Register to Ask a Question