错误处理

Could not load host key: /etc/ssh/ssh_host_ecdsa_key
Could not load host key: /etc/ssh/ssh_host_ed25519_key
错误的原因是因为SSH密钥的加密方式错误

# 正确代码 用ecdsa加密方式生成ssh密钥
ssh-keygen -t ecdsa -P '' -f /etc/ssh/ssh_host_ecdsa_key
ssh_keygen -t ed25519 -P '' -f /etc/ssh/ssh_host_ed25519_key