summaryrefslogtreecommitdiff
path: root/debian/README.Debian
diff options
context:
space:
mode:
Diffstat (limited to 'debian/README.Debian')
-rw-r--r--debian/README.Debian14
1 files changed, 11 insertions, 3 deletions
diff --git a/debian/README.Debian b/debian/README.Debian
index f17ccb187..58a5741b0 100644
--- a/debian/README.Debian
+++ b/debian/README.Debian
@@ -203,9 +203,17 @@ authenticated and unauthenticated connections; see
203https://bugzilla.redhat.com/show_bug.cgi?id=963268 for more discussion. 203https://bugzilla.redhat.com/show_bug.cgi?id=963268 for more discussion.
204 204
205The provided ssh.socket unit file sets ListenStream=22. If you need to have 205The provided ssh.socket unit file sets ListenStream=22. If you need to have
206it listen on a different address or port, then you will need to do this by 206it listen on a different address or port, then you will need to do this as
207copying /lib/systemd/system/ssh.socket to /etc/systemd/system/ssh.socket and 207follows (modifying ListenStream to match your requirements):
208modifying the ListenStream option. See systemd.socket(5) for details. 208
209 mkdir -p /etc/systemd/system/ssh.socket.d
210 cat >/etc/systemd/system/ssh.socket.d/listen.conf <<EOF
211 [Socket]
212 ListenStream=2222
213 EOF
214 systemctl daemon-reload
215
216See systemd.socket(5) for details.
209 217
210Terminating SSH sessions cleanly on shutdown/reboot with systemd 218Terminating SSH sessions cleanly on shutdown/reboot with systemd
211---------------------------------------------------------------- 219----------------------------------------------------------------