1
|
<?php
|
2
|
/* $Id$ */
|
3
|
/*
|
4
|
system.php
|
5
|
part of m0n0wall (http://m0n0.ch/wall)
|
6
|
|
7
|
Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
|
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_BUILDER_BINARIES: /bin/kill /usr/bin/tar
|
33
|
pfSense_MODULE: system
|
34
|
*/
|
35
|
|
36
|
##|+PRIV
|
37
|
##|*IDENT=page-system-generalsetup
|
38
|
##|*NAME=System: General Setup page
|
39
|
##|*DESCR=Allow access to the 'System: General Setup' page.
|
40
|
##|*MATCH=system.php*
|
41
|
##|-PRIV
|
42
|
|
43
|
require("guiconfig.inc");
|
44
|
require_once("functions.inc");
|
45
|
require_once("filter.inc");
|
46
|
require_once("shaper.inc");
|
47
|
|
48
|
$pconfig['hostname'] = $config['system']['hostname'];
|
49
|
$pconfig['domain'] = $config['system']['domain'];
|
50
|
list($pconfig['dns1'],$pconfig['dns2'],$pconfig['dns3'],$pconfig['dns4']) = $config['system']['dnsserver'];
|
51
|
|
52
|
$pconfig['dns1gwint'] = $config['system']['dns1gwint'];
|
53
|
$pconfig['dns2gwint'] = $config['system']['dns2gwint'];
|
54
|
$pconfig['dns3gwint'] = $config['system']['dns3gwint'];
|
55
|
$pconfig['dns4gwint'] = $config['system']['dns4gwint'];
|
56
|
|
57
|
$pconfig['dnsallowoverride'] = isset($config['system']['dnsallowoverride']);
|
58
|
$pconfig['timezone'] = $config['system']['timezone'];
|
59
|
$pconfig['timeupdateinterval'] = $config['system']['time-update-interval'];
|
60
|
$pconfig['timeservers'] = $config['system']['timeservers'];
|
61
|
$pconfig['theme'] = $config['system']['theme'];
|
62
|
|
63
|
if (!isset($pconfig['timeupdateinterval']))
|
64
|
$pconfig['timeupdateinterval'] = 300;
|
65
|
if (!$pconfig['timezone'])
|
66
|
$pconfig['timezone'] = "Etc/UTC";
|
67
|
if (!$pconfig['timeservers'])
|
68
|
$pconfig['timeservers'] = "pool.ntp.org";
|
69
|
|
70
|
$changedesc = gettext("System") . ": ";
|
71
|
$changecount = 0;
|
72
|
|
73
|
function is_timezone($elt) {
|
74
|
return !preg_match("/\/$/", $elt);
|
75
|
}
|
76
|
|
77
|
if($pconfig['timezone'] <> $_POST['timezone']) {
|
78
|
/* restart firewall log dumper helper */
|
79
|
require_once("functions.inc");
|
80
|
$pid = `ps awwwux | grep -v "grep" | grep "tcpdump -v -l -n -e -ttt -i pflog0" | awk '{ print $2 }'`;
|
81
|
if($pid) {
|
82
|
mwexec("/bin/kill $pid");
|
83
|
usleep(1000);
|
84
|
}
|
85
|
filter_pflog_start();
|
86
|
}
|
87
|
|
88
|
exec('/usr/bin/tar -tzf /usr/share/zoneinfo.tgz', $timezonelist);
|
89
|
$timezonelist = array_filter($timezonelist, 'is_timezone');
|
90
|
sort($timezonelist);
|
91
|
|
92
|
$multiwan = false;
|
93
|
$interfaces = get_configured_interface_list();
|
94
|
foreach($interfaces as $interface) {
|
95
|
if(interface_has_gateway($interface)) {
|
96
|
$multiwan = true;
|
97
|
}
|
98
|
}
|
99
|
|
100
|
if ($_POST) {
|
101
|
|
102
|
$changecount++;
|
103
|
|
104
|
unset($input_errors);
|
105
|
$pconfig = $_POST;
|
106
|
|
107
|
/* input validation */
|
108
|
$reqdfields = split(" ", "hostname domain");
|
109
|
$reqdfieldsn = array(gettext("Hostname"),gettext("Domain"));
|
110
|
|
111
|
do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors);
|
112
|
|
113
|
if ($_POST['hostname'] && !is_hostname($_POST['hostname'])) {
|
114
|
$input_errors[] = gettext("The hostname may only contain the characters a-z, 0-9 and '-'.");
|
115
|
}
|
116
|
if ($_POST['domain'] && !is_domain($_POST['domain'])) {
|
117
|
$input_errors[] = gettext("The domain may only contain the characters a-z, 0-9, '-' and '.'.");
|
118
|
}
|
119
|
if (($_POST['dns1'] && !is_ipaddr($_POST['dns1'])) || ($_POST['dns2'] && !is_ipaddr($_POST['dns2']))) {
|
120
|
$input_errors[] = gettext("A valid IP address must be specified for the primary/secondary DNS server.");
|
121
|
}
|
122
|
if (($_POST['dns3'] && !is_ipaddr($_POST['dns3'])) || ($_POST['dns4'] && !is_ipaddr($_POST['dns4']))) {
|
123
|
$input_errors[] = gettext("A valid IP address must be specified for the primary/secondary DNS server.");
|
124
|
}
|
125
|
if ($_POST['webguiport'] && (!is_numericint($_POST['webguiport']) ||
|
126
|
($_POST['webguiport'] < 1) || ($_POST['webguiport'] > 65535))) {
|
127
|
$input_errors[] = gettext("A valid TCP/IP port must be specified for the webConfigurator port.");
|
128
|
}
|
129
|
|
130
|
$direct_networks_list = explode(" ", filter_get_direct_networks_list());
|
131
|
for ($dnscounter=1; $dnscounter<5; $dnscounter++) {
|
132
|
$dnsitem = "dns{$dnscounter}";
|
133
|
$dnsgwitem = "dns{$dnscounter}gwint";
|
134
|
if ($_POST[$dnsgwitem]) {
|
135
|
if(interface_has_gateway($_POST[$dnsgwitem])) {
|
136
|
foreach($direct_networks_list as $direct_network) {
|
137
|
if(ip_in_subnet($_POST[$dnsitem], $direct_network)) {
|
138
|
$input_errors[] = gettext("You can not assign a gateway to DNS '{$_POST[$dnsitem]}' server which is on a directly connected network.");
|
139
|
}
|
140
|
}
|
141
|
}
|
142
|
}
|
143
|
}
|
144
|
|
145
|
$t = (int)$_POST['timeupdateinterval'];
|
146
|
if (($t < 0) || (($t > 0) && ($t < 6)) || ($t > 1440)) {
|
147
|
$input_errors[] = gettext("The time update interval must be either 0 (disabled) or between 6 and 1440.");
|
148
|
}
|
149
|
foreach (explode(' ', $_POST['timeservers']) as $ts) {
|
150
|
if (!is_domain($ts)) {
|
151
|
$input_errors[] = gettext("A NTP Time Server name may only contain the characters a-z, 0-9, '-' and '.'.");
|
152
|
}
|
153
|
}
|
154
|
|
155
|
if (!$input_errors) {
|
156
|
update_if_changed("hostname", $config['system']['hostname'], strtolower($_POST['hostname']));
|
157
|
update_if_changed("domain", $config['system']['domain'], strtolower($_POST['domain']));
|
158
|
|
159
|
update_if_changed("timezone", $config['system']['timezone'], $_POST['timezone']);
|
160
|
update_if_changed("NTP servers", $config['system']['timeservers'], strtolower($_POST['timeservers']));
|
161
|
update_if_changed("NTP update interval", $config['system']['time-update-interval'], $_POST['timeupdateinterval']);
|
162
|
|
163
|
/* pfSense themes */
|
164
|
if (! $g['disablethemeselection']) {
|
165
|
update_if_changed("System Theme", $config['theme'], $_POST['theme']);
|
166
|
}
|
167
|
|
168
|
/* XXX - billm: these still need updating after figuring out how to check if they actually changed */
|
169
|
unset($config['system']['dnsserver']);
|
170
|
if ($_POST['dns1'])
|
171
|
$config['system']['dnsserver'][] = $_POST['dns1'];
|
172
|
if ($_POST['dns2'])
|
173
|
$config['system']['dnsserver'][] = $_POST['dns2'];
|
174
|
if ($_POST['dns3'])
|
175
|
$config['system']['dnsserver'][] = $_POST['dns3'];
|
176
|
if ($_POST['dns4'])
|
177
|
$config['system']['dnsserver'][] = $_POST['dns4'];
|
178
|
|
179
|
$olddnsallowoverride = $config['system']['dnsallowoverride'];
|
180
|
|
181
|
unset($config['system']['dnsallowoverride']);
|
182
|
$config['system']['dnsallowoverride'] = $_POST['dnsallowoverride'] ? true : false;
|
183
|
|
184
|
/* which interface should the dns servers resolve through? */
|
185
|
if($_POST['dns1gwint'])
|
186
|
$config['system']['dns1gwint'] = $pconfig['dns1gwint'];
|
187
|
else
|
188
|
unset($config['system']['dns1gwint']);
|
189
|
|
190
|
if($_POST['dns2gwint'])
|
191
|
$config['system']['dns2gwint'] = $pconfig['dns2gwint'];
|
192
|
else
|
193
|
unset($config['system']['dns2gwint']);
|
194
|
|
195
|
if($_POST['dns3gwint'])
|
196
|
$config['system']['dns3gwint'] = $pconfig['dns3gwint'];
|
197
|
else
|
198
|
unset($config['system']['dns3gwint']);
|
199
|
|
200
|
if($_POST['dns4gwint'])
|
201
|
$config['system']['dns4gwint'] = $pconfig['dns4gwint'];
|
202
|
else
|
203
|
unset($config['system']['dns4gwint']);
|
204
|
|
205
|
if ($changecount > 0)
|
206
|
write_config($changedesc);
|
207
|
|
208
|
$retval = 0;
|
209
|
$retval = system_hostname_configure();
|
210
|
$retval |= system_hosts_generate();
|
211
|
$retval |= system_resolvconf_generate();
|
212
|
$retval |= services_dnsmasq_configure();
|
213
|
$retval |= system_timezone_configure();
|
214
|
$retval |= system_ntp_configure();
|
215
|
|
216
|
if ($olddnsallowoverride != $config['system']['dnsallowoverride'])
|
217
|
$retval |= send_event("service reload dns");
|
218
|
|
219
|
// Reload the filter - plugins might need to be run.
|
220
|
$retval |= filter_configure();
|
221
|
|
222
|
$savemsg = get_std_save_message($retval);
|
223
|
}
|
224
|
}
|
225
|
|
226
|
$pgtitle = array(gettext("System"),gettext("General Setup"));
|
227
|
include("head.inc");
|
228
|
|
229
|
?>
|
230
|
|
231
|
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
|
232
|
<?php
|
233
|
include("fbegin.inc");
|
234
|
if ($input_errors)
|
235
|
print_input_errors($input_errors);
|
236
|
if ($savemsg)
|
237
|
print_info_box($savemsg);
|
238
|
?>
|
239
|
<form action="system.php" method="post">
|
240
|
<table width="100%" border="0" cellpadding="6" cellspacing="0">
|
241
|
<tr>
|
242
|
<td id="mainarea">
|
243
|
<div class="tabcont">
|
244
|
<table width="100%" border="0" cellpadding="6" cellspacing="0">
|
245
|
<tr>
|
246
|
<td colspan="2" valign="top" class="listtopic"><?=gettext("System"); ?></td>
|
247
|
</tr>
|
248
|
<tr>
|
249
|
<td width="22%" valign="top" class="vncellreq"><?=gettext("Hostname"); ?></td>
|
250
|
<td width="78%" class="vtable"> <input name="hostname" type="text" class="formfld unknown" id="hostname" size="40" value="<?=htmlspecialchars($pconfig['hostname']);?>">
|
251
|
<br/>
|
252
|
<span class="vexpl">
|
253
|
<?=gettext("Name of the firewall host, without domain part"); ?>
|
254
|
<br/>
|
255
|
<?=gettext("e.g."); ?> <em>firewall</em>
|
256
|
</span>
|
257
|
</td>
|
258
|
</tr>
|
259
|
<tr>
|
260
|
<td width="22%" valign="top" class="vncellreq"><?=gettext("Domain"); ?></td>
|
261
|
<td width="78%" class="vtable"> <input name="domain" type="text" class="formfld unknown" id="domain" size="40" value="<?=htmlspecialchars($pconfig['domain']);?>">
|
262
|
<br/>
|
263
|
<span class="vexpl">
|
264
|
<?=gettext("Do not use 'local' as a domain name. It will cause local hosts running mDNS (avahi, bonjour, etc.) to be unable to resolve local hosts not running mDNS."); ?>
|
265
|
<br/>
|
266
|
<?=gettext("e.g."); ?> <em><?=gettext("mycorp.com, home, office, private, etc."); ?></em>
|
267
|
</span>
|
268
|
</td>
|
269
|
</tr>
|
270
|
<tr>
|
271
|
<td width="22%" valign="top" class="vncell"><?=gettext("DNS servers"); ?></td>
|
272
|
<td width="78%" class="vtable">
|
273
|
<p>
|
274
|
<table>
|
275
|
<tr>
|
276
|
<td><b><?=gettext("DNS Server"); ?></b></td>
|
277
|
<?php if ($multiwan): ?>
|
278
|
<td><b><?=gettext("Use gateway"); ?></b></td>
|
279
|
<?php endif; ?>
|
280
|
</tr>
|
281
|
<?php
|
282
|
for ($dnscounter=1; $dnscounter<5; $dnscounter++):
|
283
|
$fldname="dns{$dnscounter}gwint";
|
284
|
?>
|
285
|
<tr>
|
286
|
<td>
|
287
|
<input name="dns<?php echo $dnscounter;?>" type="text" class="formfld unknown" id="dns<?php echo $dnscounter;?>" size="28" value="<?php echo $pconfig['dns'.$dnscounter];?>">
|
288
|
</td>
|
289
|
<td>
|
290
|
<?php if ($multiwan): ?>
|
291
|
<select name='<?=$fldname;?>'>
|
292
|
<?php
|
293
|
$interface = "none";
|
294
|
$dnsgw = "dns{$dnscounter}gwint";
|
295
|
if($pconfig[$dnsgw] == $interface) {
|
296
|
$selected = "selected";
|
297
|
} else {
|
298
|
$selected = "";
|
299
|
}
|
300
|
echo "<option value='$interface' $selected>". ucwords($interface) ."</option>\n";
|
301
|
foreach($interfaces as $interface) {
|
302
|
if(interface_has_gateway($interface)) {
|
303
|
if($pconfig[$dnsgw] == $interface) {
|
304
|
$selected = "selected";
|
305
|
} else {
|
306
|
$selected = "";
|
307
|
}
|
308
|
$friendly_interface = convert_friendly_interface_to_friendly_descr($interface);
|
309
|
echo "<option value='$interface' $selected>". ucwords($friendly_interface) ."</option>\n";
|
310
|
}
|
311
|
}
|
312
|
?>
|
313
|
</select>
|
314
|
<?php endif; ?>
|
315
|
</td>
|
316
|
</tr>
|
317
|
<?php endfor; ?>
|
318
|
</table>
|
319
|
<br>
|
320
|
<span class="vexpl">
|
321
|
<?=gettext("IP addresses: these are also used for the DHCP " .
|
322
|
"service, DNS forwarder and for PPTP VPN clients."); ?>
|
323
|
<br/>
|
324
|
<?php if($multiwan): ?>
|
325
|
<br/>
|
326
|
<?=gettext("In addition, select the gateway for each DNS server. " .
|
327
|
"You should have a unique DNS server per gateway."); ?>
|
328
|
<br/>
|
329
|
<?php endif; ?>
|
330
|
<br/>
|
331
|
<input name="dnsallowoverride" type="checkbox" id="dnsallowoverride" value="yes" <?php if ($pconfig['dnsallowoverride']) echo "checked"; ?>>
|
332
|
<strong>
|
333
|
<?=gettext("Allow DNS server list to be overridden by DHCP/PPP on WAN"); ?>
|
334
|
</strong>
|
335
|
<br/>
|
336
|
<?php printf(gettext("If this option is set, %s will " .
|
337
|
"use DNS servers assigned by a DHCP/PPP server on WAN " .
|
338
|
"for its own purposes (including the DNS forwarder). " .
|
339
|
"However, they will not be assigned to DHCP and PPTP " .
|
340
|
"VPN clients."), $g['product_name']); ?>
|
341
|
</span>
|
342
|
</p>
|
343
|
</td>
|
344
|
</tr>
|
345
|
<tr>
|
346
|
<td width="22%" valign="top" class="vncell"><?=gettext("Time zone"); ?></td>
|
347
|
<td width="78%" class="vtable">
|
348
|
<select name="timezone" id="timezone">
|
349
|
<?php foreach ($timezonelist as $value): ?>
|
350
|
<?php if(strstr($value, "GMT")) continue; ?>
|
351
|
<option value="<?=htmlspecialchars($value);?>" <?php if ($value == $pconfig['timezone']) echo "selected"; ?>>
|
352
|
<?=htmlspecialchars($value);?>
|
353
|
</option>
|
354
|
<?php endforeach; ?>
|
355
|
</select>
|
356
|
<br/>
|
357
|
<span class="vexpl">
|
358
|
<?=gettext("Select the location closest to you"); ?>
|
359
|
</span>
|
360
|
</td>
|
361
|
</tr>
|
362
|
<!--
|
363
|
<tr>
|
364
|
<td width="22%" valign="top" class="vncell">Time update interval</td>
|
365
|
<td width="78%" class="vtable">
|
366
|
<input name="timeupdateinterval" type="text" class="formfld unknown" id="timeupdateinterval" size="4" value="<?=htmlspecialchars($pconfig['timeupdateinterval']);?>">
|
367
|
<br/>
|
368
|
<span class="vexpl">
|
369
|
Minutes between network time sync. 300 recommended,
|
370
|
or 0 to disable
|
371
|
</span>
|
372
|
</td>
|
373
|
</tr>
|
374
|
-->
|
375
|
<tr>
|
376
|
<td width="22%" valign="top" class="vncell"><?=gettext("NTP time server"); ?></td>
|
377
|
<td width="78%" class="vtable">
|
378
|
<input name="timeservers" type="text" class="formfld unknown" id="timeservers" size="40" value="<?=htmlspecialchars($pconfig['timeservers']);?>">
|
379
|
<br/>
|
380
|
<span class="vexpl">
|
381
|
<?=gettext("Use a space to separate multiple hosts (only one " .
|
382
|
"required). Remember to set up at least one DNS server " .
|
383
|
"if you enter a host name here!"); ?>
|
384
|
</span>
|
385
|
</td>
|
386
|
</tr>
|
387
|
<tr>
|
388
|
<td colspan="2" class="list" height="12"> </td>
|
389
|
</tr>
|
390
|
<?php if (! $g['disablethemeselection']): ?>
|
391
|
<tr>
|
392
|
<td colspan="2" valign="top" class="listtopic"><?=gettext("Theme"); ?></td>
|
393
|
</tr>
|
394
|
<tr>
|
395
|
<td width="22%" valign="top" class="vncell"> </td>
|
396
|
<td width="78%" class="vtable">
|
397
|
<select name="theme">
|
398
|
<?php
|
399
|
$files = return_dir_as_array("/usr/local/www/themes/");
|
400
|
foreach($files as $f):
|
401
|
if ((substr($f, 0, 1) == "_") && !isset($config['system']['developer']))
|
402
|
continue;
|
403
|
if ($f == "CVS")
|
404
|
continue;
|
405
|
$curtheme = "pfsense";
|
406
|
if ($config['theme'])
|
407
|
$curtheme = $config['theme'];
|
408
|
$selected = "";
|
409
|
if($f == $curtheme)
|
410
|
$selected = " SELECTED";
|
411
|
?>
|
412
|
<option <?=$selected;?>><?=$f;?></option>
|
413
|
<?php endforeach; ?>
|
414
|
</select>
|
415
|
<strong>
|
416
|
<?=gettext("This will change the look and feel of"); ?>
|
417
|
<?=$g['product_name'];?>.
|
418
|
</strong>
|
419
|
</td>
|
420
|
</tr>
|
421
|
<?php endif; ?>
|
422
|
<tr>
|
423
|
<td colspan="2" class="list" height="12"> </td>
|
424
|
</tr>
|
425
|
<tr>
|
426
|
<td width="22%" valign="top"> </td>
|
427
|
<td width="78%">
|
428
|
<input name="Submit" type="submit" class="formbtn" value="<?=gettext("Save");?>">
|
429
|
</td>
|
430
|
</tr>
|
431
|
</table>
|
432
|
</div>
|
433
|
</td></tr>
|
434
|
</table>
|
435
|
</form>
|
436
|
<?php include("fend.inc"); ?>
|
437
|
</body>
|
438
|
</html>
|