* [PATCH] optionsfw.cgi: Add default settings for newly added options.
@ 2022-03-05 18:13 Stefan Schantl
2022-03-05 19:32 ` Peter Müller
0 siblings, 1 reply; 2+ messages in thread
From: Stefan Schantl @ 2022-03-05 18:13 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1058 bytes --]
If no settings for those features can be obtained from the settings
file, set them to the following defaults.
* DROPSPOOFEDMARTIAN -> on (yes)
* DROPHOSTILE -> off (no - because only fresh installed systems should
do this)
* LOGDROPCTINVALID -> on (yes)
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
html/cgi-bin/optionsfw.cgi | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/html/cgi-bin/optionsfw.cgi b/html/cgi-bin/optionsfw.cgi
index 5611b71b7..fbff67b2f 100644
--- a/html/cgi-bin/optionsfw.cgi
+++ b/html/cgi-bin/optionsfw.cgi
@@ -88,6 +88,15 @@ if (!$settings{'MASQUERADE_ORANGE'}) {
if (!$settings{'MASQUERADE_BLUE'}) {
$settings{'MASQUERADE_BLUE'} = 'on';
}
+if (!$settings{'DROPSPOOFEDMARTIAN'}) {
+ $settings{'DROPSPOOFEDMARTIAN'} = 'on';
+}
+if (!$settings{'DROPHOSTILE'}) {
+ $settings{'DROPHOSTILE'} = 'off';
+}
+if (!$settings{'LOGDROPCTINVALID'}) {
+ $settings{'LOGDROPCTINVALID'} = 'on';
+}
$checked{'DROPNEWNOTSYN'}{'off'} = '';
$checked{'DROPNEWNOTSYN'}{'on'} = '';
--
2.30.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] optionsfw.cgi: Add default settings for newly added options.
2022-03-05 18:13 [PATCH] optionsfw.cgi: Add default settings for newly added options Stefan Schantl
@ 2022-03-05 19:32 ` Peter Müller
0 siblings, 0 replies; 2+ messages in thread
From: Peter Müller @ 2022-03-05 19:32 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1209 bytes --]
Looks good to me.
Also, fixes: #12791
Reviewed-by: Peter Müller <peter.mueller(a)ipfire.org>
> If no settings for those features can be obtained from the settings
> file, set them to the following defaults.
>
> * DROPSPOOFEDMARTIAN -> on (yes)
> * DROPHOSTILE -> off (no - because only fresh installed systems should
> do this)
> * LOGDROPCTINVALID -> on (yes)
>
> Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> ---
> html/cgi-bin/optionsfw.cgi | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/html/cgi-bin/optionsfw.cgi b/html/cgi-bin/optionsfw.cgi
> index 5611b71b7..fbff67b2f 100644
> --- a/html/cgi-bin/optionsfw.cgi
> +++ b/html/cgi-bin/optionsfw.cgi
> @@ -88,6 +88,15 @@ if (!$settings{'MASQUERADE_ORANGE'}) {
> if (!$settings{'MASQUERADE_BLUE'}) {
> $settings{'MASQUERADE_BLUE'} = 'on';
> }
> +if (!$settings{'DROPSPOOFEDMARTIAN'}) {
> + $settings{'DROPSPOOFEDMARTIAN'} = 'on';
> +}
> +if (!$settings{'DROPHOSTILE'}) {
> + $settings{'DROPHOSTILE'} = 'off';
> +}
> +if (!$settings{'LOGDROPCTINVALID'}) {
> + $settings{'LOGDROPCTINVALID'} = 'on';
> +}
>
> $checked{'DROPNEWNOTSYN'}{'off'} = '';
> $checked{'DROPNEWNOTSYN'}{'on'} = '';
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-03-05 19:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-05 18:13 [PATCH] optionsfw.cgi: Add default settings for newly added options Stefan Schantl
2022-03-05 19:32 ` Peter Müller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox