Project

General

Profile

Download (23.4 KB) Statistics
| Branch: | Tag: | Revision:
1 5b237745 Scott Ullrich
#!/usr/local/bin/php
2 13128695 Scott Ullrich
<?php
3 b46bfcf5 Bill Marquette
/* $Id$ */
4 5b237745 Scott Ullrich
/*
5
	system_advanced.php
6 416ed28d Scott Ullrich
        part of pfSense
7
        Copyright (C) 2005 Scott Ullrich
8 13128695 Scott Ullrich
9 416ed28d Scott Ullrich
	originally part of m0n0wall (http://m0n0.ch/wall)
10 5b237745 Scott Ullrich
	Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
11
	All rights reserved.
12 13128695 Scott Ullrich
13 5b237745 Scott Ullrich
	Redistribution and use in source and binary forms, with or without
14
	modification, are permitted provided that the following conditions are met:
15 13128695 Scott Ullrich
16 5b237745 Scott Ullrich
	1. Redistributions of source code must retain the above copyright notice,
17
	   this list of conditions and the following disclaimer.
18 13128695 Scott Ullrich
19 5b237745 Scott Ullrich
	2. Redistributions in binary form must reproduce the above copyright
20
	   notice, this list of conditions and the following disclaimer in the
21
	   documentation and/or other materials provided with the distribution.
22 13128695 Scott Ullrich
23 5b237745 Scott Ullrich
	THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
24
	INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
25
	AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26
	AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
27
	OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28
	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29
	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30
	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31
	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32
	POSSIBILITY OF SUCH DAMAGE.
33
*/
34
35
require("guiconfig.inc");
36
37 35284e50 Scott Ullrich
$pconfig['disablefilter'] = $config['system']['disablefilter'];
38 f55cccc4 Scott Ullrich
$pconfig['disableftpproxy'] = $config['system']['disableftpproxy'];
39 38560a25 Bill Marquette
$pconfig['rfc959workaround'] = $config['system']['rfc959workaround'];
40 5b237745 Scott Ullrich
$pconfig['ipv6nat_enable'] = isset($config['diag']['ipv6nat']['enable']);
41
$pconfig['ipv6nat_ipaddr'] = $config['diag']['ipv6nat']['ipaddr'];
42
$pconfig['cert'] = base64_decode($config['system']['webgui']['certificate']);
43
$pconfig['key'] = base64_decode($config['system']['webgui']['private-key']);
44
$pconfig['disableconsolemenu'] = isset($config['system']['disableconsolemenu']);
45 c11e337b Scott Ullrich
$pconfig['harddiskstandby'] = $config['system']['harddiskstandby'];
46 5b237745 Scott Ullrich
$pconfig['noantilockout'] = isset($config['system']['webgui']['noantilockout']);
47
$pconfig['tcpidletimeout'] = $config['filter']['tcpidletimeout'];
48 222b5299 Scott Ullrich
$pconfig['schedulertype'] = $config['system']['schedulertype'];
49 351217ed Scott Ullrich
$pconfig['maximumstates'] = $config['system']['maximumstates'];
50 ce5ddbd6 Scott Ullrich
$pconfig['theme'] = $config['system']['theme'];
51 68bf6021 Scott Ullrich
$pconfig['disablerendevouz'] = $config['system']['disablerendevouz'];
52 2f810bc1 Scott Ullrich
$pconfig['enableserial'] = $config['system']['enableserial'];
53 5c50ae40 Scott Ullrich
$pconfig['disablefirmwarecheck'] = isset($config['system']['disablefirmwarecheck']);
54 d5967a9a Scott Ullrich
$pconfig['preferoldsa_enable'] = isset($config['ipsec']['preferoldsa']);
55 222b5299 Scott Ullrich
56 5b237745 Scott Ullrich
if ($_POST) {
57
58
	unset($input_errors);
59
	$pconfig = $_POST;
60
61
	/* input validation */
62
	if ($_POST['ipv6nat_enable'] && !is_ipaddr($_POST['ipv6nat_ipaddr'])) {
63
		$input_errors[] = "You must specify an IP address to NAT IPv6 packets.";
64
	}
65 351217ed Scott Ullrich
	if ($_POST['maximumstates'] && !is_numericint($_POST['maximumstates'])) {
66
		$input_errors[] = "The Firewall Maximum States value must be an integer.";
67
	}
68 5b237745 Scott Ullrich
	if ($_POST['tcpidletimeout'] && !is_numericint($_POST['tcpidletimeout'])) {
69
		$input_errors[] = "The TCP idle timeout must be an integer.";
70
	}
71
	if (($_POST['cert'] && !$_POST['key']) || ($_POST['key'] && !$_POST['cert'])) {
72
		$input_errors[] = "Certificate and key must always be specified together.";
73
	} else if ($_POST['cert'] && $_POST['key']) {
74
		if (!strstr($_POST['cert'], "BEGIN CERTIFICATE") || !strstr($_POST['cert'], "END CERTIFICATE"))
75
			$input_errors[] = "This certificate does not appear to be valid.";
76
		if (!strstr($_POST['key'], "BEGIN RSA PRIVATE KEY") || !strstr($_POST['key'], "END RSA PRIVATE KEY"))
77
			$input_errors[] = "This key does not appear to be valid.";
78 a509ff63 Bill Marquette
	if ($_POST['altfirmwareurl'])
79
		if ($_POST['firmwareurl'] == "" || $_POST['firmwarename'] == "")
80
		$input_errors[] = "You must specify a base URL and a filename for the alternate firmware.";
81 66f481cc Colin Smith
82
	if ($_POST['altpkgconfigurl'])
83
		if ($_POST['pkgconfig_base_url'] == "" || $_POST['pkgconfig_filename'] == "")
84
		$input_errors[] = "You must specifiy and base URL and a filename before using an alternate pkg_config.xml.";
85 5b237745 Scott Ullrich
	}
86
87
	if (!$input_errors) {
88 35284e50 Scott Ullrich
		if($_POST['disablefilter'] == "yes") {
89
			$config['system']['disablefilter'] = "enabled";
90
		} else {
91
			unset($config['system']['disablefilter']);
92
		}
93 f55cccc4 Scott Ullrich
		if($_POST['disableftpproxy'] == "yes") {
94
			$config['system']['disableftpproxy'] = "enabled";
95 38560a25 Bill Marquette
			unset($config['system']['rfc959workaround']);
96 2bae67ba Scott Ullrich
			system_start_ftp_helpers();
97 f55cccc4 Scott Ullrich
		} else {
98
			unset($config['system']['disableftpproxy']);
99 dce949b0 Scott Ullrich
			system_start_ftp_helpers();
100 f55cccc4 Scott Ullrich
		}
101 31f93981 Bill Marquette
		if($_POST['rfc959workaround'] == "yes")
102 38560a25 Bill Marquette
			$config['system']['rfc959workaround'] = "enabled";
103 31f93981 Bill Marquette
		else
104
			unset($config['system']['rfc959workaround']);
105
106
		if($_POST['ipv6nat_enable'] == "yes") {
107
			$config['diag']['ipv6nat']['enable'] = true;
108
			$config['diag']['ipv6nat']['ipaddr'] = $_POST['ipv6nat_ipaddr'];
109
		} else {
110
			unset($config['diag']['ipv6nat']['enable']);
111
			unset($config['diag']['ipv6nat']['ipaddr']);
112 38560a25 Bill Marquette
		}
113 5b237745 Scott Ullrich
		$oldcert = $config['system']['webgui']['certificate'];
114
		$oldkey = $config['system']['webgui']['private-key'];
115
		$config['system']['webgui']['certificate'] = base64_encode($_POST['cert']);
116
		$config['system']['webgui']['private-key'] = base64_encode($_POST['key']);
117 31f93981 Bill Marquette
		if($_POST['disableconsolemenu'] == "yes")
118
			$config['system']['disableconsolemenu'] = true;
119
		else
120
			unset($config['system']['disableconsolemenu']);
121 aefb60ce Scott Ullrich
		unset($config['system']['webgui']['expanddiags']);
122 416ed28d Scott Ullrich
		$config['system']['optimization'] = $_POST['optimization'];
123 5c50ae40 Scott Ullrich
		
124
		if($_POST['disablefirmwarecheck'] == "yes")
125
			$config['system']['disablefirmwarecheck'] = true;
126
		else
127 2629e5d1 Scott Ullrich
			unset($config['system']['disablefirmwarecheck']);
128
129 31f93981 Bill Marquette
		if ($_POST['enableserial'] == "yes")
130 538bb06f Bill Marquette
			$config['system']['enableserial'] = true;
131 31f93981 Bill Marquette
		else
132
			unset($config['system']['enableserial']);
133
134
		if($_POST['harddiskstandby'] == "yes") {
135
			$config['system']['harddiskstandby'] = "yes";
136
			system_set_harddisk_standby();
137
		} else
138
			unset($config['system']['harddiskstandby']);
139
140
		if ($_POST['noantilockout'] == "yes")
141
			$config['system']['webgui']['noantilockout'] = true;
142
		else
143
			unset($config['system']['webgui']['noantilockout']);
144 13128695 Scott Ullrich
145 351217ed Scott Ullrich
		/* Firewall and ALTQ options */
146 12bcdc89 Scott Ullrich
		$config['system']['schedulertype'] = $_POST['schedulertype'];
147 351217ed Scott Ullrich
		$config['system']['maximumstates'] = $_POST['maximumstates'];
148 12bcdc89 Scott Ullrich
149 d5967a9a Scott Ullrich
                $config['ipsec']['preferoldsa'] = $_POST['preferoldsa_enable'] ? true : false;
150 15a87e25 Scott Ullrich
	
151 ce5ddbd6 Scott Ullrich
		/* pfSense themes */
152
		$config['theme'] = $_POST['theme'];
153 d5967a9a Scott Ullrich
154 5b237745 Scott Ullrich
		write_config();
155 13128695 Scott Ullrich
156 5b237745 Scott Ullrich
		if (($config['system']['webgui']['certificate'] != $oldcert)
157
				|| ($config['system']['webgui']['private-key'] != $oldkey)) {
158 61deccba Bill Marquette
			system_webgui_start();
159 5b237745 Scott Ullrich
		}
160 13128695 Scott Ullrich
161 b3d44462 Scott Ullrich
			
162 5b237745 Scott Ullrich
		$retval = 0;
163 3851094f Scott Ullrich
		config_lock();
164
		$retval = filter_configure();
165
		if(stristr($retval, "error") <> true)
166
		    $savemsg = get_std_save_message($retval);
167
		else
168
		    $savemsg = $retval;
169
		$retval |= interfaces_optional_configure();
170
		config_unlock();
171 2f810bc1 Scott Ullrich
		
172
		$etc_ttys  = return_filename_as_array("/etc/ttys");
173
		$boot_loader_rc = return_filename_as_array("/boot/loader.rc");
174
		
175 24d31909 Scott Ullrich
		conf_mount_rw();
176 923d0f44 Scott Ullrich
		
177 2f810bc1 Scott Ullrich
		$fout = fopen("/etc/ttys","w");
178
		foreach($etc_ttys as $tty) {
179 ad58a44a Scott Ullrich
			if(stristr($tty,"ttyv0") <> true) {
180 2f810bc1 Scott Ullrich
				fwrite($fout, $tty . "\n");				
181
			}
182
		}
183 41883093 Scott Ullrich
		if(isset($pconfig['enableserial']))
184 7bb0e455 Scott Ullrich
			fwrite($fout, "ttyv0\t\"/usr/libexec/getty Pc\"\tcons25\t\ton\tsecure\n");
185 2f810bc1 Scott Ullrich
		fclose($fout);		
186
		
187
		$fout = fopen("/boot/loader.rc","w");
188 9c704188 Scott Ullrich
		if(!is_array($boot_loader_rc))
189
			$boot_loader_rc = array();
190 2f810bc1 Scott Ullrich
		foreach($boot_loader_rc as $blrc) {
191
			if(stristr($blrc,"comconsole") <> true) {
192
				fwrite($fout, $blrc . "\n");				
193
			}
194
		}
195 41883093 Scott Ullrich
		if(isset($pconfig['enableserial']))
196 2f810bc1 Scott Ullrich
			fwrite($fout, "set console=comconsole\n");
197
		fclose($fout);
198 923d0f44 Scott Ullrich
		
199 24d31909 Scott Ullrich
		conf_mount_ro();
200 5b237745 Scott Ullrich
	}
201
}
202 b63695db Scott Ullrich
203
$pgtitle = "System: Advanced functions";
204
include("head.inc");
205
206 5b237745 Scott Ullrich
?>
207 b63695db Scott Ullrich
208 5b237745 Scott Ullrich
<script language="JavaScript">
209
<!--
210
function enable_change(enable_over) {
211
	if (document.iform.ipv6nat_enable.checked || enable_over) {
212
		document.iform.ipv6nat_ipaddr.disabled = 0;
213 416ed28d Scott Ullrich
		document.iform.schedulertype.disabled = 0;
214 5b237745 Scott Ullrich
	} else {
215
		document.iform.ipv6nat_ipaddr.disabled = 1;
216
	}
217
}
218 a509ff63 Bill Marquette
219 f1a5cfb8 Scott Ullrich
var descs=new Array(5);
220
descs[0]="as the name says, it's the normal optimization algorithm";
221
descs[1]="used for high latency links, such as satellite links.  Expires idle connections later than default";
222 538bb06f Bill Marquette
descs[2]="expires idle connections quicker. More efficient use of CPU and memory but can drop legitimate connections";
223 f1a5cfb8 Scott Ullrich
descs[3]="tries to avoid dropping any legitimate connections at the expense of increased memory usage and CPU utilization.";
224
225
function update_description(itemnum) {
226
        document.forms[0].info.value=descs[itemnum];
227
228
}
229
230 c7e202d3 Scott Ullrich
function openwindow(url) {
231 61432a49 Scott Ullrich
        var oWin = window.open(url,"pfSensePop","width=620,height=400,top=150,left=150");
232 c7e202d3 Scott Ullrich
        if (oWin==null || typeof(oWin)=="undefined") {
233
                return false;
234
        } else {
235
                return true;
236
        }
237
}
238
239 5b237745 Scott Ullrich
// -->
240
</script>
241
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
242
<?php include("fbegin.inc"); ?>
243 74f446e8 Bill Marquette
<p class="pgtitle"><?=$pgtitle?></p>
244
<form action="system_advanced.php" method="post" name="iform" id="iform">
245 5b237745 Scott Ullrich
            <?php if ($input_errors) print_input_errors($input_errors); ?>
