summaryrefslogtreecommitdiffstats
path: root/usr/local/www/widgets/widgets/ipsec.widget.php
diff options
context:
space:
mode:
Diffstat (limited to 'usr/local/www/widgets/widgets/ipsec.widget.php')
-rw-r--r--usr/local/www/widgets/widgets/ipsec.widget.php13
1 files changed, 12 insertions, 1 deletions
diff --git a/usr/local/www/widgets/widgets/ipsec.widget.php b/usr/local/www/widgets/widgets/ipsec.widget.php
index ee17a29..d53adf8 100644
--- a/usr/local/www/widgets/widgets/ipsec.widget.php
+++ b/usr/local/www/widgets/widgets/ipsec.widget.php
@@ -93,8 +93,18 @@ if (isset($config['ipsec']['phase1'])) { ?>
$found = false;
foreach ($ipsec_status['query']['ikesalist']['ikesa'] as $ikesa) {
- if ($ikeid == $ikesa['peerconfig']) {
+ if (isset($ikesa['childsalist']) && isset($ikesa['childsalist']['childsa'])) {
+ foreach($ikesa['childsalist']['childsa'] as $childsa) {
+ if ($ikeid == $childsa['childconfig']) {
+ $found = true;
+ break;
+ }
+ }
+ } else if ($ikeid == $ikesa['peerconfig']) {
$found = true;
+ }
+
+ if ($found === true) {
if ($ikesa['status'] == 'established') {
/* tunnel is up */
$iconfn = "true";
@@ -104,6 +114,7 @@ if (isset($config['ipsec']['phase1'])) { ?>
$iconfn = "false";
$inactivecounter++;
}
+ break;
}
}
OpenPOWER on IntegriCloud