ssh connectivity problem


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting ssh connectivity problem
# 1  
Old 08-27-2008
Network 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 password

but when i am trying to create ssh keys from server C to server A i am not able to connect without passowrd(eventhough it seems everything fine)..

i created keys using below steps (server A to server B)

ssh-keygen -t rsa
ssh b@B mkdir -p .ssh
cat .ssh/id_rsa.pub | ssh b@B 'cat >> .ssh/authorized_keys'
ssh b@B hostname

My question here is ...

is there anything else that i need to check for connectivity problem..
because everything seems fine.(whatever i did the same i did for server c also )

can anyone suggestme plz..

Thanks
Sha
# 2  
Old 08-27-2008
Do you have the same SSH version on all three?
# 3  
Old 08-27-2008
Thanks for the quick replay Smilie

I belive yes..

also i am afraid if you could explain me how to check the version for ssh..

one thing here is ..i am able to connect server C from server A (ssh) without password.- i tried to creat key in reverse manner( server A to server C )

only from server c to server A i could not ...


Thanks
Sha
# 4  
Old 08-28-2008
Bug

Hi,

I just found the ssh version for server C and server A

server C version is

OpenSSH_3.9p1, OpenSSL 0.9.7a Feb 19 2003

and server A version is

OpenSSH_3.6.1p2, SSH protocols 1.5/2.0, OpenSSL 0x0090701f

now can anyone tell me..
i want to connect server A from server C using ssh without password.

do i need to use some different command for key generation(public and private key)

or any suggestion for the below steps

ssh-keygen -t rsa
ssh b@B mkdir -p .ssh
cat .ssh/id_rsa.pub | ssh b@B 'cat >> .ssh/authorized_keys'
ssh b@B hostname


Suggestion would be much appreciate..

Thanks
Sha
# 5  
Old 08-28-2008
Hi u r trying to use finger print keys to login onto server without asking password

u have generate the keys first and then copy that authorized key sin the authorized key location in which u want to login without password .

it works.
# 6  
Old 08-28-2008
Thanks ...

sorry i did not get exactly..

you want me to create key(public and private keys) in server C and also you want me to copy the authorized keys from server C to server A..

here is my quesion.. Smilie

can you help me to findout the correct location in server A..

is there any specific location like sample... eg: /etc/ssh/

where do i need to place the authorized key in server A..

Thanks in advance

Sha
# 7  
Old 08-29-2008
SSH Authorized keys

Quote:
Originally Posted by Shahul
Thanks ...

sorry i did not get exactly..

you want me to create key(public and private keys) in server C and also you want me to copy the authorized keys from server C to server A..

here is my quesion.. Smilie

can you help me to findout the correct location in server A..

is there any specific location like sample... eg: /etc/ssh/

where do i need to place the authorized key in server A..

Thanks in advance

Sha
**
cd .ssh and then touch authorized_keys ( this file u have to create & copy onto this )
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

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. UNIX for Dummies Questions & Answers

Internet connectivity problem

Hello fellow users and enthusists. I am in need of assistance. I have installed Solaris 10 on a Gateway AMD Athlon 64 system. It is set up to dual boot with Windows 7. I am attempting to get internet access through another Windows 7 box, which is sharing its wireless internet connection with... (0 Replies)
Discussion started by: jl2215
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. IP Networking

Connectivity problem in two servers.

HI I have made a connection with external server which is also UNIX. I was tryign connectivity with this by telnet which fails and ping i sshowing socket is alive and traceroute tells the asterisk astersik:traceroute to 153.88.182.28 (153.88.182.28), 30 hops max, 8080 byte packets 1 * * * 2 *... (1 Reply)
Discussion started by: nixhead
1 Replies

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

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

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

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