Skip to content

Commit

Permalink
filter, prevent carp outgoing packets to use the configured gateway (…
Browse files Browse the repository at this point in the history
…route-to), for #3468
  • Loading branch information
AdSchellevis committed May 8, 2019
1 parent 41dcf03 commit c5d6b6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/etc/inc/filter.lib.inc
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ function filter_core_rules_system($fw, $defaults)
array('protocol' => 'carp', 'from' => '(self)', 'direction' => 'in', 'disabled' => !$carp_disabled),
$defaults['block']
);
$fw->registerFilterRule(1,array('protocol' => 'carp'),$defaults['pass']);
$fw->registerFilterRule(1, array('protocol' => 'carp', 'direction' => 'any'), $defaults['pass']);

// Lockout rules
$fw->registerFilterRule(1,
Expand Down

0 comments on commit c5d6b6c

Please sign in to comment.