From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter =?utf-8?q?M=C3=BCller?= To: development@lists.ipfire.org Subject: [PATCH] sshctrl: when enable or disable AllowTcpForwarding, change PermitOpen accordingly Date: Mon, 21 Dec 2020 21:55:43 +0100 Message-ID: <193f6bcf-8ca5-7b34-e70e-0ebab2872ae9@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6726496853240009444==" List-Id: --===============6726496853240009444== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Fixes: #12546 Signed-off-by: Peter M=C3=BCller --- src/misc-progs/sshctrl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/misc-progs/sshctrl.c b/src/misc-progs/sshctrl.c index f855c5a4a..6e8652c84 100644 --- a/src/misc-progs/sshctrl.c +++ b/src/misc-progs/sshctrl.c @@ -67,10 +67,10 @@ int main(int argc, char *argv[]) strlcat(command, "s/^PasswordAuthentication .*$/PasswordAuthentication= yes/;", STRING_SIZE - 1 ); =20 if(findkey(kv, "ENABLE_SSH_PORTFW", buffer) && !strcmp(buffer,"on")) - strlcat(command, "s/^AllowTcpForwarding .*$/AllowTcpForwarding yes/;",= STRING_SIZE - 1 ); + strlcat(command, "s/^AllowTcpForwarding .*$/AllowTcpForwarding yes/;" = "s/^PermitOpen .*$/PermitOpen any/;", STRING_SIZE - 1 ); else - strlcat(command, "s/^AllowTcpForwarding .*$/AllowTcpForwarding no/;", = STRING_SIZE - 1 ); - =09 + strlcat(command, "s/^AllowTcpForwarding .*$/AllowTcpForwarding no/;" "= s/^PermitOpen .*$/PermitOpen none/;", STRING_SIZE - 1 ); + if(findkey(kv, "SSH_PORT", buffer) && !strcmp(buffer,"on")) strlcat(command, "s/^Port .*$/Port 22/;", STRING_SIZE - 1 ); else --=20 2.26.2 --===============6726496853240009444==--