summaryrefslogtreecommitdiffstats
path: root/usr/local
diff options
context:
space:
mode:
authorPhil Davis <phil.davis@inf.org>2014-12-26 13:48:06 +0545
committerPhil Davis <phil.davis@inf.org>2014-12-26 13:48:06 +0545
commit5525974bd179ccd0e01e60dcaa1cd2b3cc1ddde5 (patch)
tree5aeed0d96303c4d823f783f43d0b144574c1264f /usr/local
parent82a2fd790b4ee22a051b84595713dc8633e98bdf (diff)
downloadpfsense-5525974bd179ccd0e01e60dcaa1cd2b3cc1ddde5.zip
pfsense-5525974bd179ccd0e01e60dcaa1cd2b3cc1ddde5.tar.gz
Display tunnel description on IPsec widget
There was not even code to attempt to display the description. Also, when I first created a phase1 and there were no phase2 yet, the widget spat out the warning for the line: foreach ($config['ipsec']['phase2'] as $ph2ent){ ... So I enclosed that in a block: if (isset($config['ipsec']['phase2'])) { ... } Tabbing that block in makes the diff look big when there really is little change - a diff ignoring spacing will look much nicer!
Diffstat (limited to 'usr/local')
-rw-r--r--usr/local/www/widgets/widgets/ipsec.widget.php94
1 files changed, 49 insertions, 45 deletions
diff --git a/usr/local/www/widgets/widgets/ipsec.widget.php b/usr/local/www/widgets/widgets/ipsec.widget.php
index ee587a3..72a1f1b 100644
--- a/usr/local/www/widgets/widgets/ipsec.widget.php
+++ b/usr/local/www/widgets/widgets/ipsec.widget.php
@@ -68,57 +68,59 @@ if (isset($config['ipsec']['phase1'])) { ?>
$ipsec_detail_array = array();
$ikev1num = array();
- foreach ($config['ipsec']['phase2'] as $ph2ent){
- if ($ph2ent['remoteid']['type'] == "mobile")
- continue;
- if (!ipsec_lookup_phase1($ph2ent,$ph1ent))
- continue;
-
- if (isset($ph1ent['disabled']) || isset($ph2ent['disabled']))
- continue;
-
- if ($ph1ent['iketype'] == 'ikev1') {
- if (!isset($ikev1num[$ph1ent['ikeid']]))
- $ikev1num[$ph1ent['ikeid']] = 0;
- else
- $ikev1num[$ph1ent['ikeid']]++;
- $ikeid = "con{$ph1ent['ikeid']}00" . $ikev1num[$ph1ent['ikeid']];
- } else
- $ikeid = "con{$ph1ent['ikeid']}";
-
- $found = false;
- foreach ($ipsec_status['query']['ikesalist']['ikesa'] as $ikesa) {
- if ($ikeid == $ikesa['peerconfig']) {
- $found = true;
- $ph2ikeid = $ikesa['id'];
- if (ipsec_phase1_status($ipsec_status['query']['ikesalist']['ikesa'], $ph2ikeid)) {
- /* tunnel is up */
- $iconfn = "true";
- $activecounter++;
- } else {
- /* tunnel is down */
- $iconfn = "false";
- $inactivecounter++;
+ if (isset($config['ipsec']['phase2'])) {
+ foreach ($config['ipsec']['phase2'] as $ph2ent) {
+ if ($ph2ent['remoteid']['type'] == "mobile")
+ continue;
+ if (!ipsec_lookup_phase1($ph2ent,$ph1ent))
+ continue;
+
+ if (isset($ph1ent['disabled']) || isset($ph2ent['disabled']))
+ continue;
+
+ if ($ph1ent['iketype'] == 'ikev1') {
+ if (!isset($ikev1num[$ph1ent['ikeid']]))
+ $ikev1num[$ph1ent['ikeid']] = 0;
+ else
+ $ikev1num[$ph1ent['ikeid']]++;
+ $ikeid = "con{$ph1ent['ikeid']}00" . $ikev1num[$ph1ent['ikeid']];
+ } else
+ $ikeid = "con{$ph1ent['ikeid']}";
+
+ $found = false;
+ foreach ($ipsec_status['query']['ikesalist']['ikesa'] as $ikesa) {
+ if ($ikeid == $ikesa['peerconfig']) {
+ $found = true;
+ $ph2ikeid = $ikesa['id'];
+ if (ipsec_phase1_status($ipsec_status['query']['ikesalist']['ikesa'], $ph2ikeid)) {
+ /* tunnel is up */
+ $iconfn = "true";
+ $activecounter++;
+ } else {
+ /* tunnel is down */
+ $iconfn = "false";
+ $inactivecounter++;
+ }
}
}
- }
- if ($found === false) {
- /* tunnel is down */
- $iconfn = "false";
- $inactivecounter++;
- }
+ if ($found === false) {
+ /* tunnel is down */
+ $iconfn = "false";
+ $inactivecounter++;
+ }
- $ipsec_detail_array[] = array('src' => convert_friendly_interface_to_friendly_descr($ph1ent['interface']),
- 'dest' => $ph1ent['remote-gateway'],
- 'remote-subnet' => ipsec_idinfo_to_text($ph2ent['remoteid']),
- 'descr' => $ph2ent['descr'],
- 'status' => $iconfn);
+ $ipsec_detail_array[] = array('src' => convert_friendly_interface_to_friendly_descr($ph1ent['interface']),
+ 'dest' => $ph1ent['remote-gateway'],
+ 'remote-subnet' => ipsec_idinfo_to_text($ph2ent['remoteid']),
+ 'descr' => $ph2ent['descr'],
+ 'status' => $iconfn);
+ }
}
unset($ikev1num);
}
- if (isset($config['ipsec']['phase2'])){ ?>
+ if (isset($config['ipsec']['phase2'])) { ?>
<div id="ipsec-Overview" style="display:block;background-color:#EEEEEE;">
<div>
@@ -158,11 +160,13 @@ if (isset($config['ipsec']['phase1'])) { ?>
<br />
(<?php echo htmlspecialchars($ipsec['dest']);?>)
</div>
- <div class="listr" style="display:table-cell;width:90px"></div>
+ <div class="listr" style="display:table-cell;width:90px">
+ <?php echo htmlspecialchars($ipsec['descr']);?>
+ </div>
<div class="listr" style="display:table-cell;width:37px" align="center">
<?php
- if($ipsec['status'] == "true") {
+ if ($ipsec['status'] == "true") {
/* tunnel is up */
$iconfn = "interface_up";
} else {
OpenPOWER on IntegriCloud