From 5d2aca8c20674920a34852d9c79698b607a996d5 Mon Sep 17 00:00:00 2001 From: Dominic Ricottone Date: Fri, 23 Sep 2022 09:53:51 -0500 Subject: [PATCH] sshd configuration Need to enable TCP forwarding, in order to tunnel SMTP over SSH. This is preferable to opening port 25 and exposing the mail server. --- sr/etc/ssh/sshd_config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sr/etc/ssh/sshd_config b/sr/etc/ssh/sshd_config index 1eaf186..b01a724 100644 --- a/sr/etc/ssh/sshd_config +++ b/sr/etc/ssh/sshd_config @@ -83,7 +83,7 @@ AuthorizedKeysCommandUser root #AllowAgentForwarding yes # Feel free to re-enable these if your use case requires them. -AllowTcpForwarding no +AllowTcpForwarding yes GatewayPorts no X11Forwarding no #X11DisplayOffset 10 -- 2.45.2