Änderungen

This commit is contained in:
Bernd Reuther 2020-07-24 09:23:11 +02:00
parent 7225915623
commit 074576049d

View File

@ -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.