mirror of
https://gitlab.com/shorewall/code.git
synced 2024-12-16 19:30:44 +01:00
Apply Steven Springl's patch for ICMP
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@5970 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
parent
85b58ee336
commit
8af394d5b5
@ -16,3 +16,6 @@ Changes in 3.9.2
|
|||||||
7) Moved lib.dynamiczones to Shorewall.
|
7) Moved lib.dynamiczones to Shorewall.
|
||||||
|
|
||||||
8) Fix silly bug in lib.base.
|
8) Fix silly bug in lib.base.
|
||||||
|
|
||||||
|
9) Apply Steven Springl's patch for ICMP.
|
||||||
|
|
||||||
|
@ -70,6 +70,9 @@ Problems corrected in Shorewall 3.9.2
|
|||||||
12) When LOG_MARTIANS=Yes in shorewall.conf, Shorewall no longer clears
|
12) When LOG_MARTIANS=Yes in shorewall.conf, Shorewall no longer clears
|
||||||
the log_martians flag for all interfaces.
|
the log_martians flag for all interfaces.
|
||||||
|
|
||||||
|
13) Thanks to Steven Springl, various problems with ICMP rules have
|
||||||
|
been corrected.
|
||||||
|
|
||||||
Other changes in Shorewall 3.9.2
|
Other changes in Shorewall 3.9.2
|
||||||
|
|
||||||
1) A LOCKFILE option has been added to shorewall.conf. This file is
|
1) A LOCKFILE option has been added to shorewall.conf. This file is
|
||||||
|
@ -688,8 +688,12 @@ sub do_proto( $$$ )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} elsif ( $proto =~ /^(icmp|1)$/i ) {
|
} elsif ( $proto =~ /^(icmp|1)$/i ) {
|
||||||
$output .= "-p icmp --icmp-type $ports " if $ports;
|
my @ports = split /,/, $ports;
|
||||||
fatal_error 'SOURCE PORT(S) not permitted with ICMP' if $sports;
|
my $count = @ports;
|
||||||
|
fatal_error 'Multiple ICMP types are not permitted' if $count > 1;
|
||||||
|
$output .= "-p icmp ";
|
||||||
|
$output .= "--icmp-type $ports " if $count;
|
||||||
|
fatal_error 'SOURCE PORT(S) not permitted with ICMP' if $sports ne "";
|
||||||
} elsif ( $proto =~ /^(ipp2p(:(tcp|udp|all)))?$/i ) {
|
} elsif ( $proto =~ /^(ipp2p(:(tcp|udp|all)))?$/i ) {
|
||||||
require_capability( 'IPP2P' , 'PROTO = ipp2p' );
|
require_capability( 'IPP2P' , 'PROTO = ipp2p' );
|
||||||
$proto = $2 ? $3 : 'tcp';
|
$proto = $2 ? $3 : 'tcp';
|
||||||
|
Loading…
Reference in New Issue
Block a user