Project

General

Profile

Download (7.95 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 a529aced Ermal
$a_gateways = return_gateways_array(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
		$retval = system_routing_configure();
63
		$retval |= filter_configure();
64 13bbe450 Seth Mos
		/* reconfigure our gateway monitor */
65
		setup_gateways_monitor();
66 3851094f Scott Ullrich
67 5b237745 Scott Ullrich
		$savemsg = get_std_save_message($retval);
68 a368a026 Ermal Lu?i
		if ($retval == 0)
69
			clear_subsystem_dirty('staticroutes');
70 2b87adae Bill Marquette
	} else {
71
		if ($_POST['enablefastrouting'] == "") {
72
			/* Only update config if something changed */
73
			if (isset($config['staticroutes']['enablefastrouting'])) {
74 40fb81a1 Carlos Eduardo Ramos
				$changedesc .= " " . gettext("disable fast routing");
75 2b87adae Bill Marquette
				unset($config['staticroutes']['enablefastrouting']);
76
				write_config($changedesc);
77
			}
78
		} else {
79
			/* Only update config if something changed */
80
			if (!isset($config['staticroutes']['enablefastrouting'])) {
81 40fb81a1 Carlos Eduardo Ramos
				$changedesc .= " " . gettext("enable fast routing");
82 2b87adae Bill Marquette
				$config['staticroutes']['enablefastrouting'] = "enabled";
83
				write_config($changedesc);
84
			}
85
		}
86 5b237745 Scott Ullrich
	}
87
}
88
89
if ($_GET['act'] == "del") {
90
	if ($a_routes[$_GET['id']]) {
91 40fb81a1 Carlos Eduardo Ramos
		$changedesc .= gettext("removed route to") . " " . $a_routes[$_GET['id']['route']];
92 a529aced Ermal
		mwexec("/sbin/route delete " . escapeshellarg($a_routes[$_GET['id']]['network']));
93 5b237745 Scott Ullrich
		unset($a_routes[$_GET['id']]);
94 59d922dc Bill Marquette
		write_config($changedesc);
95 a368a026 Ermal Lu?i
		mark_subsystem_dirty('staticroutes');
96 5b237745 Scott Ullrich
		header("Location: system_routes.php");
97
		exit;
98
	}
99
}
100 7f43ca88 Scott Ullrich
101 a2927ebf Vinicius Coque
$pgtitle = array(gettext("System"),gettext("Static Routes"));
102 02ca24c9 jim-p
$statusurl = "diag_routes.php";
103
104 7f43ca88 Scott Ullrich
include("head.inc");
105
106 5b237745 Scott Ullrich
?>
107
108
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
109
<?php include("fbegin.inc"); ?>
110
<form action="system_routes.php" method="post">
111 691dade5 Scott Ullrich
<input type="hidden" name="y1" value="1">
112 5b237745 Scott Ullrich
<?php if ($savemsg) print_info_box($savemsg); ?>
113 a368a026 Ermal Lu?i
<?php if (is_subsystem_dirty('staticroutes')): ?><p>
114 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>
115 5b237745 Scott Ullrich
<?php endif; ?>
116 0f282d7a Scott Ullrich
117 5de92d20 Scott Ullrich
	     <?php if($config['system']['disablefilter'] <> "") :?>
118
	       <table width="100%" border="0" cellpadding="0" cellspacing="0">
119
120 a2927ebf Vinicius Coque
		<tr><td width="2%"><input type="checkbox" name="enablefastrouting" id="enablefastrouting" <?php if($config['staticroutes']['enablefastrouting'] == "enabled") echo " checked"; ?>></td><td><b><?=gettext("Enable fast routing");?></td></tr>
121 5de92d20 Scott Ullrich
122 40fb81a1 Carlos Eduardo Ramos
		<tr><td colspan=2><hr><input type="submit" value="<?=gettext("Save"); ?>"></td></tr>
123 5de92d20 Scott Ullrich
	       </table><br>
124 0831bc86 Scott Ullrich
	     <?php endif; ?>
125 0f282d7a Scott Ullrich
126 5b237745 Scott Ullrich
              <table width="100%" border="0" cellpadding="0" cellspacing="0">
127 d173230c Seth Mos
		<tr>
128
		  <td>
129
<?php
130 ba7ec830 Scott Ullrich
		$tab_array = array();
131 a2927ebf Vinicius Coque
		$tab_array[0] = array(gettext("Gateways"), false, "system_gateways.php");
