$ssh -f -N -D 0.0.0.0:80 localhost
Permission denied (publickey).
我的目录中没有任何内容~/.ssh
。
我已以 root 身份登录。
答案1
您需要先创建密钥对。请执行以下操作:
ssh-keygen -t dsa
cat ~/.ssh/id_dsa.pub >> ~/.ssh/authorized_keys
chmod 600 ~/.ssh/authorized_keys
$ssh -f -N -D 0.0.0.0:80 localhost
Permission denied (publickey).
我的目录中没有任何内容~/.ssh
。
我已以 root 身份登录。
您需要先创建密钥对。请执行以下操作:
ssh-keygen -t dsa
cat ~/.ssh/id_dsa.pub >> ~/.ssh/authorized_keys
chmod 600 ~/.ssh/authorized_keys