Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

linux: replace rsa with ed25519 #71

Merged
merged 1 commit into from
Feb 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions topics/linux/linux_slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ SSH Client
* known_hosts: Falls du dich das erste Mal mit einem Host verbindest,
wirst du gefragt, ob du dem Public Key des Servers vertraust.
In diesem File sind die Hosts und die Hashes der Public Keys (1 pro Host), denen du vertraut hast.
* id_rsa, id_rsa.pub oder weitere Keys:
* id_ed25519, id_ed25519.pub oder weitere Keys:
Private und Public Keys, die für ssh Verbindungen verwendet werden können.
* config
Die SSH Config, falls welche Konfiguriert ist.
Expand All @@ -565,10 +565,13 @@ Hier sind die public keys, mit denen man sich als dieser User einloggen kann.

Eigenen Key hinzufügen: `ssh-copy-id [USER@]HOST`
Oder manuell:
Auf lokaler Maschine: `cat ~/.ssh/id_rsa.pub`
Auf lokaler Maschine: `cat ~/.ssh/id_ed25519.pub`
Und dann remote den key ins authorized_keys File einfügen.

Private Key erstellen: `ssh-keygen -t rsa -b 4096`
Private Key erstellen: `ssh-keygen -t ed25519`

(Bisher war der default rsa, das ist aber deprecated.
Ab openssh 9.5 wird per default ed25519 verwendet. <https://www.openssh.com/releasenotes.html#9.5>)

Authentication Agents
-------
Expand Down
Loading