From: "Daniel Weismüller" <daniel.weismueller@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 09/10] Revert "Make IMQ Switchable between PREROUTING and POSTROUTING"
Date: Mon, 21 Oct 2019 17:49:05 +0200 [thread overview]
Message-ID: <20191021154906.24418-9-daniel.weismueller@ipfire.org> (raw)
In-Reply-To: <20191021154906.24418-1-daniel.weismueller@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 2794 bytes --]
From: Michael Tremer <michael.tremer(a)ipfire.org>
This reverts commit 88b8ffac6b258e7b7687eb26111134bf435e23ca.
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
config/qos/makeqosscripts.pl | 28 ++--------------------------
1 file changed, 2 insertions(+), 26 deletions(-)
diff --git a/config/qos/makeqosscripts.pl b/config/qos/makeqosscripts.pl
index 2b5cce84f..51d818699 100644
--- a/config/qos/makeqosscripts.pl
+++ b/config/qos/makeqosscripts.pl
@@ -71,7 +71,6 @@ $qossettings{'RED_DEV'} = `cat /var/ipfire/red/iface`;
$qossettings{'IMQ_DEV'} = 'imq0';
$qossettings{'TOS'} = '';
$qossettings{'VALID'} = 'yes';
-$qossettings{'IMQ_MODE'} = 'PREROUTING';
&General::readhash("${General::swroot}/qos/settings", \%qossettings);
@@ -426,9 +425,6 @@ foreach $classentry (sort @classes)
print "\ttc filter add dev $qossettings{'DEVICE'} parent 2:0 prio 0 protocol ip handle $qossettings{'CLASS'} fw flowid 2:$qossettings{'CLASS'}\n";
}
}
-
-if ( $qossettings{'IMQ_MODE'} eq 'POSTROUTING' )
-{
print <<END
### ADD QOS-INC CHAIN TO THE MANGLE TABLE IN IPTABLES
@@ -442,24 +438,6 @@ print <<END
### SET TOS
END
;
-}
-else
-{
-print <<END
-
- ### ADD QOS-INC CHAIN TO THE MANGLE TABLE IN IPTABLES
- iptables -t mangle -N QOS-INC
- iptables -t mangle -A PREROUTING -i $qossettings{'RED_DEV'} -p ah -j RETURN
- iptables -t mangle -A PREROUTING -i $qossettings{'RED_DEV'} -p esp -j RETURN
- iptables -t mangle -A PREROUTING -i $qossettings{'RED_DEV'} -p ip -j RETURN
- iptables -t mangle -I PREROUTING -i $qossettings{'RED_DEV'} -j QOS-INC
- iptables -t mangle -A PREROUTING -i $qossettings{'RED_DEV'} -j QOS-TOS
-
- ### SET TOS
-END
-;
-}
-
foreach $tosruleentry (sort @tosrules)
{
@tosruleline = split( /\;/, $tosruleentry );
@@ -616,10 +594,8 @@ print <<END
iptables -t mangle --delete POSTROUTING -o $qossettings{'RED_DEV'} -j QOS-TOS >/dev/null 2>&1
iptables -t mangle --flush QOS-OUT >/dev/null 2>&1
iptables -t mangle --delete-chain QOS-OUT >/dev/null 2>&1
- iptables -t mangle --delete FORWARD -i $qossettings{'RED_DEV'} -j QOS-INC >/dev/null 2>&1
- iptables -t mangle --delete FORWARD -i $qossettings{'RED_DEV'} -j QOS-TOS >/dev/null 2>&1
- iptables -t mangle --delete PREROUTING -i $qossettings{'RED_DEV'} -j QOS-INC >/dev/null 2>&1
- iptables -t mangle --delete PREROUTING -i $qossettings{'RED_DEV'} -j QOS-TOS >/dev/null 2>&1
+ iptables -t mangle --delete FORWARD -i $qossettings{'RED_DEV'} -j QOS-INC
+ iptables -t mangle --delete FORWARD -i $qossettings{'RED_DEV'} -j QOS-TOS
iptables -t mangle --flush QOS-INC >/dev/null 2>&1
iptables -t mangle --delete-chain QOS-INC >/dev/null 2>&1
iptables -t mangle --flush QOS-TOS >/dev/null 2>&1
--
2.12.2
next prev parent reply other threads:[~2019-10-21 15:49 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-21 15:48 [PATCH 01/10] QoS: Do not manually load iptables modules Daniel Weismüller
2019-10-21 15:48 ` [PATCH 02/10] QoS: Use Intermediate Functional Block Daniel Weismüller
2019-10-21 15:48 ` [PATCH 03/10] QoS: Tidy up qdiscs after QoS is being stopped Daniel Weismüller
2019-10-21 15:49 ` [PATCH 04/10] QoS: Start qosd immediately Daniel Weismüller
2019-10-21 15:49 ` [PATCH 05/10] QoS: Do not delete egress qdisc after classes have been created Daniel Weismüller
2019-10-21 15:49 ` [PATCH 06/10] linux+iptables: Drop support for IMQ Daniel Weismüller
2019-10-21 15:49 ` [PATCH 07/10] QoS: Suppress an error message when cleaning up from previous runs Daniel Weismüller
2019-10-21 15:49 ` [PATCH 08/10] QoS: Drop support for subclasses Daniel Weismüller
2019-10-21 15:49 ` Daniel Weismüller [this message]
2019-10-21 15:49 ` [PATCH 10/10] QoS: Use CONNMARK to mark connections in connection tracking Daniel Weismüller
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=20191021154906.24418-9-daniel.weismueller@ipfire.org \
--to=daniel.weismueller@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