From mboxrd@z Thu Jan 1 00:00:00 1970 From: jbsky To: development@lists.ipfire.org Subject: [PATCH 2/2] Modified file : html/cgi-bin/connections.cgi Date: Mon, 09 Jul 2018 22:07:40 +0200 Message-ID: <20180709200740.28846-1-blais.julien.30@gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8568916357760833654==" List-Id: --===============8568916357760833654== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Add IPSec network in vpn color code. --- html/cgi-bin/connections.cgi | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/html/cgi-bin/connections.cgi b/html/cgi-bin/connections.cgi index e9e9e335c..0e3680d20 100644 --- a/html/cgi-bin/connections.cgi +++ b/html/cgi-bin/connections.cgi @@ -256,6 +256,15 @@ if (-e "${General::swroot}/ovpn/ccd.conf") { } } +#Add IPSec net + +my %ipsecsettings=(); +&General::readhash("${General::swroot}/vpn/settings", \%ipsecsettings); +my ($network, $mask) = split("/", $ipsecsettings{'RW_NET'}); +push(@network, $network); +push(@masklen, $mask); +push(@colour, ${Header::colourvpn + open(IPSEC, "${General::swroot}/vpn/config"); my @ipsec = ; close(IPSEC); -- 2.12.2 --===============8568916357760833654==--