Project

General

Profile

Download (7.57 KB) Statistics
| Branch: | Tag: | Revision:
1 5b237745 Scott Ullrich
<?php
2 b46bfcf5 Bill Marquette
/* $Id$ */
3 5b237745 Scott Ullrich
/*
4
	system_routes.php
5
	part of m0n0wall (http://m0n0.ch/wall)
6 8450bc24 Scott Ullrich
7 5b237745 Scott Ullrich
	Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
8
	All rights reserved.
9 8450bc24 Scott Ullrich
10 5b237745 Scott Ullrich
	Redistribution and use in source and binary forms, with or without
11
	modification, are permitted provided that the following conditions are met:
12 8450bc24 Scott Ullrich
13 5b237745 Scott Ullrich
	1. Redistributions of source code must retain the above copyright notice,
14
	   this list of conditions and the following disclaimer.
15 8450bc24 Scott Ullrich
16 5b237745 Scott Ullrich
	2. Redistributions in binary form must reproduce the above copyright
17
	   notice, this list of conditions and the following disclaimer in the
18
	   documentation and/or other materials provided with the distribution.
19 8450bc24 Scott Ullrich
20 5b237745 Scott Ullrich
	THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
21
	INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
22
	AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
23
	AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
24
	OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25
	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26
	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27
	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28
	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29
	POSSIBILITY OF SUCH DAMAGE.
30
*/
31 1d333258 Scott Ullrich
/*
32
	pfSense_MODULE:	routing
33
*/
34 5b237745 Scott Ullrich
35 6b07c15a Matthew Grooms
##|+PRIV
36
##|*IDENT=page-system-staticroutes
37
##|*NAME=System: Static Routes page
38
##|*DESCR=Allow access to the 'System: Static Routes' page.
39
##|*MATCH=system_routes.php*
40
##|-PRIV
41
42 5b237745 Scott Ullrich
require("guiconfig.inc");
43 7a927e67 Scott Ullrich
require_once("functions.inc");
44
require_once("filter.inc");
45
require_once("shaper.inc");
46 5b237745 Scott Ullrich
47
if (!is_array($config['staticroutes']['route']))
48
	$config['staticroutes']['route'] = array();
