[an error occurred while processing this directive]

  • confused rsa keys
    By : anonymous ( Wed May 18 05:22:06 2005 )

    The instructions for rsa protocol 1 and 2 keys should along the lines of the following; and the '#protocol 2,1' doesn't need to be uncommented (it's the default setting).


    Create a public key pair to support the version 2 protocol with RSA

    # /usr/local/bin/ssh-keygen -b 1024 -f /usr/local/etc/ssh_host_rsa_key -t rsa -N ""
    Generating public/private rsa key pair.
    Your identification has been saved in /usr/local/etc/ssh_host_rsa_key.
    Your public key has been saved in /usr/local/etc/ssh_host_rsa_key.pub.
    The key fingerprint is:
    8e:b0:1d:8a:22:f2:d2:37:1f:92:96:02:e8:74:ca:ea root@solaris8

    Create a public key pair to support the old, RSA-based version 1 protocol

    # /usr/local/bin/ssh-keygen -b 1024 -f /usr/local/etc/ssh_host_key -t rsa1 -N ""
    Generating public/private rsa1 key pair.
    Your identification has been saved in /usr/local/etc/ssh_host_key.
    Your public key has been saved in /usr/local/etc/ssh_host_key.pub.
    The key fingerprint is:
    8e:b0:1d:8a:22:f2:d2:37:1f:92:96:02:e8:74:ca:ea root@solaris8

    Return to article...[an error occurred while processing this directive]