1818IP-服务器技术教程,云服务器评测推荐,服务器系统排错处理,环境搭建,攻击防护等

当前位置:首页 - Linux系统 - centos - 正文

君子好学,自强不息!

Centos使用密钥对验证登录SSH

2023-02-25 | centos | admin | 6152°c
A+ A-

CentOS  默认已安装SSH ,配置文件 在/etc/ssh/ 目录 下  有ssh_config  和sshd_config

ssd_config 是客户端配置文件  sshd_config 是服务端配置文件

一:SSH默认是只有ROOT用户可以登录,怎么样 开启普通用户:xiang 可以用SSH登录了? 同时禁用ROOT登录?

vi编辑 sshd_config 文件

[root@localhost ~]# vi /etc/ssh/sshd_config
PermitRootLogin no                        #禁用root用户登录

二:构建密钥对验证SSH登录系统

1:客户机配置(192.168.1.111)

[root@localhost ~]# ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):    # 直接回车
Created directory ‘/root/.ssh’.
Enter passphrase (empty for no passphrase):                  # 密码短信 用于保护私钥文件
Enter same passphrase again:
Passphrases do not match.  Try again.
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
6d:eb:29:87:e2:f9:be:84:9d:a2:c0:51:e9:66:4c:ea root@localhost.localdomain        #会生成两个文件
[root@localhost ~]# ll -h ~/.ssh/
总计 8.0K
-rw——- 1 root root 1.8K 11-21 23:24 id_rsa
-rw-r–r– 1 root root  408 11-21 23:24 id_rsa.pub

id_rsa 是私钥    id_rsa.pub 是公钥

上传公钥到给服务器

2:服务器配置(192.168.1.114)

[root@localhost ~]# scp root@192.168.1.111:/root/.ssh/id_rsa.pub ./
root@192.168.1.111′s password:
id_rsa.pub                                                                    100%  408    0.4KB/s  00:00
[root@localhost ~]#
[root@localhost ~]# cp id_rsa.pub ~xiang005/.ssh/
[root@localhost .ssh]# ll
总用量 4
-rw-r–r– 1 root root 408 11月 22 00:08 id_rsa.pub
[root@localhost .ssh]# cat id_rsa.pub > authorized_keys
[root@localhost .ssh]# vi /etc/ssh/sshd_config
PubkeyAuthentication yes
AuthorizedKeysFile      .ssh/authorized_keys
PasswordAuthentication no
[root@localhost .ssh]# service sshd restart
停止 sshd:[确定]
正在启动 sshd:[确定]

3:在客户机上验证

[root@localhost .ssh]# ssh xiang005@192.168.1.114

Enter passphrase for key ‘/root/.ssh/id_rsa’:

Last login: Wed Nov 21 23:14:53 2012 from 192.168.1.115

[xiang005@localhost ~]$

成功~~!

本文来源:1818IP

本文地址:https://www.1818ip.com/post/32848.html

免责声明:本文由用户上传,如有侵权请联系删除!

发表评论

必填

选填

选填

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。