49
50
$a_routes = &$config['staticroutes']['route'];
51 6fdea6a2 smos
$a_gateways = return_gateways_array(true, true);
52 79eaddf4 Renato Botelho
$changedesc = gettext("Static Routes") . ": ";
53 5b237745 Scott Ullrich
54
if ($_POST) {
55
56
	$pconfig = $_POST;
57
58
	if ($_POST['apply']) {
59 691dade5 Scott Ullrich
60 5b237745 Scott Ullrich
		$retval = 0;
61 3851094f Scott Ullrich
62 e8471084 Ermal
		if (file_exists("{$g['tmp_path']}/.system_routes.apply")) {
63 bfe407e5 Warren Baker
			$toapplylist = unserialize(file_get_contents("{$g['tmp_path']}/.system_routes.apply"));
64 e8471084 Ermal
			foreach ($toapplylist as $toapply)
65
				mwexec("{$toapply}");
66
			
67
			@unlink("{$g['tmp_path']}/.system_routes.apply");
68
		}
69
70 3851094f Scott Ullrich
		$retval = system_routing_configure();
71
		$retval |= filter_configure();
72 13bbe450 Seth Mos
		/* reconfigure our gateway monitor */
73
		setup_gateways_monitor();
74 3851094f Scott Ullrich
75 5b237745 Scott Ullrich
		$savemsg = get_std_save_message($retval);
76 a368a026 Ermal Lu?i
		if ($retval == 0)
77
			clear_subsystem_dirty('staticroutes');
78 5b237745 Scott Ullrich
	}
79
}
80
81
if ($_GET['act'] == "del") {
82
	if ($a_routes[$_GET['id']]) {
83 40fb81a1 Carlos Eduardo Ramos
		$changedesc .= gettext("removed route to") . " " . $a_routes[$_GET['id']['route']];
84 9c115b40 Ermal
		list($ip, $mask) = explode("/", $a_routes[$_GET['id']]['network']);
85
		if (is_ipaddr($ip)) {
86 aeaf0a67 Ermal
			$family = "";
87 9c115b40 Ermal
			if(is_ipaddrv6($ip))
88
				$family = "-inet6";
89
			mwexec("/sbin/route delete {$family} " . escapeshellarg($a_routes[$_GET['id']]['network']));
90
			unset($a_routes[$_GET['id']]);
91
			write_config($changedesc);
92
			header("Location: system_routes.php");
93
			exit;
94
		}
95 5b237745 Scott Ullrich
	}
96
}
97 7f43ca88 Scott Ullrich
98 a2927ebf Vinicius Coque
$pgtitle = array(gettext("System"),gettext("Static Routes"));
99 b32dd0a6 jim-p
$shortcut_section = "routing";
100 02ca24c9 jim-p
101 7f43ca88 Scott Ullrich
include("head.inc");
102
103 5b237745 Scott Ullrich
?>
104
105
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
106
<?php include("fbegin.inc"); ?>
107
<form action="system_routes.php" method="post">
108 691dade5 Scott Ullrich
<input type="hidden" name="y1" value="1">
109 5b237745 Scott Ullrich
<?php if ($savemsg) print_info_box($savemsg); ?>
110 a368a026 Ermal Lu?i
<?php if (is_subsystem_dirty('staticroutes')): ?><p>
111 40fb81a1 Carlos Eduardo Ramos
<?php print_info_box_np(sprintf(gettext("The static route configuration has been changed.%sYou must apply the changes in order for them to take effect."), "<br>"));?><br>
112 5b237745 Scott Ullrich
<?php endif; ?>
113 0f282d7a Scott Ullrich
114 5b237745 Scott Ullrich
              <table width="100%" border="0" cellpadding="0" cellspacing="0">
115 d173230c Seth Mos
		<tr>
116
		  <td>
117
<?php
118 ba7ec830 Scott Ullrich
		$tab_array = array();
119 a2927ebf Vinicius Coque
		$tab_array[0] = array(gettext("Gateways"), false, "system_gateways.php");
120
		$tab_array[1] = array(gettext("Routes"), true, "system_routes.php");
121
		$tab_array[2] = array(gettext("Groups"), false, "system_gateway_groups.php");
122 ba7ec830 Scott Ullrich
		display_top_tabs($tab_array);
123 d173230c Seth Mos
?>
124 8e830f0f Scott Ullrich
</td></tr>
125
 <tr>
126
   <td>
127
	<div id="mainarea">
128
             <table class="tabcont" width="100%" border="0" cellpadding="0" cellspacing="0">
129 5b237745 Scott Ullrich
                <tr>
130 a2927ebf Vinicius Coque
                  <td width="25%" class="listhdrr"><?=gettext("Network");?></td>
131
                  <td width="20%" class="listhdrr"><?=gettext("Gateway");?></td>
132
                  <td width="15%" class="listhdrr"><?=gettext("Interface");?></td>
133
                  <td width="30%" class="listhdr"><?=gettext("Description");?></td>
134 d415d821 Seth Mos
                  <td width="10%" class="list">
135
			<table border="0" cellspacing="0" cellpadding="1">
136
			   <tr>
137 18f7352b Seth Mos
				<td width="17"></td>
138 d415d821 Seth Mos
				<td><a href="system_routes_edit.php"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0"></a></td>
139
			   </tr>
140
			</table>
141
		  </td>
142
		</tr>
143 5b237745 Scott Ullrich
                <tr>
144 d173230c Seth Mos
			<?php $i = 0; foreach ($a_routes as $route): ?>
145 bfe407e5 Warren Baker
			<?php
146
				if (isset($route['disabled'])) {
147
					$textss = "<span class=\"gray\">";
148
					$textse = "</span>";
149
				} else