246
            <?php if ($savemsg) print_info_box($savemsg); ?>
247 3b617d70 Scott Ullrich
            <p><span class="vexpl"><span class="red"><strong>Note: </strong></span>
248
	    the options on this page are intended for use by advanced users only.</span></p><br>
249 13128695 Scott Ullrich
250 5b237745 Scott Ullrich
              <table width="100%" border="0" cellpadding="6" cellspacing="0">
251 416ed28d Scott Ullrich
252 dbb0b7d6 Holger Bauer
		<?php if($g['platform'] == "pfSense" || $g['platform'] == "cdrom"): ?>
253 2f810bc1 Scott Ullrich
                <tr>
254
                  <td colspan="2" valign="top" class="listtopic">Enable Serial Console</td>
255
                </tr>
256
                <tr>
257
                  <td width="22%" valign="top" class="vncell">&nbsp;</td>
258
                  <td width="78%" class="vtable">
259 41883093 Scott Ullrich
                    <input name="enableserial" type="checkbox" id="enableserial" value="yes" <?php if (isset($pconfig['enableserial'])) echo "checked"; ?> onclick="enable_change(false)">
260 2f810bc1 Scott Ullrich
                    <strong>This will enable the first serial port with 9600/8/N/1</strong>
261
                    </td>
262
                </tr>