132
		$tab_array[1] = array(gettext("Routes"), true, "system_routes.php");
133
		$tab_array[2] = array(gettext("Groups"), false, "system_gateway_groups.php");
134 ba7ec830 Scott Ullrich
		display_top_tabs($tab_array);
135 d173230c Seth Mos
?>
136 8e830f0f Scott Ullrich
</td></tr>
137
 <tr>
138
   <td>
139
	<div id="mainarea">
140
             <table class="tabcont" width="100%" border="0" cellpadding="0" cellspacing="0">
141 5b237745 Scott Ullrich
                <tr>
142 a2927ebf Vinicius Coque
                  <td width="25%" class="listhdrr"><?=gettext("Network");?></td>
143
                  <td width="20%" class="listhdrr"><?=gettext("Gateway");?></td>
144
                  <td width="15%" class="listhdrr"><?=gettext("Interface");?></td>
145
                  <td width="30%" class="listhdr"><?=gettext("Description");?></td>
146 d415d821 Seth Mos
                  <td width="10%" class="list">
147
			<table border="0" cellspacing="0" cellpadding="1">
148
			   <tr>
149 18f7352b Seth Mos
				<td width="17"></td>
150 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>
151
			   </tr>
152
			</table>
153
		  </td>
154
		</tr>
155 5b237745 Scott Ullrich
                <tr>
156 d173230c Seth Mos
			<?php $i = 0; foreach ($a_routes as $route): ?>
157 e68492cc Bill Marquette
                  <td class="listlr" ondblclick="document.location='system_routes_edit.php?id=<?=$i;?>';">
158 d173230c Seth Mos
                    <?=strtolower($route['network']);?>
159 5b237745 Scott Ullrich
                  </td>
160 e68492cc Bill Marquette
                  <td class="listr" ondblclick="document.location='system_routes_edit.php?id=<?=$i;?>';">
161 d173230c Seth Mos
			<?php
162 3a78180e Chris Buechler
				echo htmlentities($a_gateways[$route['gateway']]['name']) . " - " . htmlentities($a_gateways[$route['gateway']]['gateway']);
163 d173230c Seth Mos
			?>
164 5b237745 Scott Ullrich
                  </td>
165 e68492cc Bill Marquette
                  <td class="listr" ondblclick="document.location='system_routes_edit.php?id=<?=$i;?>';">
166 d173230c Seth Mos
			<?php
167 a529aced Ermal
				echo convert_friendly_interface_to_friendly_descr($a_gateways[$route['gateway']]['friendlyiface']) . " ";
168 d173230c Seth Mos
			?>
169 5b237745 Scott Ullrich
                  </td>
170 e68492cc Bill Marquette
                  <td class="listbg" ondblclick="document.location='system_routes_edit.php?id=<?=$i;?>';">
171 33300c73 Scott Ullrich
                    <?=htmlspecialchars($route['descr']);?>&nbsp;
172 5b237745 Scott Ullrich
                  </td>
173 18f7352b Seth Mos
                  <td valign="middle" nowrap class="list">
174
			<table border="0" cellspacing="0" cellpadding="1">
175
			   <tr>
176
				<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>
177 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>
178 18f7352b Seth Mos
			   </tr>
179
			   <tr>
180
				<td width="17"></td>
181
				<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>
182
			   </tr>
183
			</table>
184 d173230c Seth Mos
		  </td>
185 18f7352b Seth Mos
		</tr>
186 5b237745 Scott Ullrich
			  <?php $i++; endforeach; ?>
187 8450bc24 Scott Ullrich
                <tr>
188 5b237745 Scott Ullrich
                  <td class="list" colspan="4"></td>
189 d415d821 Seth Mos
                  <td class="list">
190
			<table border="0" cellspacing="0" cellpadding="1">
191
			   <tr>
192 18f7352b Seth Mos
				<td width="17"></td>
193 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>
194
			   </tr>
195 8e830f0f Scott Ullrich
		                    </table>
196
				  </td>
197
		                </tr>
198 d415d821 Seth Mos
			</table>
199 8e830f0f Scott Ullrich
			</div>
200
			</td>
201
		  </tr>
202
		</table>
203 5b237745 Scott Ullrich
            </form>
204 a2927ebf Vinicius Coque
			<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>
205 5b237745 Scott Ullrich
<?php include("fend.inc"); ?>
206
</body>
207
</html>