業務用エアコン関連の技術情報、エラーコード、環境問題対策に関する別サイト「エアコンの安全な修理・適切なフロン回収」

RockyLinux10.2 : SSH connection with public key

SSH connection with authentication using public key cryptography

 Creation of public and private key pairs

Create a public/private key pair for a user connecting to the Linux server using OpenSSH.
Use ssh-keygen to create key pairs.
Creation of public/private key pairs is performed with remote login user privileges。
If you do not specify the destination and file name, id_ed25519 and id_ed25519.pub will be created in /home/(user name)/.ssh/. On the way, enter the password for the key.

# su - huong
huong@Lepard:~$ ssh-keygen -t ed25519

Generating public/private ed25519 key pair.
Enter file in which to save the key (/home/huong/.ssh/id_ed25519): [Enter]
Created directory '/home/huong/.ssh'.
Enter passphrase for "/home/huong/.ssh/id_ed25519" (empty for no passphrase): [Password]
Enter same passphrase again: [Password]
Your identification has been saved in /home/huong/.ssh/id_ed25519
Your public key has been saved in /home/huong/.ssh/id_ed25519.pub
The key fingerprint is:
SHA256:eFXSMKSJGiMQlIl7aWABkC39VTcTDE+8rtioh/8mFDg huong@Lepard
The key's randomart image is:
+--[ED25519 256]--+
|XB+    .o=@+.    |
|==o   .. *o*.    |
|.+.ooo. o o.     |
|. +.E+.. ..      |
| o  ....S.       |
|      ..  .      |
|     o + .       |
|    . = +        |
|    .+.+.        |
+----[SHA256]-----+
$ cat ~/.ssh/id_ed25519.pub >> ~/.ssh/authorized_keys
$ chmod 600 ~/.ssh/authorized_keys
$ chmod 700 ~/.ssh/

Save the generated private key id_ed25519 to the Windows directory c:\USERS\user\.ssh\ using WinSCP.
Start Winscp and click "New Session
Host name  : Server IP Address
Port number : SSH port number
User name : Server Login User
Password : Password for the same user
Click "Save"

Site name : Any name
Click "OK"

After confirming the server, click "Login".

Click "Update" when the following screen appears

Password of the logged-in user in the Password field

When connected, the left column is the server side and the  right column is the PC (Windows) side.
Copy the "id_ed25519" file located in the .ssh directory to the Windows directory [c:\USERS\user\.ssh] on the right side.

Editing SSH Configuration File

Edit the SSH configuration file to disable password authentication.
This time, instead of being an ordinary user, su - to become root.

$ su -
Password:

# vi /etc/ssh/sshd_config
Line 65 : Changed to no password authentication
PasswordAuthentication no

Restart the SSH service
# systemctl restart sshd

How to connect using Tabby Terminal
Specify the key using the option [-i c:\USERS\xxxxx\.ssh\id_ed25519]

C:\Users\xxxxx>ssh huong@192.168.11.83 -p 2244 -i c:\USERS\xxxxx\.ssh\id_ed25519
Enter passphrase for key 'c:\USERS\xxxxx\.ssh\id_ed25519': [The password specified when creating the public key]
Web console: https://Lepard:9090/ or https://192.168.11.83:9090/

Last login: Tue Jun 2 10:42:58 2026
huong@Lepard:~$

Creating a private key using PuTTYgen

Start Winscp and launch [Run Puttygen] from [Tools].
Select the appropriate server

Click Load

The [ Open File Dialog ] will open, change the file type to [ All Files (. Change the file type to [ All Files (. *) ] and load the private key id_ed25519 that was transferred from the Linux server.

The password is the password set in "Creating a public and private key pair" above

Click on "Save private key"

Save the file with the extension ".ppk" in the same place as "id_ed25519" saved earlier on the Windows side under the name "id_ed25519.ppk".

Select the appropriate server and click "Edit"

Click on "Advanced"

Open the "Authentication" menu and specify "id_ed25519.ppk" saved in Windows for "Private key file

Click "Save"

Click on "Login"

The password is the password set in "Creating a public and private key pair" above

When connecting via Tabby Terminal, do the following:

C:\Users\xxxxx>ssh huong@192.168.11.83 -p 2244 -i c:\USERS\xxxxx\.ssh\id_ed25519.ppk

If you encounter an error like the one below, convert your private key to OpenSSH format.

Load key "c:\USERS\xxxxx\.ssh\id_ed25519.ppk": invalid format
huong@192.168.11.83: Permission denied (publickey,gssapi-keyex,gssapi-with-mic).

Launch [WinSCP] > [Run PuTTygen], then import the private key under [Import key] in the [Conversions] tab.

Convert the imported private key to OpenSSH format and save it under a different name.

Can be connected as follows

C:\Users\xxxxx>ssh huong@192.168.11.83 -p 2244 -i c:\USERS\xxxxx\.ssh\id_ed25519_2.ppk
Enter passphrase for key 'c:\USERS\xxxxx\.ssh\id_ed25519_2.ppk': ←The password specified when creating the public key
Web console: https://Lepard:9090/ or https://192.168.11.83:9090/

Last login: Tue Jun 2 10:53:48 2026 from 192.168.11.6
huong@Lepard:~$