조회 수 1395 추천 수 0 댓글 0
Atachment
첨부 '1'
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

ssh01.jpg


SSH (Secure SHELL) is an open source and most trusted network protocol that is used to login into remote servers for execution of commands and programs. It is also used to transfer files from one computer to another computer over the network using secure copy (SCP) Protocol.

In this article we will show you how to setup password-less login on RHEL/CentOS 7.x/6.x/5.x and Fedora using ssh keys to connect to remote Linux servers without entering password. Using Password-less login with SSH keys will increase the trust between two Linux servers for easy file synchronization or transfer.

My Setup Environment
SSH Client : 192.168.0.7 ( Fedora 21 )
SSH Remote Host : 192.168.1.240 ( CentOS 7 )

If you are dealing with number of Linux remote servers, then SSH Password-less login is one of the best way to automate tasks such as automatic backups with scripts, synchronization files using scp and remote command execution.

In this example we will setup SSH password-less automatic login from server 192.168.0.7 as user picomax to 192.168.1.240 with user hooni.

Step 1: Create Authentication SSH-Kegen Keys on – (192.168.0.7)

First login into server 192.168.0.7 with user picomax and generate a pair of public keys using following command.

[picomax@test.com ~]$ ssh-keygen -t rsa

Generating public/private rsa key pair.
Enter file in which to save the key (/home/picomax/.ssh/id_rsa): [Press enter key]
Created directory '/home/picomax/.ssh'.
Enter passphrase (empty for no passphrase): [Press enter key]
Enter same passphrase again: [Press enter key]
Your identification has been saved in /home/picomax/.ssh/id_rsa.
Your public key has been saved in /home/picomax/.ssh/id_rsa.pub.
The key fingerprint is:
5f:ad:40:00:8a:d1:9b:99:b3:b0:f8:08:99:c3:ed:d3 picomax@test.com
The key's randomart image is:
+--[ RSA 2048]----+
|        ..oooE.++|
|         o. o.o  |
|          ..   . |
|         o  . . o|
|        S .  . + |
|       . .    . o|
|      . o o    ..|
|       + +       |
|        +.       |
+-----------------+

Step 2: Create .ssh Directory on – 192.168.1.240

Use SSH from server 192.168.0.7 to connect server 192.168.1.240 using hooni as user and create .ssh directory under it, using following command.

[picomax@local ~]$ ssh hooni@192.168.1.240 mkdir -p .ssh

The authenticity of host '192.168.1.240 (192.168.1.240)' can't be established.
RSA key fingerprint is 45:0e:28:11:d6:81:62:16:04:3f:db:38:02:la:22:4e.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.1.240' (ECDSA) to the list of known hosts.
hooni@192.168.1.240's password: [Enter Your Password Here]

Step 3: Upload Generated Public Keys to – 192.168.1.240

Use SSH from server 192.168.0.7 and upload new generated public key (id_rsa.pub) on server 192.168.1.240 under hooni‘s .ssh directory as a file name authorized_keys.

[picomax@local ~]$ cat .ssh/id_rsa.pub | ssh hooni@192.168.1.240 'cat >> .ssh/authorized_keys'

hooni@192.168.1.240's password: [Enter Your Password Here]

Step 4: Set Permissions on – 192.168.1.240

Due to different SSH versions on servers, we need to set permissions on .ssh directory and authorized_keys file.

[picomax@local ~]$ ssh hooni@192.168.1.240 "chmod 700 .ssh; chmod 640 .ssh/authorized_keys"

hooni@192.168.1.240's password: [Enter Your Password Here]

Step 5: Login from 192.168.0.7 to 192.168.1.240 Server without Password

From now onwards you can log into 192.168.1.240 as hooni user from server 192.168.0.7 as picomax user without password.

[picomax@local ~]$ ssh hooni@192.168.1.240



[출처] https://www.tecmint.com/ssh-passwordless-login-using-ssh-keygen-in-5-easy-steps/



  1. macOS에 node, npm 설치하기 (homebrew)

    Date2021.11.06 CategoryDevelop Byhooni Views1148
    Read More
  2. Mac에서 Node.js 설치하기

    Date2018.09.28 CategorySystem/OS Byhooni Views4195
    Read More
  3. NAT와 DHCP에 대한 간단한 설명

    Date2013.04.23 CategorySystem/OS Byhooni Views18328
    Read More
  4. OCB5 Injection 앗싸뵹! ㅋㅋ

    Date2014.07.01 CategoryAlgorithm Byhooni Views807
    Read More
  5. OGNL(Object Graph Navigation Language)

    Date2013.04.23 CategoryDevelop Byhooni Views15732
    Read More
  6. OpenGL 강좌 사이트 모음

    Date2013.04.23 CategoryDevelop Byhooni Views9638
    Read More
  7. OpenSSL로 ROOT CA 생성 및 SSL 인증서 발급하기

    Date2017.10.28 CategorySystem/OS Byhooni Views1464
    Read More
  8. OPT와 CAS에 대한 자료.. (교수님 메일로 보내드린 자료..)

    Date2013.04.23 CategoryDevelop Byhooni Views13925
    Read More
  9. OSI (Open Systems Interconnection) 개방형 시스템간 상호 접속

    Date2013.04.23 CategorySystem/OS Byhooni Views10787
    Read More
  10. php.ini 설정 안됐을때.. ㅋㅋ

    Date2013.04.23 CategorySystem/OS Byhooni Views11641
    Read More
  11. Polynomial time 이란? ㅋㅋ

    Date2013.04.23 CategoryAlgorithm Byhooni Views22691
    Read More
  12. RPA란? 어디에 어떻게 쓰이고 누가 만드나?

    Date2020.01.28 CategorySystem/OS Byhooni Views1365
    Read More
  13. RSVP 란?

    Date2017.11.22 CategoryEtc Byhooni Views988
    Read More
  14. SQL JOIN 정리 (Inner Join & Outer Join)

    Date2019.11.22 CategoryDatabase Byhooni Views1838
    Read More
  15. SSH Passwordless Login Using SSH Keygen in 5 Easy Steps

    Date2019.11.22 CategorySystem/OS Byhooni Views1395
    Read More
  16. SVN 명령어 (SVN command)

    Date2014.02.28 CategoryDevelop Byhooni Views12149
    Read More
Board Pagination Prev 1 2 3 4 5 ... 74 Next
/ 74