Project

General

Profile

Download (5.06 KB) Statistics
| Branch: | Tag: | Revision:
1
<?php
2
/* $Id$ */
3
/*
4
	diag_ipsec_spd.php
5
	Copyright (C) 2004-2009 Scott Ullrich
6
	Copyright (C) 2013-2015 Electric Sheep Fencing, LP
7
	All rights reserved.
8

    
9
	originally part of m0n0wall (http://m0n0.ch/wall)
10
	Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
11
	All rights reserved.
12

    
13
	Redistribution and use in source and binary forms, with or without
14
	modification, are permitted provided that the following conditions are met:
15

    
16
	1. Redistributions of source code must retain the above copyright notice,
17
	   this list of conditions and the following disclaimer.
18

    
19
	2. Redistributions in binary form must reproduce the above copyright
20
	   notice, this list of conditions and the following disclaimer in the
21
	   documentation and/or other materials provided with the distribution.
22

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

    
35
/*
36
	pfSense_BUILDER_BINARIES:	/sbin/setkey
37
	pfSense_MODULE:	ipsec
38
*/
39

    
40
##|+PRIV
41
##|*IDENT=page-status-ipsec-spd
42
##|*NAME=Status: IPsec: SPD page
43
##|*DESCR=Allow access to the 'Status: IPsec: SPD' page.
44
##|*MATCH=diag_ipsec_spd.php*
45
##|-PRIV
46

    
47
require("guiconfig.inc");
48
require("ipsec.inc");
49

    
50
$pgtitle = array(gettext("Status"),gettext("IPsec"),gettext("SPD"));
51
$shortcut_section = "ipsec";
52
include("head.inc");
53

    
54
$spd = ipsec_dump_spd();
55
?>
56

    
57
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
58
	<?php include("fbegin.inc"); ?>
59
	<table width="100%" border="0" cellpadding="0" cellspacing="0" summary="status ipsec spd">
60
		<tr>
61
			<td>
62
				<?php
63
					$tab_array = array();
64
					$tab_array[0] = array(gettext("Overview"), false, "diag_ipsec.php");
65
					$tab_array[1] = array(gettext("Leases"), false, "diag_ipsec_leases.php");
66
					$tab_array[2] = array(gettext("SAD"), false, "diag_ipsec_sad.php");
67
					$tab_array[3] = array(gettext("SPD"), true, "diag_ipsec_spd.php");
68
					$tab_array[4] = array(gettext("Logs"), false, "diag_logs_ipsec.php");
69
					display_top_tabs($tab_array);
70
				?>
71
			</td>
72
		</tr>
73
		<tr>
74
			<td>
75
				<div id="mainarea" style="background:#eeeeee">
76
					<table class="tabcont sortable" width="100%" border="0" cellpadding="6" cellspacing="0" summary="main area">
77
						<?php if (count($spd)): ?>
78
						<tr>
79
							<td class="listhdrr nowrap"><?= gettext("Source"); ?></td>
80
							<td class="listhdrr nowrap"><?= gettext("Destination"); ?></td>
81
							<td class="listhdrr nowrap"><?= gettext("Direction"); ?></td>
82
							<td class="listhdrr nowrap"><?= gettext("Protocol"); ?></td>
83
							<td class="listhdrr nowrap"><?= gettext("Tunnel endpoints"); ?></td>
84
							<td class="list nowrap"></td>
85
						</tr>
86
						<?php foreach ($spd as $sp): ?>
87
						<tr>
88
							<td class="listlr" valign="top"><?=htmlspecialchars($sp['srcid']);?></td>
89
							<td class="listr" valign="top"><?=htmlspecialchars($sp['dstid']);?></td>
90
							<td class="listr" valign="top">
91
								<img src="/themes/<?= $g['theme']; ?>/images/icons/icon_<?=$sp['dir'];?>.gif" width="11" height="11" style="margin-top: 2px" alt="direction" />
92
							</td>
93
							<td class="listr" valign="top"><?=htmlspecialchars(strtoupper($sp['proto']));?></td>
94
							<td class="listr" valign="top"><?=htmlspecialchars($sp['src']);?> -> <?=htmlspecialchars($sp['dst']);?></td>
95
							<td class="list nowrap">
96
								<?php
97
									$args = "srcid=".rawurlencode($sp['srcid']);
98
									$args .= "&amp;dstid=".rawurlencode($sp['dstid']);
99
									$args .= "&amp;dir=".rawurlencode($sp['dir']);
100
								?>
101
							</td>
102
						</tr>
103
						<?php endforeach; ?>
104
					</table>
105
					<br />
106
					<table class="tabcont" border="0" cellspacing="0" cellpadding="6" summary="policies">
107
						<tr>
108
							<td width="16"><img src="/themes/<?= $g['theme']; ?>/images/icons/icon_in.gif" width="11" height="11" alt="in" /></td>
109
							<td><?= gettext("incoming (as seen by firewall)"); ?></td>
110
						</tr>
111
						<tr>
112
							<td colspan="5" height="4"></td>
113
						</tr>
114
						<tr>
115
							<td><img src="/themes/<?= $g['theme']; ?>/images/icons/icon_out.gif" width="11" height="11" alt="out" /></td>
116
							<td><?= gettext("outgoing (as seen by firewall)"); ?></td>
117
						</tr>
118
						<?php else: ?>
119
						<tr>
120
							<td>
121
								<p><strong><?= gettext("No IPsec security policies."); ?></strong></p>
122
							</td>
123
						</tr>
124
						<?php endif; ?>
125
					</table>
126
				</div>
127
			</td>
128
		</tr>
129
	</table>
130

    
131
<p class="vexpl">
132
<span class="red"><strong><?= gettext("Note:"); ?><br /></strong></span>
133
<?= gettext("You can configure your IPsec"); ?> <a href="vpn_ipsec.php"><?= gettext("here."); ?></a>
134
</p>
135

    
136
<?php include("fend.inc"); ?>
137
</body>
138
</html>
(17-17/256)