Results 1 to 4 of 4
hello
i need assistance.
i am setting up a connection between AIX and a linux box with a user called backbone.
backbone will login to the linux box vi ssh.
...
- 10-25-2011 #1Just Joined!
- Join Date
- Oct 2011
- Posts
- 1
setting up ssh between AIX and Linux box
hello
i need assistance.
i am setting up a connection between AIX and a linux box with a user called backbone.
backbone will login to the linux box vi ssh.
that is : ssh -i /home/backbone/.ssh/transpdf backrec IP
now the above command should not ask for a password but for me it does.
i created the ssh key and did send the public key to the other server but still the command below is asking for a password.
what am i doing wrong
chucktalors
- 10-25-2011 #2
Is your ssh server set up for Public Key authorization?
You may also want to check the permissions of the private key on the server. If its world-readable or executable it will throw a fit. I usually chmod the directory to 700 and the file to 600.Code:/etc/ssh/sshd_config PubkeyAuthentication yes AuthorizedKeysFile .ssh/authorized_keys
linux user # 503963
- 10-26-2011 #3
- 10-26-2011 #4Linux User
- Join Date
- Jan 2005
- Location
- Saint Paul, MN
- Posts
- 262
Unless of course your current username is "backbone".Code:ssh -i /home/backbone/.ssh/transpdf backrec backbone@IP


Reply With Quote
