Howto Configure ssh Public Key Exchange on Tru64


    $ cd
    $ ssh-keygen2
    Generating 2048-bit dsa key pair
      15 o..oOo.oOo.o
    Key generated.
    2048-bit dsa, me@server1, Fri Mar 17 2006 12:46:48 -0600
    Passphrase :
    Again      :
    [...stern warning about null passwords...]
    Private key saved to ~/.ssh2/id_dsa_2048_a
    Public key saved to ~/.ssh2/id_dsa_2048_a.pub
    $ cd .ssh2
    $ echo "idkey id_dsa_2048_a" >>identification
    $ chmod 0600 identification
    $ scp id_dsa_2048_a.pub server2:.ssh2/id_dsa_2048_a.pub
    $ ssh server2
    [...new host key, blah, blah...]
    $ cd .ssh2
    $ echo "key id_dsa_2048_a.pub" >>authorization
    $ ^D
    $# now back on server1
    $ ssh server2
    [...hopefully it worked...]


date: 03/17/2006