Dienste/Secure Shell aktualisiert
parent
a12764f467
commit
512b2e4485
1 changed files with 22 additions and 2 deletions
|
@ -20,15 +20,35 @@ SSH nutzt den [Diffie-Hellman-Schlüsselaustausch](https://de.wikipedia.org/wiki
|
|||
sequenceDiagram
|
||||
participant C as Lokaler Client
|
||||
participant S as Externer Server
|
||||
activate C
|
||||
C->>S: KEXINIT - Schlüssel Austausch Initialisierung
|
||||
deactivate C
|
||||
activate S
|
||||
S->>C: KEXINIT - Schlüssel Austausch Initialisierung
|
||||
deactivate S
|
||||
activate C
|
||||
C->>S: KEXDH_INIT - Diffie-Hellman Schlüssel Austausch Initialisierung
|
||||
deactivate C
|
||||
activate S
|
||||
S->>C: KEXDH_REPLY - Antwort auf Diffie-Hellman Initialisierung
|
||||
deactivate S
|
||||
activate C
|
||||
C->>S: KEXECDH_REPLY - Ephemeral Diffie-Hellman Antwort
|
||||
deactivate C
|
||||
activate S
|
||||
S->>C: KEXDH_GEX_GROUP - Gruppeninformation für Diffie-Hellman
|
||||
deactivate S
|
||||
activate C
|
||||
C->>S: KEXDH_GEX_INIT - Diffie-Hellman-Parameter Initiierung
|
||||
deactivate C
|
||||
activate S
|
||||
S->>C: KEXDH_GEX_REPLY - Diffie-Hellman Parameter Antwort
|
||||
deactivate S
|
||||
activate C
|
||||
C->>S: USERAUTH_REQUEST - Benutzer Authentifizierungsanforderung
|
||||
deactivate C
|
||||
activate S
|
||||
S->>C: USERAUTH_FAILURE - Fehlerantwort für Authentifizierung
|
||||
C->>S: USERAUTH_SUCCESS - Authentifizierung erfolgreich
|
||||
```
|
||||
deactivate S
|
||||
S->>C: USERAUTH_SUCCESS - Authentifizierung erfolgreich
|
||||
```
|
||||
|
|
Loading…
Add table
Reference in a new issue