263 7b940748 Scott Ullrich
                <tr>
264
                  <td width="22%" valign="top">&nbsp;</td>
265
                  <td width="78%">
266
                    <input name="Submit" type="submit" class="formbtn" value="Save" onclick="enable_change(true)">
267
                  </td>
268
                </tr>
269
                </tr>
270
                <tr>
271
                  <td colspan="2" class="list" height="12"></td>
272
                </tr>		
273 faa571ed Scott Ullrich
		<?php endif ?>
274 2f810bc1 Scott Ullrich
275 15a87e25 Scott Ullrich
276
277
                <tr>
278 3487fb14 Scott Ullrich
                  <td colspan="2" valign="top" class="listtopic">Theme</td>
279 15a87e25 Scott Ullrich
                </tr>
280
                <tr>
281
                  <td width="22%" valign="top" class="vncell">&nbsp;</td>
282
                  <td width="78%" class="vtable">
283 ce5ddbd6 Scott Ullrich
		    <select name="theme">
284 15a87e25 Scott Ullrich
<?php
285 9e82c54f Scott Ullrich
			$files = return_dir_as_array("/usr/local/www/themes/");
286 15a87e25 Scott Ullrich
			foreach($files as $f) {
287
				if($f == "CVS") continue;
288
				$selected = "";
289 9e82c54f Scott Ullrich
				if($f == $config['theme'])
290 15a87e25 Scott Ullrich
					$selected = " SELECTED";
291 ce5ddbd6 Scott Ullrich
				if($config['theme'] == "" and $f == "pfsense")
292 15a87e25 Scott Ullrich
					$selceted = " SELECTED";
293
				echo "<option{$selected}>{$f}</option>\n";
294
			}
