Skip to content

Commit

Permalink
linux: replace rsa with ed25519
Browse files Browse the repository at this point in the history
And also mention the deprecation of rsa.
  • Loading branch information
BacLuc committed Feb 26, 2024
1 parent a610eb6 commit e9d777f
Showing 1 changed file with 6 additions and 3 deletions.
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

0 comments on commit e9d777f

Please sign in to comment.