From 0d1f5bf26153bf738e32df0397dd6412da6e5778 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 b158f8c42..f627a1e94 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 ); } } }