295
?>
296
		    </select>
297
                    <strong>This will change the look and feel of pfSense</strong>
298
                    </td>
299
                </tr>
300
301
302
303 68bf6021 Scott Ullrich
                <tr>
304
                  <td width="22%" valign="top">&nbsp;</td>
305
                  <td width="78%">
306
                    <input name="Submit" type="submit" class="formbtn" value="Save" onclick="enable_change(true)">
307
                  </td>
308
                </tr>
309
                <tr>
310
                  <td colspan="2" class="list" height="12"></td>
311
                </tr>
312
313 13128695 Scott Ullrich
                <tr>
314 5b237745 Scott Ullrich
                  <td colspan="2" valign="top" class="listtopic">IPv6 tunneling</td>
315
                </tr>
316 13128695 Scott Ullrich
                <tr>
317 5b237745 Scott Ullrich
                  <td width="22%" valign="top" class="vncell">&nbsp;</td>
318 13128695 Scott Ullrich
                  <td width="78%" class="vtable">
319
                    <input name="ipv6nat_enable" type="checkbox" id="ipv6nat_enable" value="yes" <?php if ($pconfig['ipv6nat_enable']) echo "checked"; ?> onclick="enable_change(false)">
320
                    <strong>NAT encapsulated IPv6 packets (IP protocol 41/RFC2893)
