mirror of
https://gitlab.com/shorewall/code.git
synced 2025-06-01 07:25:42 +02:00
Fix bad exclusion bug
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@6489 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
parent
32f8fbfc81
commit
c03b030025
@ -1363,7 +1363,7 @@ sub generate_matrix() {
|
|||||||
|
|
||||||
for my $host ( @{$exclusionsref} ) {
|
for my $host ( @{$exclusionsref} ) {
|
||||||
my ( $interface, $net ) = split /:/, $host;
|
my ( $interface, $net ) = split /:/, $host;
|
||||||
insert_rule $chainref , $num++, join( '', match_source_dev $interface , match_source_net( $net ), '-j RETURN' );
|
insert_rule $chainref , $num++, join( '', match_dest_dev $interface , match_dest_net( $net ), '-j RETURN' );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1375,7 +1375,7 @@ sub generate_matrix() {
|
|||||||
|
|
||||||
for my $host ( @{$exclusionsref} ) {
|
for my $host ( @{$exclusionsref} ) {
|
||||||
my ( $interface, $net ) = split /:/, $host;
|
my ( $interface, $net ) = split /:/, $host;
|
||||||
add_rule $chainref , join( '', match_source_dev $interface, match_source_net( $net ), '-j RETURN' );
|
add_rule $chainref , join( '', match_dest_dev $interface, match_dest_net( $net ), '-j RETURN' );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user