* [PATCH] BUG10994: SNAT rules are missing the outgoing interface
@ 2015-12-07 14:57 Alexander Marx
2015-12-10 16:37 ` Michael Tremer
0 siblings, 1 reply; 3+ messages in thread
From: Alexander Marx @ 2015-12-07 14:57 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1057 bytes --]
When creating SNAT rules, the outgoing interface is not set. As a side
effect, traffic that should be send unnatted to a vpn tunnel can be
natted which is a BUG.
With this patch the SNAT rules are getting a outgoing interface
according to the configuration. When selecting the RED Target network,
all SNAT rules will be configured with "-o red0". Otherwise if "all" is
selected, there is no interface in the rule, which matches all networks.
Signed-off-by: Alexander Marx <alexander.marx(a)ipfire.org>
---
config/firewall/rules.pl | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/config/firewall/rules.pl b/config/firewall/rules.pl
index daa9565..8b0c6dd 100644
--- a/config/firewall/rules.pl
+++ b/config/firewall/rules.pl
@@ -467,6 +467,10 @@ sub buildrules {
} elsif ($NAT_MODE eq "SNAT") {
my @nat_options = @options;
+ if ($destination_intf) {
+ push(@nat_options, ("-o", $destination_intf));
+ }
+
push(@nat_options, @source_options);
push(@nat_options, @destination_options);
--
1.9.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] BUG10994: SNAT rules are missing the outgoing interface
2015-12-07 14:57 [PATCH] BUG10994: SNAT rules are missing the outgoing interface Alexander Marx
@ 2015-12-10 16:37 ` Michael Tremer
2015-12-10 18:47 ` Matthias Gutmann
0 siblings, 1 reply; 3+ messages in thread
From: Michael Tremer @ 2015-12-10 16:37 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1262 bytes --]
Is there any evidence that this was tested by somebody else but you?
-Michael
On Mon, 2015-12-07 at 15:57 +0100, Alexander Marx wrote:
> When creating SNAT rules, the outgoing interface is not set. As a
> side
> effect, traffic that should be send unnatted to a vpn tunnel can be
> natted which is a BUG.
> With this patch the SNAT rules are getting a outgoing interface
> according to the configuration. When selecting the RED Target
> network,
> all SNAT rules will be configured with "-o red0". Otherwise if "all"
> is
> selected, there is no interface in the rule, which matches all
> networks.
>
> Signed-off-by: Alexander Marx <alexander.marx(a)ipfire.org>
> ---
> config/firewall/rules.pl | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/config/firewall/rules.pl b/config/firewall/rules.pl
> index daa9565..8b0c6dd 100644
> --- a/config/firewall/rules.pl
> +++ b/config/firewall/rules.pl
> @@ -467,6 +467,10 @@ sub buildrules {
> } elsif ($NAT_MODE
> eq "SNAT") {
> my
> @nat_options = @options;
>
> + if
> ($destination_intf) {
> + push
> (@nat_options, ("-o", $destination_intf));
> + }
> +
> push(@nat_op
> tions, @source_options);
> push(@nat_op
> tions, @destination_options);
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] BUG10994: SNAT rules are missing the outgoing interface
2015-12-10 16:37 ` Michael Tremer
@ 2015-12-10 18:47 ` Matthias Gutmann
0 siblings, 0 replies; 3+ messages in thread
From: Matthias Gutmann @ 2015-12-10 18:47 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1597 bytes --]
Hi Michael,
i've tested it and it works as expected.
Regards
Matthias
> Am 10.12.2015 um 17:37 schrieb Michael Tremer <michael.tremer(a)ipfire.org>:
>
> Is there any evidence that this was tested by somebody else but you?
>
> -Michael
>
>> On Mon, 2015-12-07 at 15:57 +0100, Alexander Marx wrote:
>> When creating SNAT rules, the outgoing interface is not set. As a
>> side
>> effect, traffic that should be send unnatted to a vpn tunnel can be
>> natted which is a BUG.
>> With this patch the SNAT rules are getting a outgoing interface
>> according to the configuration. When selecting the RED Target
>> network,
>> all SNAT rules will be configured with "-o red0". Otherwise if "all"
>> is
>> selected, there is no interface in the rule, which matches all
>> networks.
>>
>> Signed-off-by: Alexander Marx <alexander.marx(a)ipfire.org>
>> ---
>> config/firewall/rules.pl | 4 ++++
>> 1 file changed, 4 insertions(+)
>>
>> diff --git a/config/firewall/rules.pl b/config/firewall/rules.pl
>> index daa9565..8b0c6dd 100644
>> --- a/config/firewall/rules.pl
>> +++ b/config/firewall/rules.pl
>> @@ -467,6 +467,10 @@ sub buildrules {
>> } elsif ($NAT_MODE
>> eq "SNAT") {
>> my
>> @nat_options = @options;
>>
>> + if
>> ($destination_intf) {
>> + push
>> (@nat_options, ("-o", $destination_intf));
>> + }
>> +
>> push(@nat_op
>> tions, @source_options);
>> push(@nat_op
>> tions, @destination_options);
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-12-10 18:47 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-07 14:57 [PATCH] BUG10994: SNAT rules are missing the outgoing interface Alexander Marx
2015-12-10 16:37 ` Michael Tremer
2015-12-10 18:47 ` Matthias Gutmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox