From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: Re: [PATCH] BUG 11696: VPN Subnets missing from wpad.dat Date: Mon, 13 May 2019 16:16:10 +0100 Message-ID: <70839A90-1C10-4E82-8064-F126A30142DA@ipfire.org> In-Reply-To: <015101d5083e$bd9327b0$38b97710$@bluewin.ch> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6411256824602824680==" List-Id: --===============6411256824602824680== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Hello Oliver, Thanks for sending the patch. Unfortunately it got line-wrapped. Could you have a look why that has happened? -Michael > On 11 May 2019, at 22:16, wrote: >=20 > This patch fixes the behavior in 11696 and adds IPSEC and OpenVPN n2n > subnets to wpad.dat so they don't pass through the proxy. > As I currently don't have any OpenVPN n2n connections, therefore I could not > fully test this part, however some dry-runs looked rather promising. >=20 > Regards > Oliver >=20 > --- > html/cgi-bin/proxy.cgi | 24 ++++++++++++++++++++++++ > 1 file changed, 24 insertions(+) >=20 > diff --git a/html/cgi-bin/proxy.cgi b/html/cgi-bin/proxy.cgi > index 6daa7fb..e7ee1f3 100644 > --- a/html/cgi-bin/proxy.cgi > +++ b/html/cgi-bin/proxy.cgi > @@ -2738,6 +2738,10 @@ sub write_acls >=20 > sub writepacfile > { > + my %vpnconfig=3D(); > + my %ovpnconfig=3D(); > + &General::readhasharray("${General::swroot}/vpn/config", > \%vpnconfig); > + &General::readhasharray("${General::swroot}/ovpn/ovpnconfig", > \%ovpnconfig); > open(FILE, ">/srv/web/ipfire/html/proxy.pac"); > flock(FILE, 2); > print FILE "function FindProxyForURL(url, host)\n"; > @@ -2763,6 +2767,26 @@ END > print FILE " (isInNet(host, > \"$netsettings{'ORANGE_NETADDRESS'}\", \"$netsettings{'ORANGE_NETMASK'}\")) > ||\n"; > } >=20 > + foreach my $key (sort { uc($vpnconfig{$a}[1]) cmp > uc($vpnconfig{$b}[1]) } keys %vpnconfig) { > + if ($vpnconfig{$key}[0] eq 'on' && $vpnconfig{$key}[3] ne > 'host') { > + my @networks =3D split(/\|/, $vpnconfig{$key}[11]); > + foreach my $network (@networks) { > + my ($vpnip, $vpnsub) =3D split("/", $network); > + $vpnsub =3D > &Network::convert_prefix2netmask($vpnsub) || $vpnsub; > + print FILE " (isInNet(host, \"$vpnip\", > \"$vpnsub\")) ||\n"; > + } > + } > + } > + > + foreach my $key (sort { uc($ovpnconfig{$a}[1]) cmp > uc($ovpnconfig{$b}[1]) } keys %ovpnconfig) { > + if ($ovpnconfig{$key}[0] eq 'on' && $ovpnconfig{$key}[3] ne > 'host') { > + my @networks =3D split(/\|/, $ovpnconfig{$key}[11]); > + foreach my $network (@networks) { > + my ($vpnip, $vpnsub) =3D split("/", $network); > + print FILE " (isInNet(host, \"$vpnip\", > \"$vpnsub\")) ||\n"; > + } > + } > + } > print FILE < (isInNet(host, "169.254.0.0", "255.255.0.0")) > ) > --=20 > 1.8.3.1 >=20 >=20 --===============6411256824602824680==--