321
                    to:</strong><br> <br> <input name="ipv6nat_ipaddr" type="text" class="formfld" id="ipv6nat_ipaddr" size="20" value="<?=htmlspecialchars($pconfig['ipv6nat_ipaddr']);?>">
322 5b237745 Scott Ullrich
                    &nbsp;(IP address)<span class="vexpl"><br>
323
                    Don't forget to add a firewall rule to permit IPv6 packets!</span></td>
324
                </tr>
325 13128695 Scott Ullrich
                <tr>
326 5b237745 Scott Ullrich
                  <td width="22%" valign="top">&nbsp;</td>
327 13128695 Scott Ullrich
                  <td width="78%">
328
                    <input name="Submit" type="submit" class="formbtn" value="Save" onclick="enable_change(true)">
329 5b237745 Scott Ullrich
                  </td>
330
                </tr>
331 13128695 Scott Ullrich
                <tr>
332 5b237745 Scott Ullrich
                  <td colspan="2" class="list" height="12"></td>
333
                </tr>
334 13128695 Scott Ullrich
                <tr>
335 5b237745 Scott Ullrich
                  <td colspan="2" valign="top" class="listtopic">webGUI SSL certificate/key</td>
336
                </tr>
337 13128695 Scott Ullrich
                <tr>
338 5b237745 Scott Ullrich
                  <td width="22%" valign="top" class="vncell">Certificate</td>
339 13128695 Scott Ullrich
                  <td width="78%" class="vtable">
340 5b237745 Scott Ullrich
                    <textarea name="cert" cols="65" rows="7" id="cert" class="formpre"><?=htmlspecialchars($pconfig['cert']);?></textarea>
341 13128695 Scott Ullrich
                    <br>
342 c7e202d3 Scott Ullrich
                    Paste a signed certificate in X.509 PEM format here. <a href="javascript:if(openwindow('system_advanced_create_certs.php') == false) alert('Popup blocker detected.  Action aborted.');" >Create</a> certificates automatically.</td>
343 5b237745 Scott Ullrich
                </tr>
344 13128695 Scott Ullrich
                <tr>
345 5b237745 Scott Ullrich
                  <td width="22%" valign="top" class="vncell">Key</td>
346 13128695 Scott Ullrich
                  <td width="78%" class="vtable">
347 5b237745 Scott Ullrich
                    <textarea name="key" cols="65" rows="7" id="key" class="formpre"><?=htmlspecialchars($pconfig['key']);?></textarea>
348 13128695 Scott Ullrich
                    <br>
349 5b237745 Scott Ullrich
                    Paste an RSA private key in PEM format here.</td>
350
                </tr>
351 13128695 Scott Ullrich
                <tr>
352 5b237745 Scott Ullrich
                  <td width="22%" valign="top">&nbsp;</td>
353 13128695 Scott Ullrich
                  <td width="78%">
354
                    <input name="Submit" type="submit" class="formbtn" value="Save" onclick="enable_change(true)">
355 5b237745 Scott Ullrich
                  </td>
356
                </tr>
357 13128695 Scott Ullrich
                <tr>
358 5b237745 Scott Ullrich
                  <td colspan="2" class="list" height="12"></td>
359
                </tr>
360 13128695 Scott Ullrich
                <tr>
361 5b237745 Scott Ullrich
                  <td colspan="2" valign="top" class="listtopic">Miscellaneous</td>
362
                </tr>
363 13128695 Scott Ullrich
				<tr>
364 5b237745 Scott Ullrich
                  <td width="22%" valign="top" class="vncell">Console menu </td>
365 13128695 Scott Ullrich
                  <td width="78%" class="vtable">
366 5b237745 Scott Ullrich
                    <input name="disableconsolemenu" type="checkbox" id="disableconsolemenu" value="yes" <?php if ($pconfig['disableconsolemenu']) echo "checked"; ?>>
367
                    <strong>Disable console menu</strong><span class="vexpl"><br>
368
                    Changes to this option will take effect after a reboot.</span></td>
369
                </tr>
370 5c50ae40 Scott Ullrich
		<tr>
371
                  <td valign="top" class="vncell">Firmware version check </td>
372
                  <td class="vtable">
373
                    <input name="disablefirmwarecheck" type="checkbox" id="disablefirmwarecheck" value="yes" <?php if ($pconfig['disablefirmwarecheck']) echo "checked"; ?>>
374
                    <strong>Disable firmware version check</strong><span class="vexpl"><br>This will cause pfSense not to check for newer firmware versions when the <a href="system_firmware.php">System: Firmware</a> page is viewed.</span></td>
375
		</tr>		
376 a509ff63 Bill Marquette
		<tr>
377 5b237745 Scott Ullrich
                  <td width="22%" valign="top" class="vncell">Hard disk standby time </td>
378 13128695 Scott Ullrich
                  <td width="78%" class="vtable">
379 5b237745 Scott Ullrich
                    <select name="harddiskstandby" class="formfld">
380
					<?php
381
                        /* Values from ATA-2
382
                           http://www.t13.org/project/d0948r3-ATA-2.pdf
383
                           Page 66 */
384
						$sbvals = explode(" ", "0.5,6 1,12 2,24 3,36 4,48 5,60 7.5,90 10,120 15,180 20,240 30,241 60,242");
385
					?>
386
                      <option value="" <?php if(!$pconfig['harddiskstandby']) echo('selected');?>>Always on</option>
387
					<?php
388
					foreach ($sbvals as $sbval):
389
						list($min,$val) = explode(",", $sbval); ?>
390
                      <option value="<?=$val;?>" <?php if($pconfig['harddiskstandby'] == $val) echo('selected');?>><?=$min;?> minutes</option>
391
					<?php endforeach; ?>
392
                    </select>
393
                    <br>
394
                    Puts the hard disk into standby mode when the selected amount of time after the last
395
                    access has elapsed. <em>Do not set this for CF cards.</em></td>
396
				</tr>
397 416ed28d Scott Ullrich
		<tr>
398 5b237745 Scott Ullrich
                  <td width="22%" valign="top" class="vncell">webGUI anti-lockout</td>
399 13128695 Scott Ullrich
                  <td width="78%" class="vtable">
