From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH] hostapd: make client isolation configurable via WebUI
Date: Mon, 18 Mar 2019 12:33:27 +0000 [thread overview]
Message-ID: <99654D6D-704D-47A4-A235-5E25D90176FA@ipfire.org> (raw)
In-Reply-To: <b11b05cf-bf14-6ab1-1c51-1329edf2bdc1@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 3048 bytes --]
Hi,
I guess this looks okay.
The file has no translation it seems.
Will you also build this for IPFire 3?
-Michael
> On 16 Mar 2019, at 14:20, Peter Müller <peter.mueller(a)ipfire.org> wrote:
>
> hostapd supports client-isolation, but this feature could
> not be configured via the WebUI so far. Since it might be
> desired in public wireless networks, or even private ones,
> it makes sense to provide a radio button to let the user
> decide on.
>
> Fixes #11974.
>
> Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
> ---
> html/cgi-bin/wlanap.cgi | 14 ++++++++++++++
> 1 file changed, 14 insertions(+)
>
> diff --git a/html/cgi-bin/wlanap.cgi b/html/cgi-bin/wlanap.cgi
> index 72c9a1298..cae191101 100644
> --- a/html/cgi-bin/wlanap.cgi
> +++ b/html/cgi-bin/wlanap.cgi
> @@ -75,6 +75,7 @@ $wlanapsettings{'DRIVER'} = 'NL80211';
> $wlanapsettings{'HTCAPS'} = '';
> $wlanapsettings{'VHTCAPS'} = '';
> $wlanapsettings{'NOSCAN'} = 'off';
> +$wlanapsettings{'CLIENTISOLATION'} = 'off';
>
> &General::readhash("/var/ipfire/wlanap/settings", \%wlanapsettings);
> &Header::getcgihash(\%wlanapsettings);
> @@ -252,6 +253,10 @@ $checked{'NOSCAN'}{'off'} = '';
> $checked{'NOSCAN'}{'on'} = '';
> $checked{'NOSCAN'}{$wlanapsettings{'NOSCAN'}} = "checked='checked'";
>
> +$checked{'CLIENTISOLATION'}{'off'} = '';
> +$checked{'CLIENTISOLATION'}{'on'} = '';
> +$checked{'CLIENTISOLATION'}{$wlanapsettings{'CLIENTISOLATION'}} = "checked='checked'";
> +
> $selected{'ENC'}{$wlanapsettings{'ENC'}} = "selected='selected'";
> $selected{'CHANNEL'}{$wlanapsettings{'CHANNEL'}} = "selected='selected'";
> $selected{'COUNTRY'}{$wlanapsettings{'COUNTRY'}} = "selected='selected'";
> @@ -377,6 +382,7 @@ print <<END
> <tr><td width='25%' class='base'>SSID: </td><td class='base' colspan='3'><input type='text' name='SSID' size='30' value='$wlanapsettings{'SSID'}' /></td></tr>
> <!--SSID Broadcast: on => HIDESSID: off -->
> <tr><td width='25%' class='base'>SSID Broadcast: </td><td class='base' colspan='3'>on <input type='radio' name='HIDESSID' value='off' $checked{'HIDESSID'}{'off'} /> | <input type='radio' name='HIDESSID' value='on' $checked{'HIDESSID'}{'on'} /> off</td></tr>
> +<tr><td width='25%' class='base'>Client Isolation: </td><td class='base' colspan='3'>on <input type='radio' name='CLIENTISOLATION' value='off' $checked{'CLIENTISOLATION'}{'off'} /> | <input type='radio' name='CLIENTISOLATION' value='on' $checked{'CLIENTISOLATION'}{'on'} /> off</td></tr>
>
>
> <tr><td width='25%' class='base'>$Lang::tr{'wlanap country'}: </td><td class='base' colspan='3'>
> @@ -632,6 +638,14 @@ END
>
> }
>
> + # https://forum.ipfire.org/viewtopic.php?f=22&t=12274&p=79070#p79070
I do not get how this comment is helpful.
> + if ( $wlanapsettings{'CLIENTISOLATION'} eq 'on' ){
> + print CONFIGFILE <<END
> +ap_isolate=1
> +END
> +;
> + }
> +
> if ( $wlanapsettings{'NOSCAN'} eq 'on' ){
> print CONFIGFILE <<END
> noscan=1
> --
> 2.16.4
prev parent reply other threads:[~2019-03-18 12:33 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-16 14:20 Peter Müller
2019-03-18 12:33 ` Michael Tremer [this message]
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=99654D6D-704D-47A4-A235-5E25D90176FA@ipfire.org \
--to=michael.tremer@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