public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] Squid: Exclude remote OpenVPN-N2N subnet from transparent proxy
@ 2018-06-18 18:32 Erik Kapfer
  2018-06-19 10:39 ` Michael Tremer
  2018-06-19 13:53 ` [PATCH] " Erik Kapfer
  0 siblings, 2 replies; 5+ messages in thread
From: Erik Kapfer @ 2018-06-18 18:32 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1078 bytes --]

Patch is from bug #11614
With the please to deliver it for further review to the dev mailinglist.

Signed-off-by: Erik Kapfer <erik.kapfer(a)ipfire.org>
---
 src/initscripts/system/squid | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/src/initscripts/system/squid b/src/initscripts/system/squid
index 7255c0a..267a416 100644
--- a/src/initscripts/system/squid
+++ b/src/initscripts/system/squid
@@ -37,6 +37,17 @@ transparent() {
 		iptables -t nat -A SQUID -i $1 -p tcp -d `echo "$LINE" | awk -F, '{ print $13 }'` --dport 80 -j RETURN
 		done < $FILE
 
+		FILE=/var/ipfire/ovpn/ovpnconfig
+
+		while read LINE; do
+			let COUNT=$COUNT+1
+			CONN_TYPE=`echo "$LINE" | awk -F, '{ print $5 }'`
+			if [ "$CONN_TYPE" != "net" ]; then
+				continue
+			fi
+		iptables -t nat -A SQUID -i $1 -p tcp -d `echo "$LINE" | awk -F, '{ print $13 }'` --dport 80 -j RETURN
+		done < $FILE
+
 		if [ "$RED_TYPE" == "STATIC" ]; then
 			iptables -t nat -A SQUID -i $1 -p tcp -d $RED_NETADDRESS/$RED_NETMASK --dport 80 -j RETURN
 		fi
-- 
2.7.4


^ permalink raw reply	[flat|nested] 5+ messages in thread
[parent not found: <d892a3e1-ad77-91f7-fd47-a41e6ac463d1@rymes.com>]

end of thread, other threads:[~2018-06-19 18:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-18 18:32 [PATCH] Squid: Exclude remote OpenVPN-N2N subnet from transparent proxy Erik Kapfer
2018-06-19 10:39 ` Michael Tremer
2018-06-19 14:41   ` [PATCH v2] squid: Exclude OpenVPN remote subnets " Erik Kapfer
2018-06-19 13:53 ` [PATCH] " Erik Kapfer
     [not found] <d892a3e1-ad77-91f7-fd47-a41e6ac463d1@rymes.com>
2018-06-19 18:23 ` [PATCH v2] " ummeegge

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox