From 598b4e5f3c9818f31570501d5b57f206338f35c3 Mon Sep 17 00:00:00 2001 From: zyimm Date: Mon, 31 Oct 2022 16:31:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0ssh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _posts/Linux/ssh/ssh-password-free-login.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/_posts/Linux/ssh/ssh-password-free-login.md b/_posts/Linux/ssh/ssh-password-free-login.md index 878c855..ddaf288 100644 --- a/_posts/Linux/ssh/ssh-password-free-login.md +++ b/_posts/Linux/ssh/ssh-password-free-login.md @@ -65,32 +65,32 @@ Host zyimm IdentityFile file_key ``` -### HostName +#### HostName 需要ssh连接过去的主机名,一般是IP地址。 -### User +#### User 登录主机的用户名 -### IdentityFile +#### IdentityFile 认证证书文件,默认位置是~/.ssh/id_rsa, ~/ssh/id_dsa等,如果采用默认的证书,可以不用设置此参数,除非你的证书放在某个自定义的目录,那么你就需要设置该参数来指向你的证书 -### Port +#### Port SSH访问主机的端口号,默认是22端口,同上,只有在非默认情况下才需要设置该值 -## 4 使用 +### 4 使用 ```sh ssh zyimm # 即可免密登陆192.168.1.1服务器了 ``` 如果使用vscode 建议下载 Remote-ssh 扩展,搭配使用更舒服! -## 5 调试 +### 5调试 如果在上面步骤操作完之后,仍然出现一些问题,可以在命令中带上-v以便定位问题 ```sh