150
					$textss = $textse = "";
151
			?>
152 e68492cc Bill Marquette
                  <td class="listlr" ondblclick="document.location='system_routes_edit.php?id=<?=$i;?>';">
153 bfe407e5 Warren Baker
                    <?=$textss;?><?=strtolower($route['network']);?><?=$textse;?>
154 5b237745 Scott Ullrich
                  </td>
155 e68492cc Bill Marquette
                  <td class="listr" ondblclick="document.location='system_routes_edit.php?id=<?=$i;?>';">
156 bfe407e5 Warren Baker
					<?=$textss;?>
157 d173230c Seth Mos
			<?php
158 3a78180e Chris Buechler
				echo htmlentities($a_gateways[$route['gateway']]['name']) . " - " . htmlentities($a_gateways[$route['gateway']]['gateway']);
159 d173230c Seth Mos
			?>
160 bfe407e5 Warren Baker
					<?=$textse;?>
161 5b237745 Scott Ullrich
                  </td>
162 e68492cc Bill Marquette
                  <td class="listr" ondblclick="document.location='system_routes_edit.php?id=<?=$i;?>';">
163 bfe407e5 Warren Baker
					<?=$textss;?>
164 d173230c Seth Mos
			<?php
165 a529aced Ermal
				echo convert_friendly_interface_to_friendly_descr($a_gateways[$route['gateway']]['friendlyiface']) . " ";
166 d173230c Seth Mos
			?>
167 bfe407e5 Warren Baker
					<?=$textse;?>
168 5b237745 Scott Ullrich
                  </td>
169 e68492cc Bill Marquette
                  <td class="listbg" ondblclick="document.location='system_routes_edit.php?id=<?=$i;?>';">
170 bfe407e5 Warren Baker
                    <?=$textss;?><?=htmlspecialchars($route['descr']);?>&nbsp;<?=$textse;?>
171 5b237745 Scott Ullrich
                  </td>
172 18f7352b Seth Mos
                  <td valign="middle" nowrap class="list">
173
			<table border="0" cellspacing="0" cellpadding="1">
174
			   <tr>
175
				<td><a href="system_routes_edit.php?id=<?=$i;?>"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_e.gif" width="17" height="17" border="0"></a>
176 a2927ebf Vinicius Coque
				<td><a href="system_routes.php?act=del&id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this route?");?>')"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0"></a></td>
177 18f7352b Seth Mos
			   </tr>
178
			   <tr>
179
				<td width="17"></td>
180
				<td><a href="system_routes_edit.php?dup=<?=$i;?>"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0"></a></td>
181
			   </tr>
182
			</table>
183 d173230c Seth Mos
		  </td>
184 18f7352b Seth Mos
		</tr>
185 5b237745 Scott Ullrich
			  <?php $i++; endforeach; ?>
186 8450bc24 Scott Ullrich
                <tr>
187 5b237745 Scott Ullrich
                  <td class="list" colspan="4"></td>
188 d415d821 Seth Mos
                  <td class="list">
189
			<table border="0" cellspacing="0" cellpadding="1">
190
			   <tr>
191 18f7352b Seth Mos
				<td width="17"></td>
192 d415d821 Seth Mos
				<td><a href="system_routes_edit.php"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0"></a></td>
193
			   </tr>
194 8e830f0f Scott Ullrich
		                    </table>
195
				  </td>
196
		                </tr>
197 d415d821 Seth Mos
			</table>
198 8e830f0f Scott Ullrich
			</div>
199
			</td>
200
		  </tr>
201
		</table>
202 5b237745 Scott Ullrich
            </form>
203 ea53e38f Renato Botelho
			<p><b><?=gettext("Note:");?></b>  <?=gettext("Do not enter static routes for networks assigned on any interface of this firewall.  Static routes are only used for networks reachable via a different router, and not reachable via your default gateway.");?></p>
204 5b237745 Scott Ullrich
<?php include("fend.inc"); ?>
205
</body>
206
</html>