ssh
SSH change port
Add to sshd configuration
Go to the file
and add line
Configure SELinux
Configure Firewall
Restart sshd service
Remote access be like
SSH using keys
On your remote device follow these steps.
Generate key
Comparison: TL;DR, use RSA 4096 or ed25519.
By default, will be stored at /home/user/.ssh/id_ed25519
Generate a passphrase with KeePassXC and use it as passphrase when it asks you for one.
Add it to remote key (server)
This will add the public key (i.e. id_ed25519.pub) to the the server file ~./.ssh/authorized_keys
Add passphrase to KeePassXC
Follow this tutorial, so you can add the passphrase for the generated key automatically to the ssh-agent whenever KeePassXC db is unlocked.
Now, passphrase won’t be asked when KeePassXC is unlocked.
Disable ssh with password
https://linuxhandbook.com/ssh-disable-password-authentication/ Open file /etc/ssh/sshd_config and set
Next, restart ssh service
RHEL:
Arch:
a
Last updated