View Single Post

  #2 (permalink)  
Old 01-18-2006, 08:55 PM
tom tom is offline
Contributors
User
 
Join Date: Jun 2005
Location: London, UK
Posts: 213
Rep Power: 4
tom is on a distinguished road
Default

It is easy to setup ssh keys and you only need to type two commands.

First, create a ssh keys on local freebsd system (do not assign pass phrase key when asked)
Quote:
ssh-keygen -t rsa
Use scp to copy .ssh/id_rsa.pub file (key) to remote linux/freebsd server:
Code:
scp .ssh/id_rsa.pub you@remote.server.com:.ssh/authorized_keys2
Now test it i.e. login from your local FreeBSD to remote server w/o password:
Reply With Quote