Project

General

Profile

Download (7.49 KB) Statistics
| Branch: | Tag: | Revision:
1 de3fa7a6 Scott Ullrich
<?php
2 5b237745 Scott Ullrich
/*
3 f64e8f99 Ermal
	services_dhcp_relay.php
4 de3fa7a6 Scott Ullrich
5 5b237745 Scott Ullrich
	Copyright (C) 2003-2004 Justin Ellison <justin@techadvise.com>.
6 1d7ba683 ayvis
	Copyright (C) 2010 	Ermal Luçi
7 29aef6c4 Jim Thompson
        Copyright (C) 2013-2014 Electric Sheep Fencing, LP
8 5b237745 Scott Ullrich
	All rights reserved.
9 de3fa7a6 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 de3fa7a6 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 de3fa7a6 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 de3fa7a6 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:	dhcprelay
33
*/
34 5b237745 Scott Ullrich
35 6b07c15a Matthew Grooms
##|+PRIV
36
##|*IDENT=page-services-dhcprelay
37
##|*NAME=Services: DHCP Relay page
38
##|*DESCR=Allow access to the 'Services: DHCP Relay' page.
39
##|*MATCH=services_dhcp_relay.php*
40
##|-PRIV
41
42 5b237745 Scott Ullrich
require("guiconfig.inc");
43
44 2f06cc3f Ermal
$pconfig['enable'] = isset($config['dhcrelay']['enable']);
45
if (empty($config['dhcrelay']['interface']))
46
	$pconfig['interface'] = array();
47
else
48
	$pconfig['interface'] = explode(",", $config['dhcrelay']['interface']);
49 5b237745 Scott Ullrich
$pconfig['server'] = $config['dhcrelay']['server'];
50
$pconfig['agentoption'] = isset($config['dhcrelay']['agentoption']);
51
52 2f06cc3f Ermal
$iflist = get_configured_interface_with_descr();
53 5b237745 Scott Ullrich
54 48c6ab80 Scott Ullrich
/*   set the enabled flag which will tell us if DHCP server is enabled
55
 *   on any interface.   We will use this to disable dhcp-relay since
56
 *   the two are not compatible with each other.
57
 */
58
$dhcpd_enabled = false;
59 b9ed163d Ermal Luçi
if (is_array($config['dhcpd'])) {
60
	foreach($config['dhcpd'] as $dhcp) 
61 2f06cc3f Ermal
		if (isset($dhcp['enable'])) 
62 b9ed163d Ermal Luçi
			$dhcpd_enabled = true;
63 3d7b7757 Chris Buechler
}
64 5b237745 Scott Ullrich
65
if ($_POST) {
66
67
	unset($input_errors);
68
	$pconfig = $_POST;
69
70
	/* input validation */
71
	if ($_POST['enable']) {
72 2f06cc3f Ermal
		$reqdfields = explode(" ", "server interface");
73
		$reqdfieldsn = array(gettext("Destination Server"), gettext("Interface"));
74 de3fa7a6 Scott Ullrich
75 1e9b4611 Renato Botelho
		do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);
76 de3fa7a6 Scott Ullrich
77 2f06cc3f Ermal
		if ($_POST['server']) {
78
			$checksrv = explode(",", $_POST['server']);
79
			foreach ($checksrv as $srv) {
80
				if (!is_ipaddr($srv))
81 45c8402f Chris Buechler
					$input_errors[] = gettext("A valid Destination Server IP address must be specified.");
82 de3fa7a6 Scott Ullrich
			}
83 5b237745 Scott Ullrich
		}
84
	}
