Posts by armStoneA5_20140121

    I dont't know if it is the right solution, but I did the following to fix this problem. After boot I logged in as root and entered the following commands. First I mounted the filesystem read-write to enable storage of generated keys


    Code
    1. mount -o remount,rw /


    Then I executed the following commands from the startup script file /etc/S50sshd to generate the keys:


    Code
    1. /usr/bin/ssh-keygen -t rsa1 -f /etc/ssh_host_key -C '' -N ''
    2. /usr/bin/ssh-keygen -t rsa -f /etc/ssh_host_rsa_key -C '' -N ''
    3. /usr/bin/ssh-keygen -t dsa -f /etc/ssh_host_dsa_key -C '' -N ''
    4. /usr/bin/ssh-keygen -t ecdsa -f /etc/ssh_host_ecdsa_key -C '' -N ''


    This fixed the problem for me.