lost and found ( for me ? )

BackTrack Linux 4 : sshd

sshd を起動したら下記のエラーが出た。
原因は rsa , dsa key がないから。

鍵作るの面倒だなーって思って、アンインストール、インストールしたら、鍵を作ってくれた。

root@bt:/etc/ssh# /etc/init.d/ssh restart
Could not load host key: /etc/ssh/ssh_host_rsa_key
Could not load host key: /etc/ssh/ssh_host_dsa_key
Restarting OpenBSD Secure Shell server: sshdCould not load host key: /etc/ssh/ssh_host_rsa_key
Could not load host key: /etc/ssh/ssh_host_dsa_key

鍵がない

root@bt:/etc/ssh# ls /etc/ssh/
moduli       ssh_config   sshd_config

アンインストール -> インストール

root@bt:/etc/ssh#  apt-get remove openssh-server
root@bt:/etc/ssh#  apt-get install openssh-server

鍵ができた

root@bt:/etc/ssh# ls /etc/ssh/
moduli                ssh_host_dsa_key.pub  sshd_config
ssh_config            ssh_host_rsa_key
ssh_host_dsa_key      ssh_host_rsa_key.pub

root@bt:~# /etc/init.d/ssh restart
Restarting OpenBSD Secure Shell server: sshd.

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.