From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH 05/12] rules.pl: Add tiny ipset_restore function. Date: Mon, 14 Feb 2022 19:42:49 +0100 Message-ID: <20220214184257.2406-5-stefan.schantl@ipfire.org> In-Reply-To: <20220214184257.2406-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============9039597412840689006==" List-Id: --===============9039597412840689006== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable 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. Signed-off-by: Stefan Schantl --- config/firewall/rules.pl | 7 +++++++ 1 file changed, 7 insertions(+) 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.ipset= 4"); +} --=20 2.30.2 --===============9039597412840689006==--