diff --git a/README.md b/README.md index 39121cc..ec7b85e 100644 --- a/README.md +++ b/README.md @@ -170,19 +170,20 @@ Es ist daher empfehlenswert, den Port des SSH-Servers zu ändern, um damit einen Um den Port zu ändern, wird die Datei `/etc/ssh/sshd_config` bearbeitet. Im Ausgangszustand ist die entsprechende Zeile meistens auskommentiert, da Port 22 als Standard gesetzt ist. In dem Fall muss "#" am Anfang der Zeile entfernt, und der neue Port eingetragen werden (in diesem Beispiel 54683). -```sh hl_lines="7" -... -# The strategy used for options in the default sshd_config shipped with -# OpenSSH is to specify options with their default value where -# possible, but leave them commented. Uncommented options override the -# default value. - -Port 54683 -#AddressFamily any -#ListenAddress 0.0.0.0 -#ListenAddress :: -... -``` +=== "/etc/ssh/sshd_config" + ```sh hl_lines="7" + ... + # The strategy used for options in the default sshd_config shipped with + # OpenSSH is to specify options with their default value where + # possible, but leave them commented. Uncommented options override the + # default value. + + Port 54683 + #AddressFamily any + #ListenAddress 0.0.0.0 + #ListenAddress :: + ... + ``` Die Änderung wird mit dem Neustart des SSH-Dienstes übernommen.