From cec59360f6489067a385ae7b13086584281829e2 Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Thu, 15 Apr 2010 14:14:13 -0700 Subject: [PATCH] Use '-j' rather than '-g' when jumping to tcpre, just to be safe Signed-off-by: Tom Eastep --- Shorewall/Perl/Shorewall/Tc.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shorewall/Perl/Shorewall/Tc.pm b/Shorewall/Perl/Shorewall/Tc.pm index 83c8fe767..5570a195d 100644 --- a/Shorewall/Perl/Shorewall/Tc.pm +++ b/Shorewall/Perl/Shorewall/Tc.pm @@ -1374,7 +1374,7 @@ sub setup_tc() { # This is overloading TRACK_PROVIDERS a bit but sending tracked packets through PREROUTING is a PITA for users # for my $interface ( @routemarked_interfaces ) { - add_jump $mangle_table->{PREROUTING} , 'tcpre', 1, match_source_dev( $interface ); + add_jump $mangle_table->{PREROUTING} , 'tcpre', 0, match_source_dev( $interface ); } } }