85
86
	if (!$input_errors) {
87 2f06cc3f Ermal
		$config['dhcrelay']['enable'] = $_POST['enable'] ? true : false;
88
		$config['dhcrelay']['interface'] = implode(",", $_POST['interface']);
89 5b237745 Scott Ullrich
		$config['dhcrelay']['agentoption'] = $_POST['agentoption'] ? true : false;
90
		$config['dhcrelay']['server'] = $_POST['server'];
91 de3fa7a6 Scott Ullrich
92 5b237745 Scott Ullrich
		write_config();
93 de3fa7a6 Scott Ullrich
94 5b237745 Scott Ullrich
		$retval = 0;
95 3851094f Scott Ullrich
		$retval = services_dhcrelay_configure();
96 5b237745 Scott Ullrich
		$savemsg = get_std_save_message($retval);
97 de3fa7a6 Scott Ullrich
98 5b237745 Scott Ullrich
	}
99
}
100
101 d2b3e9dc Colin Fleming
$closehead = false;
102 7fd3b523 Rafael Lucas
$pgtitle = array(gettext("Services"),gettext("DHCP Relay"));
103 b32dd0a6 jim-p
$shortcut_section = "dhcp";
104 4df96eff Scott Ullrich
include("head.inc");
105
106 5b237745 Scott Ullrich
?>
107 4df96eff Scott Ullrich
108 91f026b0 ayvis
<script type="text/javascript">
109 d2b3e9dc Colin Fleming
//<![CDATA[
110 471877bf Scott Ullrich
function enable_change(enable_over) {
111
	if (document.iform.enable.checked || enable_over) {
112
		document.iform.server.disabled = 0;
113 2f06cc3f Ermal
		document.iform.interface.disabled = 0;
114 471877bf Scott Ullrich
		document.iform.agentoption.disabled = 0;
115
	} else {
116
		document.iform.server.disabled = 1;
117 2f06cc3f Ermal
		document.iform.interface.disabled = 1;
118 471877bf Scott Ullrich
		document.iform.agentoption.disabled = 1;
119
	}
120 5b237745 Scott Ullrich
}
121 d2b3e9dc Colin Fleming
//]]>
122 5b237745 Scott Ullrich
</script>
123 d2b3e9dc Colin Fleming
</head>
124 5b237745 Scott Ullrich
125
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
126
<?php include("fbegin.inc"); ?>
127
<form action="services_dhcp_relay.php" method="post" name="iform" id="iform">
128
<?php if ($input_errors) print_input_errors($input_errors); ?>
129
<?php if ($savemsg) print_info_box($savemsg); ?>
130 48c6ab80 Scott Ullrich
131 d2b3e9dc Colin Fleming
<table width="100%" border="0" cellpadding="0" cellspacing="0" summary="dhcp relay">
132 de3fa7a6 Scott Ullrich
  <tr>
133 d732f186 Bill Marquette
    <td>
134
	<div id="mainarea">
135 d2b3e9dc Colin Fleming
              <table class="tabcont" width="100%" border="0" cellpadding="6" cellspacing="0" summary="main area">
136 7eb2ebbe Scott Ullrich
		<tr>
137 d2b3e9dc Colin Fleming
<?php
138 7eb2ebbe Scott Ullrich
	if ($dhcpd_enabled) {
139 45c8402f Chris Buechler
		echo "<td>DHCP Server is currently enabled. Cannot enable the DHCP Relay service while the DHCP Server is enabled on any interface.";
140 905bafa1 Colin Fleming
			echo "</td></tr></table></div></td></tr></table></form>";
141 7eb2ebbe Scott Ullrich
			include("fend.inc"); 
142 905bafa1 Colin Fleming
			echo "</body></html>";
143 7eb2ebbe Scott Ullrich
			exit;
144
		}
145 2f06cc3f Ermal
?>
146 7eb2ebbe Scott Ullrich
147 2f06cc3f Ermal
			<td colspan="2" valign="top" class="listtopic"><?=gettext("DHCP Relay configuration"); ?></td>
148
		</tr>
149
		<tr>
150
                        <td width="22%" valign="top" class="vncellreq">Enable</td>
151
                        <td width="78%" class="vtable">
152 d2b3e9dc Colin Fleming
			<input name="enable" type="checkbox" value="yes" <?php if ($pconfig['enable']) echo "checked=\"checked\""; ?> onclick="enable_change(false)" />
