* [PATCH] OpenVPN: Fix max-clients option
@ 2019-11-04 14:52 Erik Kapfer
2019-11-04 16:32 ` Michael Tremer
0 siblings, 1 reply; 3+ messages in thread
From: Erik Kapfer @ 2019-11-04 14:52 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1026 bytes --]
Fix: Triggered by https://forum.ipfire.org/viewtopic.php?f=16&t=23551
Since the 'DHCP_WINS' cgiparam has been set for the max-client directive, changes in the WUI has not been adapted to server.conf.
Signed-off-by: Erik Kapfer <ummeegge(a)ipfire.org>
---
html/cgi-bin/ovpnmain.cgi | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/html/cgi-bin/ovpnmain.cgi b/html/cgi-bin/ovpnmain.cgi
index 970444a55..09f0dc42f 100644
--- a/html/cgi-bin/ovpnmain.cgi
+++ b/html/cgi-bin/ovpnmain.cgi
@@ -355,10 +355,10 @@ sub writeserverconf {
print CONF "push \"dhcp-option WINS $sovpnsettings{DHCP_WINS}\"\n";
}
- if ($sovpnsettings{DHCP_WINS} eq '') {
+ if ($sovpnsettings{MAX_CLIENTS} eq '') {
print CONF "max-clients 100\n";
}
- if ($sovpnsettings{DHCP_WINS} ne '') {
+ if ($sovpnsettings{MAX_CLIENTS} ne '') {
print CONF "max-clients $sovpnsettings{MAX_CLIENTS}\n";
}
print CONF "tls-verify /usr/lib/openvpn/verify\n";
--
2.12.2
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] OpenVPN: Fix max-clients option
2019-11-04 14:52 [PATCH] OpenVPN: Fix max-clients option Erik Kapfer
@ 2019-11-04 16:32 ` Michael Tremer
2019-11-04 16:46 ` ummeegge
0 siblings, 1 reply; 3+ messages in thread
From: Michael Tremer @ 2019-11-04 16:32 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1268 bytes --]
Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>
Interesting is how long this has been in here unnoticed.
> On 4 Nov 2019, at 14:52, Erik Kapfer <ummeegge(a)ipfire.org> wrote:
>
> Fix: Triggered by https://forum.ipfire.org/viewtopic.php?f=16&t=23551
>
> Since the 'DHCP_WINS' cgiparam has been set for the max-client directive, changes in the WUI has not been adapted to server.conf.
>
> Signed-off-by: Erik Kapfer <ummeegge(a)ipfire.org>
> ---
> html/cgi-bin/ovpnmain.cgi | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/html/cgi-bin/ovpnmain.cgi b/html/cgi-bin/ovpnmain.cgi
> index 970444a55..09f0dc42f 100644
> --- a/html/cgi-bin/ovpnmain.cgi
> +++ b/html/cgi-bin/ovpnmain.cgi
> @@ -355,10 +355,10 @@ sub writeserverconf {
> print CONF "push \"dhcp-option WINS $sovpnsettings{DHCP_WINS}\"\n";
> }
>
> - if ($sovpnsettings{DHCP_WINS} eq '') {
> + if ($sovpnsettings{MAX_CLIENTS} eq '') {
> print CONF "max-clients 100\n";
> }
> - if ($sovpnsettings{DHCP_WINS} ne '') {
> + if ($sovpnsettings{MAX_CLIENTS} ne '') {
> print CONF "max-clients $sovpnsettings{MAX_CLIENTS}\n";
> }
> print CONF "tls-verify /usr/lib/openvpn/verify\n";
> --
> 2.12.2
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] OpenVPN: Fix max-clients option
2019-11-04 16:32 ` Michael Tremer
@ 2019-11-04 16:46 ` ummeegge
0 siblings, 0 replies; 3+ messages in thread
From: ummeegge @ 2019-11-04 16:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1393 bytes --]
On Mo, 2019-11-04 at 16:32 +0000, Michael Tremer wrote:
> Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>
>
> Interesting is how long this has been in here unnoticed.
A long time...
>
> > On 4 Nov 2019, at 14:52, Erik Kapfer <ummeegge(a)ipfire.org> wrote:
> >
> > Fix: Triggered by
> > https://forum.ipfire.org/viewtopic.php?f=16&t=23551
> >
> > Since the 'DHCP_WINS' cgiparam has been set for the max-client
> > directive, changes in the WUI has not been adapted to server.conf.
> >
> > Signed-off-by: Erik Kapfer <ummeegge(a)ipfire.org>
> > ---
> > html/cgi-bin/ovpnmain.cgi | 4 ++--
> > 1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/html/cgi-bin/ovpnmain.cgi b/html/cgi-bin/ovpnmain.cgi
> > index 970444a55..09f0dc42f 100644
> > --- a/html/cgi-bin/ovpnmain.cgi
> > +++ b/html/cgi-bin/ovpnmain.cgi
> > @@ -355,10 +355,10 @@ sub writeserverconf {
> > print CONF "push \"dhcp-option WINS
> > $sovpnsettings{DHCP_WINS}\"\n";
> > }
> >
> > - if ($sovpnsettings{DHCP_WINS} eq '') {
> > + if ($sovpnsettings{MAX_CLIENTS} eq '') {
> > print CONF "max-clients 100\n";
> > }
> > - if ($sovpnsettings{DHCP_WINS} ne '') {
> > + if ($sovpnsettings{MAX_CLIENTS} ne '') {
> > print CONF "max-clients $sovpnsettings{MAX_CLIENTS}\n";
> > }
> > print CONF "tls-verify /usr/lib/openvpn/verify\n";
> > --
> > 2.12.2
> >
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-11-04 16:46 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-04 14:52 [PATCH] OpenVPN: Fix max-clients option Erik Kapfer
2019-11-04 16:32 ` Michael Tremer
2019-11-04 16:46 ` ummeegge
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox