1
|
<?php
|
2
|
/*
|
3
|
services_dhcp_relay.php
|
4
|
|
5
|
Copyright (C) 2003-2004 Justin Ellison <justin@techadvise.com>.
|
6
|
Copyright (C) 2010 Ermal Luçi
|
7
|
Copyright (C) 2013-2015 Electric Sheep Fencing, LP
|
8
|
All rights reserved.
|
9
|
|
10
|
Redistribution and use in source and binary forms, with or without
|
11
|
modification, are permitted provided that the following conditions are met:
|
12
|
|
13
|
1. Redistributions of source code must retain the above copyright notice,
|
14
|
this list of conditions and the following disclaimer.
|
15
|
|
16
|
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
|
|
20
|
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
|
/*
|
32
|
pfSense_MODULE: dhcprelay
|
33
|
*/
|
34
|
|
35
|
##|+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
|
require("guiconfig.inc");
|
43
|
|
44
|
$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
|
$pconfig['server'] = $config['dhcrelay']['server'];
|
50
|
$pconfig['agentoption'] = isset($config['dhcrelay']['agentoption']);
|
51
|
|
52
|
$iflist = get_configured_interface_with_descr();
|
53
|
|
54
|
/* 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
|
if (is_array($config['dhcpd'])) {
|
60
|
foreach($config['dhcpd'] as $dhcpif => $dhcp) {
|
61
|
if (isset($dhcp['enable']) && isset($config['interfaces'][$dhcpif]['enable'])) {
|
62
|
$dhcpd_enabled = true;
|
63
|
break;
|
64
|
}
|
65
|
}
|
66
|
}
|
67
|
|
68
|
if ($_POST) {
|
69
|
|
70
|
unset($input_errors);
|
71
|
$pconfig = $_POST;
|
72
|
|
73
|
/* input validation */
|
74
|
if ($_POST['enable']) {
|
75
|
$reqdfields = explode(" ", "server interface");
|
76
|
$reqdfieldsn = array(gettext("Destination Server"), gettext("Interface"));
|
77
|
|
78
|
do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);
|
79
|
|
80
|
if ($_POST['server']) {
|
81
|
$checksrv = explode(",", $_POST['server']);
|
82
|
foreach ($checksrv as $srv) {
|
83
|
if (!is_ipaddr($srv))
|
84
|
$input_errors[] = gettext("A valid Destination Server IP address must be specified.");
|
85
|
}
|
86
|
}
|
87
|
}
|
88
|
|
89
|
if (!$input_errors) {
|
90
|
$config['dhcrelay']['enable'] = $_POST['enable'] ? true : false;
|
91
|
$config['dhcrelay']['interface'] = implode(",", $_POST['interface']);
|
92
|
$config['dhcrelay']['agentoption'] = $_POST['agentoption'] ? true : false;
|
93
|
$config['dhcrelay']['server'] = $_POST['server'];
|
94
|
|
95
|
write_config();
|
96
|
|
97
|
$retval = 0;
|
98
|
$retval = services_dhcrelay_configure();
|
99
|
$savemsg = get_std_save_message($retval);
|
100
|
|
101
|
}
|
102
|
}
|
103
|
|
104
|
$closehead = false;
|
105
|
$pgtitle = array(gettext("Services"),gettext("DHCP Relay"));
|
106
|
$shortcut_section = "dhcp";
|
107
|
include("head.inc");
|
108
|
|
109
|
?>
|
110
|
|
111
|
<script type="text/javascript">
|
112
|
//<![CDATA[
|
113
|
function enable_change(enable_over) {
|
114
|
if (document.iform.enable.checked || enable_over) {
|
115
|
document.iform.server.disabled = 0;
|
116
|
document.iform.interface.disabled = 0;
|
117
|
document.iform.agentoption.disabled = 0;
|
118
|
} else {
|
119
|
document.iform.server.disabled = 1;
|
120
|
document.iform.interface.disabled = 1;
|
121
|
document.iform.agentoption.disabled = 1;
|
122
|
}
|
123
|
}
|
124
|
//]]>
|
125
|
</script>
|
126
|
</head>
|
127
|
|
128
|
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
|
129
|
<?php include("fbegin.inc"); ?>
|
130
|
<form action="services_dhcp_relay.php" method="post" name="iform" id="iform">
|
131
|
<?php if ($input_errors) print_input_errors($input_errors); ?>
|
132
|
<?php if ($savemsg) print_info_box($savemsg); ?>
|
133
|
|
134
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" summary="dhcp relay">
|
135
|
<tr>
|
136
|
<td>
|
137
|
<div id="mainarea">
|
138
|
<table class="tabcont" width="100%" border="0" cellpadding="6" cellspacing="0" summary="main area">
|
139
|
<tr>
|
140
|
<?php
|
141
|
if ($dhcpd_enabled) {
|
142
|
echo "<td>DHCP Server is currently enabled. Cannot enable the DHCP Relay service while the DHCP Server is enabled on any interface.";
|
143
|
echo "</td></tr></table></div></td></tr></table></form>";
|
144
|
include("fend.inc");
|
145
|
echo "</body></html>";
|
146
|
exit;
|
147
|
}
|
148
|
?>
|
149
|
|
150
|
<td colspan="2" valign="top" class="listtopic"><?=gettext("DHCP Relay configuration"); ?></td>
|
151
|
</tr>
|
152
|
<tr>
|
153
|
<td width="22%" valign="top" class="vncellreq">Enable</td>
|
154
|
<td width="78%" class="vtable">
|
155
|
<input name="enable" type="checkbox" value="yes" <?php if ($pconfig['enable']) echo "checked=\"checked\""; ?> onclick="enable_change(false)" />
|
156
|
<strong><?php printf(gettext("Enable DHCP relay on interface"));?></strong>
|
157
|
</td>
|
158
|
</tr>
|
159
|
<tr>
|
160
|
<td width="22%" valign="top" class="vncellreq">Interface(s)</td>
|
161
|
<td width="78%" class="vtable">
|
162
|
<select id="interface" name="interface[]" multiple="multiple" class="formselect" size="3">
|
163
|
<?php
|
164
|
foreach ($iflist as $ifent => $ifdesc) {
|
165
|
if (!is_ipaddr(get_interface_ip($ifent)))
|
166
|
continue;
|
167
|
echo "<option value=\"{$ifent}\"";
|
168
|
if (in_array($ifent, $pconfig['interface']))
|
169
|
echo " selected=\"selected\"";
|
170
|
echo ">{$ifdesc}</option>\n";
|
171
|
}
|
172
|
?>
|
173
|
</select>
|
174
|
<br />Interfaces without an IP address will not be shown.
|
175
|
</td>
|
176
|
</tr>
|
177
|
<tr>
|
178
|
<td width="22%" valign="top" class="vtable"> </td>
|
179
|
<td width="78%" class="vtable">
|
180
|
<input name="agentoption" type="checkbox" value="yes" <?php if ($pconfig['agentoption']) echo "checked=\"checked\""; ?> />
|
181
|
<strong><?=gettext("Append circuit ID and agent ID to requests"); ?></strong><br />
|
182
|
<?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>
|
183
|
</tr>
|
184
|
<tr>
|
185
|
<td width="22%" valign="top" class="vncellreq"><?=gettext("Destination server");?></td>
|
186
|
<td width="78%" class="vtable">
|
187
|
<input name="server" type="text" class="formfld unknown" id="server" size="20" value="<?=htmlspecialchars($pconfig['server']);?>" />
|
188
|
<br />
|
189
|
<?=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.");?>
|
190
|
</td>
|
191
|
</tr>
|
192
|
<tr>
|
193
|
<td width="22%" valign="top"> </td>
|
194
|
<td width="78%">
|
195
|
<input name="Submit" type="submit" class="formbtn" value="<?=gettext("Save");?>" onclick="enable_change(true)" />
|
196
|
</td>
|
197
|
</tr>
|
198
|
</table>
|
199
|
</div>
|
200
|
</td>
|
201
|
</tr>
|
202
|
</table>
|
203
|
</form>
|
204
|
<script type="text/javascript">
|
205
|
//<![CDATA[
|
206
|
enable_change(false);
|
207
|
//]]>
|
208
|
</script>
|
209
|
<?php include("fend.inc"); ?>
|
210
|
</body>
|
211
|
</html>
|