153 2f06cc3f Ermal
                          <strong><?php printf(gettext("Enable DHCP relay on interface"));?></strong>
154
			</td>
155
		</tr>
156
		<tr>
157
                        <td width="22%" valign="top" class="vncellreq">Interface(s)</td>
158 5b237745 Scott Ullrich
                        <td width="78%" class="vtable">
159 d2b3e9dc Colin Fleming
				<select id="interface" name="interface[]" multiple="multiple" class="formselect" size="3">
160 2f06cc3f Ermal
			<?php
161
                                foreach ($iflist as $ifent => $ifdesc) {
162
					if (!is_ipaddr(get_interface_ip($ifent)))
163
						continue;
164 d2b3e9dc Colin Fleming
					echo "<option value=\"{$ifent}\"";
165 2f06cc3f Ermal
					if (in_array($ifent, $pconfig['interface']))
166 d2b3e9dc Colin Fleming
						echo " selected=\"selected\"";
167 2f06cc3f Ermal
					echo ">{$ifdesc}</option>\n";
168
				}
169
			?>
170
                                </select>
171 45c8402f Chris Buechler
				<br />Interfaces without an IP address will not be shown.
172 2f06cc3f Ermal
			</td>
173
		</tr>
174
		<tr>
175 5b237745 Scott Ullrich
	              <td width="22%" valign="top" class="vtable">&nbsp;</td>
176
                      <td width="78%" class="vtable">
177 d2b3e9dc Colin Fleming
<input name="agentoption" type="checkbox" value="yes" <?php if ($pconfig['agentoption']) echo "checked=\"checked\""; ?> />
178 1d7ba683 ayvis
                      <strong><?=gettext("Append circuit ID and agent ID to requests"); ?></strong><br />
179 bff079e8 Carlos Eduardo Ramos
                      <?php printf(gettext("If this is checked, the DHCP relay will append the circuit ID (%s interface number) and the agent ID to the DHCP request."), $g['product_name']); ?></td>
180 2f06cc3f Ermal
		</tr>
181
		<tr>
182 b145863a Chris Buechler
                        <td width="22%" valign="top" class="vncellreq"><?=gettext("Destination server");?></td>
183 de3fa7a6 Scott Ullrich
                        <td width="78%" class="vtable">
184 d2b3e9dc Colin Fleming
                          <input name="server" type="text" class="formfld unknown" id="server" size="20" value="<?=htmlspecialchars($pconfig['server']);?>" />
185 1d7ba683 ayvis
                          <br />
186 f745b8ef Chris Buechler
			  <?=gettext("This is the IP address of the server to which DHCP requests are relayed. You can enter multiple server IP addresses, separated by commas. Select \"Proxy requests to DHCP server on WAN subnet\" to relay DHCP packets to the server that was used on the WAN interface.");?>
187 5b237745 Scott Ullrich
                        </td>
188 2f06cc3f Ermal
		</tr>
189
		<tr>
190 5b237745 Scott Ullrich
                        <td width="22%" valign="top">&nbsp;</td>
191 de3fa7a6 Scott Ullrich
                        <td width="78%">
192 d2b3e9dc Colin Fleming
                          <input name="Submit" type="submit" class="formbtn" value="<?=gettext("Save");?>" onclick="enable_change(true)" />
193 5b237745 Scott Ullrich
                        </td>
194 2f06cc3f Ermal
		</tr>
195
	</table>
196 d732f186 Bill Marquette
	</div>
197 5b237745 Scott Ullrich
    </td>
198
  </tr>
199
</table>
200
</form>
201 91f026b0 ayvis
<script type="text/javascript">
202 d2b3e9dc Colin Fleming
//<![CDATA[
203 471877bf Scott Ullrich
enable_change(false);
204 d2b3e9dc Colin Fleming
//]]>
205 5b237745 Scott Ullrich
</script>
206
<?php include("fend.inc"); ?>
207
</body>
208
</html>