400 5b237745 Scott Ullrich
                    <input name="noantilockout" type="checkbox" id="noantilockout" value="yes" <?php if ($pconfig['noantilockout']) echo "checked"; ?>>
401
                    <strong>Disable webGUI anti-lockout rule</strong><br>
402
					By default, access to the webGUI on the LAN interface is always permitted, regardless of the user-defined filter rule set. Enable this feature to control webGUI access (make sure to have a filter rule in place that allows you in, or you will lock yourself out!).<br>
403 13128695 Scott Ullrich
					Hint:
404 5b237745 Scott Ullrich
					the &quot;set LAN IP address&quot; option in the console menu  resets this setting as well.</td>
405
                </tr>
406 d5967a9a Scott Ullrich
		<tr>
407
                  <td width="22%" valign="top" class="vncell">IPsec SA preferral</td>
408
                  <td width="78%" class="vtable">
409
                    <input name="preferoldsa_enable" type="checkbox" id="preferoldsa_enable" value="yes" <?php if ($pconfig['preferoldsa_enable']) echo "checked"; ?>>
410
                    <strong>Prefer old IPsec SAs</strong><br>By default, if several SAs match, the newest one is preferred if it's at least 30 seconds old.Select this option to always prefer old SAs over new ones.
411
                  </td>
412
                </tr>		
413 13128695 Scott Ullrich
                <tr>
414 5b237745 Scott Ullrich
                  <td width="22%" valign="top">&nbsp;</td>
415 13128695 Scott Ullrich
                  <td width="78%">
416
                    <input name="Submit" type="submit" class="formbtn" value="Save" onclick="enable_change(true)">
417 5b237745 Scott Ullrich
                  </td>
418
                </tr>
419 19b08f97 Scott Ullrich
                <tr>
420
                  <td colspan="2" class="list" height="12"></td>
421
                </tr>
422
                <tr>
423
                  <td colspan="2" valign="top" class="listtopic">Traffic Shaper and Firewall Advanced</td>
424
                </tr>
425
                <tr>
426
                  <td width="22%" valign="top" class="vncell">FTP Helper</td>
427
                  <td width="78%" class="vtable">
428
                    <input name="disableftpproxy" type="checkbox" id="disableftpproxy" value="yes" <?php if (isset($config['system']['disableftpproxy'])) echo "checked"; ?> onclick="enable_change(false)">
429
                    <strong class="vexpl">Disable the userland FTP-Proxy application</strong><br>
430
                </tr>
431 38560a25 Bill Marquette
                <tr>
432
                  <td width="22%" valign="top" class="vncell">FTP RFC 959 data port violation workaround</td>
433
                  <td width="78%" class="vtable">
434
                    <input name="rfc959workaround" type="checkbox" id="rfc959workaround" value="yes" <?php if (isset($config['system']['rfc959workaround'])) echo "checked"; ?> onclick="enable_change(false)">
435 355229d0 Bill Marquette
                    <strong class="vexpl">Workaround for sites that violate RFC 959 which specifies that the data connection be sourced from the command port - 1 (typically port 20).  This workaround doesn't expose you to any extra risk as the firewall will still only allow connections on a port that the ftp-proxy is listening on.</strong><br>
436 38560a25 Bill Marquette
                </tr>
437 416ed28d Scott Ullrich
438
		<tr>
439 d76f9696 Bill Marquette
		  <td width="22%" valign="top" class="vncell">Traffic Shaper Scheduler</td>
440 19b08f97 Scott Ullrich
		  <td width="78%" class="vtable">
441
		    <select id="schedulertype" name="schedulertype" <?= $style ?>>
442 9cba3649 Scott Ullrich
			    <option value="priq"<?php if($pconfig['schedulertype'] == 'priq') echo " SELECTED"; ?>>Priority based queueing</option>
443
			    <option value="cbq"<?php if($pconfig['schedulertype'] == 'cbq') echo " SELECTED"; ?>>Class based queueing</option>
444
			    <option value="hfsc"<?php if($pconfig['schedulertype'] == 'hfsc') echo " SELECTED"; ?>>Hierarchical Fair Service Curve queueing</option>
445 19b08f97 Scott Ullrich
		    </select>
446 d76f9696 Bill Marquette
		    <br> <span class="vexpl"><b>Select which type of queueing you would like to use</b>
447 19b08f97 Scott Ullrich
		  <?php if (is_array($config['shaper']['queue']) > 0): ?>
448
			<script language="javascript">
449
			document.iform.schedulertype.disabled = 1;
450
			</script>
451
			<br>
452
			NOTE: This option is disabled since there are queues defined.
453
		  <?php endif; ?>
454
		    </span></td>
455
		</tr>
456
457
		<tr>
458
                  <td width="22%" valign="top" class="vncell">Firewall Optimization Options</td>
459 416ed28d Scott Ullrich
                  <td width="78%" class="vtable">
460 f1a5cfb8 Scott Ullrich
			<select onChange="update_description(this.selectedIndex);" name="optimization" id="optimization">
461 f8b00759 Scott Ullrich
			<br>
462 f1a5cfb8 Scott Ullrich
			<option value="normal"<?php if($config['system']['optimization']=="normal") echo " SELECTED"; ?>>normal</option>
463
			<option value="high-latency"<?php if($config['system']['optimization']=="high-latency") echo " SELECTED"; ?>>high-latency</option>
464
			<option value="aggressive"<?php if($config['system']['optimization']=="aggressive") echo " SELECTED"; ?>>aggressive</option>
465
			<option value="conservative"<?php if($config['system']['optimization']=="conservative") echo " SELECTED"; ?>>conservative</option>
466
			</select>
467 05603c34 Scott Ullrich
			<textarea cols="60" rows="2" id="info" name="info"style="border:1px dashed #000066; background-color: #ffffff; color: #000000; font-size: 8pt;">
468 f1a5cfb8 Scott Ullrich
			</textarea>
469
			<script language="javascript">
470
			update_description(document.forms[0].optimization.selectedIndex);
471
			</script>
472 05603c34 Scott Ullrich
			<br><span class="vexpl"><b>Select which type of state table optimization your would like to use</b></td>
473 416ed28d Scott Ullrich
                </tr>
474 f1a5cfb8 Scott Ullrich
475 19b08f97 Scott Ullrich
                <tr>
476
                  <td width="22%" valign="top" class="vncell">Disable Firewall</td>
477
                  <td width="78%" class="vtable">
478
                    <input name="disablefilter" type="checkbox" id="disablefilter" value="yes" <?php if (isset($config['system']['disablefilter'])) echo "checked"; ?> onclick="enable_change(false)">
479
                    <strong>Disable the firewalls filter altogether.</strong><br>
480 091ac305 Scott Ullrich
                    <span class="vexpl">Note:  This basically converts pfSense into a routing only platform!</span></td>
481 19b08f97 Scott Ullrich
                </tr>
482
483 351217ed Scott Ullrich
                <tr>
484
                  <td width="22%" valign="top" class="vncell">Firewall Maximum States</td>
485
                  <td width="78%" class="vtable">
486
                    <input name="maximumstates" type="input" id="maximumstates" value="<?php echo $pconfig['maximumstates']; ?>" onclick="enable_change(false)"><br>
487
                    <strong>Maximum number of connections to hold in the firewall state table.</strong><br>
488 091ac305 Scott Ullrich
                    <span class="vexpl">Note:  Leave this blank for the default of 10000</span></td>
489 351217ed Scott Ullrich
                </tr>
490
491 416ed28d Scott Ullrich
                <tr>
492
                  <td width="22%" valign="top">&nbsp;</td>
493
                  <td width="78%">
494
                    <input name="Submit" type="submit" class="formbtn" value="Save" onclick="enable_change(true)">
495
                  </td>
496
                </tr>
497 19b08f97 Scott Ullrich
                <tr>
498
                  <td colspan="2" class="list" height="12"></td>
499
                </tr>
500 416ed28d Scott Ullrich
501
502
503
504
505
506 5b237745 Scott Ullrich
              </table>
507
</form>
508
            <script language="JavaScript">
509
<!--
510
enable_change(false);
511 f5e7f73c Holger Bauer
//enable_altfirmwareurl(false);
512
//enable_altpkgconfigurl(false);
513 5b237745 Scott Ullrich
//-->
514
</script>
515
<?php include("fend.inc"); ?>
516
</body>
517
</html>