无法通过 SSH 连接到数字海洋新 Droplet

Can't SSH to digital ocean new droplet

我正在尝试通过 SSH 连接到我的 Digital ocean droplet,但它显示以下错误。

ssh: connect to host xxx.xx.xxx.x port 22: Operation timed out

我已经尝试过以下命令。没有任何效果。

sudo ufw disable
sudo ufw allow ssh
sudo ufw enable
sudo ufw status

我已经设置了 SSH 密钥。

使用以下命令允许 22 端口

sudo ufw allow 22

如果您的 Droplet 的 IP 是 ${DROPLET} 并且您的 Digital Ocean SSH 私钥的位置是 ${IDENTITY},那么您应该能够:

ssh -i ${IDENTITY} root@${IP}