SSH Connectivity


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting SSH Connectivity
# 1  
Old 10-18-2014
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 the pub key under the testbatch .ssh2 directory to the windows server and put it there under the C:\Users\testwinlogin\.ssh2 and created the authorization file as well.

I was also do a passwordless ssh connection

But this is going to C:\Users\testbatch when i trype ssh testwin

I want to use ssh testwinlogin@testwin and it should go to C:\Users\testwinlogin. How to make it this way ?
# 2  
Old 10-18-2014
did you try this from testlinux?

Code:
cat .ssh/id_rsa.pub | ssh b@B 'cat >> .ssh/authorized_keys'

regards...
# 3  
Old 10-18-2014
Quote:
Originally Posted by dr46014
. . .
But this is going to C:\Users\testbatch when i trype ssh testwin
This is the usual and expected behaviour as it sends the issuing user as the target user.
Quote:
I want to use ssh testwinlogin@testwin and it should go to C:\Users\testwinlogin.
. . .
What happens if you run this command?
# 4  
Old 10-18-2014
When i try to ssh its asking for password and when i give the password its working fine.But i want a passwordless connection
# 5  
Old 10-18-2014
So what's the difference between user "testbatch" and user "testwinlogin" on the target machine? Do they share the same .ssh/authorized_keys file? And, afaik that should be .ssh/, not .ssh2/.
# 6  
Old 10-21-2014
Quote:
Originally Posted by dr46014
But this is going to C:\Users\testbatch when i trype ssh testwin

I want to use ssh testwinlogin@testwin and it should go to C:\Users\testwinlogin. How to make it this way ?
OK sounds like you want the userID to default to testwinlogin on your windws box to do this add the following entries to .ssh/config under testbatch home directory on the linux box (testlinux):

Code:
host testwin
user testwinlogin

Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

SFTP Connectivity

can any one help me in SFTP connectivity? I am supposed to add Keys in my server(service Id). We are using ssh RSA authentication. But I m provided with DSA SSH2 2048 keys. Even after sharing, it didnt work. Please help. (3 Replies)
Discussion started by: dhilipans1988
3 Replies

2. 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

3. IP Networking

Lack of IP Connectivity

Hi Can any one please help identify the issue in scenario 2: Connectivity Diagram: 1) Distribution Switch----Int_Switch----LabSwitch(Fa1/0)----Terminal Ser 2) Distribution Swtich----Int_Swtich----LabSwitch(Fa2/0)----3640 Router ---all links are access links Distribution Switch... (0 Replies)
Discussion started by: sureshcisco
0 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. 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

7. Shell Programming and Scripting

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... (1 Reply)
Discussion started by: omd
1 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