From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 6/6] IPsec: Replace MARK 50 by 0x00800000 Date: Mon, 04 Oct 2021 18:52:22 +0100 Message-ID: <20211004175222.9208-6-michael.tremer@ipfire.org> In-Reply-To: <20211004175222.9208-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6882722108936435269==" List-Id: --===============6882722108936435269== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable This change is necessary because we are using the right-hand two bytes for storing the QoS classes. All IPsec traffic will now be skipped and never classified by the QoS. Signed-off-by: Michael Tremer --- config/qos/makeqosscripts.pl | 10 +++++----- src/initscripts/system/firewall | 7 +++++-- src/patches/strongswan-ipfire.patch | 12 ++++++------ 3 files changed, 16 insertions(+), 13 deletions(-) diff --git a/config/qos/makeqosscripts.pl b/config/qos/makeqosscripts.pl index b1bb637b3..fc8b8b84f 100644 --- a/config/qos/makeqosscripts.pl +++ b/config/qos/makeqosscripts.pl @@ -61,6 +61,9 @@ my $QOS_INC_MASK =3D 0x0000ff00; my $QOS_INC_SHIFT =3D 8; my $QOS_OUT_MASK =3D 0x000000ff; my $QOS_OUT_SHIFT =3D 0; +my $IPSEC_MASK =3D 0x00800000; +my $QOS_INC_SKIP_MASK =3D $QOS_INC_MASK | $IPSEC_MASK; +my $QOS_OUT_SKIP_MASK =3D $QOS_OUT_MASK | $IPSEC_MASK; =20 &General::readhash("${General::swroot}/ethernet/settings", \%netsettings); =20 @@ -220,10 +223,7 @@ print <