ssh 免密登陆和别名登陆

ssh 免密登录

由于需要经常使用自己的笔记本电脑登录教研室的主机电脑进行相关命令的操作,但每次登录都需要输入密码,太麻烦,刚好ssh提供免密登录.

  1. 在个人笔记本电脑上输入:
ermore@ermore:~$ ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/home/ermore/.ssh/id_rsa): 
Enter passphrase (empty for no passphrase): 
Enter same passphrase again: 
Your identification has been saved in /home/ermore/.ssh/id_rsa.
Your public key has been saved in /home/ermore/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:rm61p4TRmVCgPweJT9rFpJUdkpCb8EoDwFt2YOAmZxQ ermore@ermore
The key's randomart image is:
+---[RSA 2048]----+
|ooE+. o+=+..     |
|.ooo.+.Bo..      |
|.o*.+o*oo        |
|o+  o*+= o       |
|   ..o* S        |
|    .  *.        |
|      ..o.       |
|      .o. .      |
|     oo .o       |
+----[SHA256]-----+
ermore@ermore:~$ cd .ssh/
ermore@ermore:~/.ssh$ ls -l
total 12
-rw------- 1 ermore ermore 1675 12月 16 14:00 id_rsa
-rw-r--r-- 1 ermore ermore  395 12月 16 14:00 id_rsa.pub
-rw-r--r-- 1 ermore ermore  444 12月 16 13:35 known_hosts
  1. 生成两个文件 id_rsa(私钥) , id_rsa.pub(公钥) .将该公钥文件传到教研室的电脑上,放到教研室电脑用户(ermore)目录下的.ssh/authorized_keys文件中:
ermore@ermore:~/.ssh$ scp /home/ermore/.ssh/id_rsa.pub [email protected]:~/.ssh/authorized_keys
[email protected]'s password: 
id_rsa.pub                                    100%  395    90.2KB/s   00:00    
ermore@ermore:~/.ssh$ 

此时登录教研室电脑就不需要输入密码了.

如下:

ermore@ermore:~/.ssh$ ssh [email protected]
Welcome to Ubuntu 18.10 (GNU/Linux 4.18.0-12-generic x86_64)

 * Documentation:  https://help.ubuntu.com
 * Management:     https://landscape.canonical.com
 * Support:        https://ubuntu.com/advantage


18 packages can be updated.
0 updates are security updates.

Last login: Sun Dec 16 14:09:07 2018 from 10.6.77.115
ermore@kang:~$ 

说明: 我的个人笔记本和教研室的主机电脑Linux用户都是ermore,可能会混淆

ssh登录使用别名登录

虽然每次登录不用输入密码了,但是每次还是要输入用户名和ip地址,也很麻烦,为了省的每次登录还需要输入ip地址,使用ssh登录别名,在我的笔记本上的~/.ssh/config文件下添加一下内容(没有该文件则新建一个):

Host jys
    HostName 10.7.37.100
    User ermore
    Port 22
    IdentityFile ~/.ssh/id_rsa

配置说明:

Host    别名(需要更改的名称)

    HostName        主机名(登录的主机的ip地址)

    Port            端口(默认端口为22)

    User            用户名(用户名称)

    IdentityFile    密钥文件的路径(上面使用ssh-keygen -t rsa 生成的私钥id_rsa地址 与传入教研室主机上的id_rsa.pub一一对应)

现在可以很方便的登录教研室主机了使用别名jsy

ermore@ermore:~/.ssh$ ssh jys
Welcome to Ubuntu 18.10 (GNU/Linux 4.18.0-12-generic x86_64)

 * Documentation:  https://help.ubuntu.com
 * Management:     https://landscape.canonical.com
 * Support:        https://ubuntu.com/advantage


18 packages can be updated.
0 updates are security updates.

Last login: Sun Dec 16 14:18:58 2018 from 10.6.77.115
ermore@kang:~$ 

Linux通过ssh文件传输

自己的电脑和教研室的电脑两台电脑都装了Linux系统,使用scp文件进行传输时,出现以下问题:

ssh: connect to host 10.6.77.115 port 22: Connection refused

原因是,Ubuntu默认只安装了openssh-client.我的个人电脑没有安装openssh-server,openssh-sftp-server服务,其实这两个我不知道哪个是最关键的,所以我都安装了,我命令使用

sudo apt-get install openssh-server openssh-sftp-server

安装完成后,就能通过scp将教研室主机传数据给我的电脑了.

scp -r intel/ ermore:10.7.37.100:~

确保两台机器上述程序都已经安装了即可.

参考文章:

ssh免密码登录

你可能感兴趣的:(ssh 免密登陆和别名登陆)