2026-05-16 13:50:28 +02:00
2026-05-10 10:36:36 +02:00
2026-05-16 13:50:28 +02:00
2026-05-16 13:49:21 +02:00
2026-05-10 10:42:41 +02:00
2026-05-16 13:24:00 +02:00

Public SSH Keys

This repository serves as a central storage for my public SSH keys. They can be quickly and easily downloaded to new servers via curl or wget to set up passwordless SSH login.

Quick Smart Public-Key Import

This command will download the keys, append only the new ones, and keep your comments intact. It will not create duplicates if run multiple times.

curl -sL https://git.1337733.xyz/martin/sshconfig/raw/branch/main/import_keys.sh | bash

Quick smart Config Import

curl -sL https://git.1337733.xyz/martin/sshconfig/raw/branch/main/import_config.sh | bash

curl

echo "" >> ~/.ssh/authorized_keys && curl -s https://git.1337733.xyz/martin/sshconfig/raw/branch/main/authorized_keys >> ~/.ssh/authorized_keys

wget

echo "" >> ~/.ssh/authorized_keys && wget -qO- https://git.1337733.xyz/martin/sshconfig/raw/branch/main/authorized_keys >> ~/.ssh/authorized_keys

Set File Permissions

chmod 600 ~/.ssh/authorized_keys
S
Description
public SSH config and authorized_keys
Readme 66 KiB
Languages
Shell 100%