From: "Peter Müller" <peter.mueller@ipfire.org>
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 [thread overview]
Message-ID: <193f6bcf-8ca5-7b34-e70e-0ebab2872ae9@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 1221 bytes --]
Fixes: #12546
Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
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 );
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 );
-
+ 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
--
2.26.2
reply other threads:[~2020-12-21 20:55 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=193f6bcf-8ca5-7b34-e70e-0ebab2872ae9@ipfire.org \
--to=peter.mueller@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox