From 0b80856eb699836c12e8f8ab12c8e88bcd8fe4f0 Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Sat, 1 Aug 2020 17:10:00 -0700 Subject: [PATCH] Correct IPv6 ACK handling in Simple TC Signed-off-by: Tom Eastep --- Shorewall/Perl/Shorewall/Tc.pm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Shorewall/Perl/Shorewall/Tc.pm b/Shorewall/Perl/Shorewall/Tc.pm index a3df84c5c..3ec086bb3 100644 --- a/Shorewall/Perl/Shorewall/Tc.pm +++ b/Shorewall/Perl/Shorewall/Tc.pm @@ -365,9 +365,7 @@ sub process_simple_device() { emit( "run_tc filter add dev $physical parent $number:0 protocol all prio 1 u32" . "\\\n match ip6 protocol 6 0xff" . - "\\\n match u8 0x05 0x0f at 0" . - "\\\n match u16 0x0000 0xffc0 at 2" . - "\\\n match u8 0x10 0xff at 33 flowid $number:1\n" ); + "\\\n match u8 0x10 0xff at 53 flowid $number:1\n" ); save_progress_message_short qq(" TC Device $physical defined.");