mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-23 16:13:18 +01:00
Fix 'upnpclient' on required interfaces
This commit is contained in:
parent
51e7bcdaf4
commit
5cb9ff0009
@ -631,10 +631,14 @@ sub add_common_rules() {
|
|||||||
my $base = uc chain_base $interface;
|
my $base = uc chain_base $interface;
|
||||||
my $variable = get_interface_gateway $interface;
|
my $variable = get_interface_gateway $interface;
|
||||||
|
|
||||||
add_commands( $chainref,
|
if ( interface_is_optional $interface ) {
|
||||||
qq(if [ -n "\$${base}_IS_USABLE" -a -n "$variable" ]; then) ,
|
add_commands( $chainref,
|
||||||
qq( echo -A $chainref->{name} -i $interface -s $variable -p udp -j ACCEPT >&3) ,
|
qq(if [ -n "\$${base}_IS_USABLE" -a -n "$variable" ]; then) ,
|
||||||
qq(fi) );
|
qq( echo -A $chainref->{name} -i $interface -s $variable -p udp -j ACCEPT >&3) ,
|
||||||
|
qq(fi) );
|
||||||
|
} else {
|
||||||
|
add_commands( $chainref, qq(echo -A $chainref->{name} -i $interface -s $variable -p udp -j ACCEPT >&3) );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -185,6 +185,9 @@ Shorewall 4.4.0
|
|||||||
4) Given that Jozsef Kadlecsik has not yet released ipset 3.1, ipset
|
4) Given that Jozsef Kadlecsik has not yet released ipset 3.1, ipset
|
||||||
bindings are once again supported.
|
bindings are once again supported.
|
||||||
|
|
||||||
|
5) The 'upnpclient' option only worked correctly if 'optional' was
|
||||||
|
also specified for the interface.
|
||||||
|
|
||||||
----------------------------------------------------------------------------
|
----------------------------------------------------------------------------
|
||||||
K N O W N P R O B L E M S R E M A I N I N G
|
K N O W N P R O B L E M S R E M A I N I N G
|
||||||
----------------------------------------------------------------------------
|
----------------------------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user