SSH Problem after install

zpnd

New member
Joined
Apr 15, 2009
Messages
4
Hi,

I can't start ssh daemon since i installed the directadmin because it can't create rsa1 key. I tried to create manually with ssh-keygen but i get 'ssh: symbol lookup error: ssh: undefined symbol: FIPS_mode' error.

I get same error while creating RSA and DSA keys but file was created. It's not working for RSA1 key.

Also ssh client can't connect outside. When i try to connect i'm getting "ssh: symbol lookup error: ssh: undefined symbol: FIPS_mode" again.

Please help. It's urgent.
 
OS is CentOS 5.2 Final.

I resolve the problem through editing sshd script. So RSA1 key still doesn't exist.
 
I suppose /etc/rc.d/init.d/sshd was meant. You might want to change

Code:
start()
{
        # Create keys if necessary
        do_rsa1_keygen

to

Code:
start()
{
        # Create keys if necessary
        ##-- do_rsa1_keygen


Note, I don't know which drawbacks can it bring to.
 
Back
Top