Linux ssh key exchange

Sharing SSH Keys to login?

They provided me SSH ip, username, password, but i need to login with key. They asked me to share key.

Now confused which key i have to share to them? id_rsa.pub or the key from ~/.ssh/authorized_keys

NOTE: if i share my id_rsa.pub key to third party can they use it to hack my secured servers in point 1?

4 Answers 4

SSH keys have two parts, the secret/private key (usually in ~/.ssh/id_rsa ), and the public key ( ~/.ssh/id_rsa.pub ). The secret key can be used to prove who you are (or at least that you hold that secret key), and the public key can be used to check the secret key.

You never pass the secret key to any other party, as that would give them the ability to impersonate you.

As for which public key you install (or send to be installed) on the remote server, is up to you: it depends on what private key you want to use to login there.

If you have a private key on your Macbook, and want to login using that, then send the public key corresponding to that. That’s probably the one in your first server’s authorized_keys or in your Macs id_rsa.pub . If you want to login from the first server, then send the public key of that server’s key, the one in the machines id_rsa.pub .

If you want to login using both keys, you’ll need to arrange both in the authorized_keys on the target server.

If you wanted to, you could create multiple private keys on the same system and use different ones for different remote systems. That just requires a bit of bookkeeping to know which key you used where, and some configuration of the SSH client so that it knows to try to use all of the keys. (If you have lots of keys, you may need to configure it per-host.)

Читайте также:  Ssh from linux terminal

Passing the public key ( id_rsa.pub ) to a third party is no risk. It’s in fact exactly what you need to do to allow them to identify you by your private key.

Источник

How to Exchange SSH Key for Password-less Authentication between Linux Servers?

ssh key exchange

Invicti Web Application Security Scanner – the only solution that delivers automatic verification of vulnerabilities with Proof-Based Scanning™.

Implement SSH key-based authentication on Linux

SSH (Secured Shell) is a protocol which creates a cryptographically secured connection between the SSH client and remote servers.

Using SSH you can manage and administer remote servers securely. This can be helpful in many ways.

and all your creativity (hopefully)…

As a sysadmin, this is kind of basic stuff to know.

I will generate a private key and a public key. The private key should be stored on your ssh client machine and must be kept secured. The public key must be copied to the remote server to login to that server from the SSH client machine with no password required.

You’ll learn the following.

  • Install SSH (not required if already installed)
  • Generate SSH Keys
  • Copy SSH Key to a remote server
  • Log in to the remote server using SSH

For demonstration purpose, I have 2 servers with below IP addresses, one system is a client and the other one is a server on which I will log in through ssh from a client machine.

Installing SSH

Before you follow the steps mentioned in this article, make sure openssh-server is installed on the servers. If it is not installed, run the commands below to install.

sudo apt-get install openssh-server sudo systemctl enable ssh sudo systemctl start ssh

You can run ssh command to check whether it is installed on the system or not.

geekflare@geekflare:~$ ssh usage: ssh [-46AaCfGgKkMNnqsTtVvXxYy] [-B bind_interface] [-b bind_address] [-c cipher_spec] [-D [bind_address:]port] [-E log_file] [-e escape_char] [-F configfile] [-I pkcs11] [-i identity_file] [-J [user@]host[:port]] [-L address] [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port] [-Q query_option] [-R address] [-S ctl_path] [-W host:port] [-w local_tun[:remote_tun]] destination [command]

Generate SSH Keys

This needs to be done on a client server.

Читайте также:  Linux строка параметров ядра

Run the ssh-keygen command to generate a SSH key. Just press enter when it asks for the file, passphrase, same passphrase. It generates a pair of keys in ~/.ssh directory by default. Id_rsa is the private key and id_rsa.pub is the associate public key.

geekflare@geekflare:~$ ssh-keygen Generating public/private rsa key pair. Enter file in which to save the key (/home/geekflare/.ssh/id_rsa): Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /home/geekflare/.ssh/id_rsa. Your public key has been saved in /home/geekflare/.ssh/id_rsa.pub. The key fingerprint is: SHA256:3XDm62tzJegGm8oAmFYCyeFZovJOuU42zNgyn9GzH30 geekflare@geekflare The key's randomart image is: +---[RSA 2048]----+ |o+.. | |+o+ | |oo. . . o | |.. * . * | | B . S . o. | | O o . . . . .| |+ @ o o . E=. o | | B + o + .o.= . | | + . o. oo+ | +----[SHA256]-----+

It will generate two new files in ~/.ssh directory.

Copy SSH Key to Remote Server

The private key should be copied ~/.ssh folder on a remote server. Most of the servers should already have this folder if not, you need to create a folder.

  • Log in to the remote server with the user you would like to get connected. In my case, its ubuntu
  • Ensure the present working directory is the user’s home directory and then create a .ssh folder. You can also use the following single command to create one

If you already have .ssh folder then take a backup of it.

Next, let’s push the public key from a client server.

On the client machine (192.168.56.102), run the command below to copy the public key on the remote server inside an authorized_keys file in .ssh directory.

geekflare@geekflare:~$ cat .ssh/id_rsa.pub | ssh ubuntu@192.168.56.101 'cat >> .ssh/authorized_keys' ubuntu@192.168.56.101's password:

Run the command below to set permissions on the authorized_keys file on remote server.

geekflare@geekflare:~$ ssh ubuntu@192.168.56.101 "chmod 700 .ssh; chmod 640 .ssh/authorized_keys"

Great, this concludes key is exchanged and permission is all set.

Читайте также:  Install linux and android

Login to Remote Server using SSH

Let’s test to see if it works!

Let’s login to the remote server (192.168.56.101) from a client machine (192.168.56.102) as geekflare user.

Run the command below to test, it won’t ask password this time.

geekflare@geekflare:~$ ssh ubuntu@192.168.56.101 Welcome to Ubuntu 16.04.6 LTS (GNU/Linux 4.4.0-151-generic i686) * Documentation: https://help.ubuntu.com * Management: https://landscape.canonical.com * Support: https://ubuntu.com/advantage 346 packages can be updated. 11 updates are security updates. Last login: Mon Jun 17 00:10:32 2019 from 192.168.56.101

I have logged in to remote server successfully. Running below command will give the IP details of the remote machine.

ubuntu@ubuntu:~$ ifconfig enp0s3 Link encap:Ethernet HWaddr 08:00:27:9b:47:86 inet addr:10.0.2.15 Bcast:10.0.2.255 Mask:255.255.255.0 inet6 addr: fe80::5c62:3267:b752:fe5d/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:20239 errors:0 dropped:0 overruns:0 frame:0 TX packets:5406 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:22678039 (22.6 MB) TX bytes:701710 (701.7 KB) enp0s8 Link encap:Ethernet HWaddr 08:00:27:a9:4a:6b inet addr:192.168.56.101 Bcast:192.168.56.255 Mask:255.255.255.0 inet6 addr: fe80::54a9:761c:9034:21a2/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:330 errors:0 dropped:0 overruns:0 frame:0 TX packets:197 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:42847 (42.8 KB) TX bytes:32774 (32.7 KB) lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:65536 Metric:1 RX packets:997 errors:0 dropped:0 overruns:0 frame:0 TX packets:997 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1 RX bytes:79654 (79.6 KB) TX bytes:79654 (79.6 KB)

Setting up SSH key exchange is very straightforward as you can see. I hope this helps you and interested in learning Linux administration and troubleshooting then check out this Udemy course.

Источник

Оцените статью
Adblock
detector