public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [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

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