diag_ipsec_sad.php 3.29 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1
<?php
2

Ad Schellevis's avatar
Ad Schellevis committed
3
/*
4 5 6 7
    Copyright (C) 2014 Deciso B.V.
    Copyright (C) 2004-2009 Scott Ullrich
    Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
    All rights reserved.
Ad Schellevis's avatar
Ad Schellevis committed
8

9 10
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are met:
Ad Schellevis's avatar
Ad Schellevis committed
11

12 13
    1. Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
Ad Schellevis's avatar
Ad Schellevis committed
14

15 16 17
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.
Ad Schellevis's avatar
Ad Schellevis committed
18

19 20 21 22 23 24 25 26 27 28
    THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
    INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
    AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
    AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
    OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    POSSIBILITY OF SUCH DAMAGE.
Ad Schellevis's avatar
Ad Schellevis committed
29 30
*/

31
require_once("guiconfig.inc");
32
require_once("ipsec.inc");
33
require_once("services.inc");
34
require_once("interfaces.inc");
35

36
$service_hook = 'ipsec';
37

Ad Schellevis's avatar
Ad Schellevis committed
38 39 40
include("head.inc");

$sad = ipsec_dump_sad();
41
legacy_html_escape_form_data($sad);
Ad Schellevis's avatar
Ad Schellevis committed
42 43
?>

44 45
<body>
<?php include("fbegin.inc"); ?>
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
  <section class="page-content-main">
    <div class="container-fluid">
      <div class="row">
        <section class="col-xs-12">
          <div class="tab-content content-box col-xs-12">
              <div class="table-responsive">
                <table class="table table-striped">
                  <?php if (count($sad)): ?>
                  <tr>
                    <td><?=gettext("Source");?></td>
                    <td><?=gettext("Destination");?></td>
                    <td><?=gettext("Protocol");?></td>
                    <td><?=gettext("SPI");?></td>
                    <td><?=gettext("Enc. alg.");?></td>
                    <td><?=gettext("Auth. alg.");?></td>
                    <td><?=gettext("Data");?></td>
                  </tr>
                  <?php foreach ($sad as $sa): ?>
                  <tr>
                    <td><?=$sa['src'];?></td>
                    <td><?=$sa['dst'];?></td>
                    <td><?=strtoupper($sa['proto']);?></td>
                    <td><?=$sa['spi'];?></td>
                    <td><?=$sa['ealgo'];?></td>
                    <td><?=$sa['aalgo'];?></td>
                    <td><?=$sa['data'];?></td>
                  </tr>
                  <?php endforeach; ?>
                  <?php else: ?>
                  <tr>
                    <td colspan="7">
                      <p><strong><?=gettext("No IPsec security associations.");?></strong></p>
                    </td>
                  </tr>
                  <?php endif; ?>
                </table>
              </div>
83
            </div>
84 85 86 87 88
          </div>
        </section>
      </div>
    </div>
  </section>
89 90


91
<?php include("foot.inc"); ?>