From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter =?utf-8?q?M=C3=BCller?= To: development@lists.ipfire.org Subject: Re: [PATCH 05/12] rules.pl: Add tiny ipset_restore function. Date: Mon, 14 Feb 2022 21:03:14 +0000 Message-ID: <058ecd1b-dbf3-e31c-13f1-1b5c9e718567@ipfire.org> In-Reply-To: <20220214184257.2406-5-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3831133378833927968==" List-Id: --===============3831133378833927968== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Reviewed-by: Peter M=C3=BCller > This helper function is used to load a previously exported list of > networks for a given country code into the ipset module, so it can be > used for any kind of firewall rules. >=20 > Signed-off-by: Stefan Schantl > --- > config/firewall/rules.pl | 7 +++++++ > 1 file changed, 7 insertions(+) >=20 > diff --git a/config/firewall/rules.pl b/config/firewall/rules.pl > index da01b8775..5b1153b08 100644 > --- a/config/firewall/rules.pl > +++ b/config/firewall/rules.pl > @@ -888,3 +888,10 @@ sub firewall_is_in_subnet { > =20 > return 0; > } > + > +sub ipset_restore ($) { > + my ($ccode) =3D @_; > + > + # Run ipset and restore the list of the given country code. > + run("$IPSET restore < $Location::Functions::ipset_db_directory/$ccode.ips= et4"); > +} --===============3831133378833927968==--