Project

General

Profile

Download (22.7 KB) Statistics
| Branch: | Tag: | Revision:
1
#!/usr/local/bin/php
2
<?php
3
/* $Id$ */
4
/*
5
	system_advanced.php
6
        part of pfSense
7
        Copyright (C) 2005 Scott Ullrich
8

    
9
	originally part of m0n0wall (http://m0n0.ch/wall)
10
	Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
11
	All rights reserved.
12

    
13
	Redistribution and use in source and binary forms, with or without
14
	modification, are permitted provided that the following conditions are met:
15

    
16
	1. Redistributions of source code must retain the above copyright notice,
17
	   this list of conditions and the following disclaimer.
18

    
19
	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

    
23
	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
$pconfig['disablefilter'] = $config['system']['disablefilter'];
38
$pconfig['disableftpproxy'] = $config['system']['disableftpproxy'];
39
$pconfig['rfc959workaround'] = $config['system']['rfc959workaround'];
40
$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
$pconfig['expanddiags'] = isset($config['system']['webgui']['expanddiags']);
46
$pconfig['harddiskstandby'] = $config['system']['harddiskstandby'];
47
$pconfig['noantilockout'] = isset($config['system']['webgui']['noantilockout']);
48
$pconfig['tcpidletimeout'] = $config['filter']['tcpidletimeout'];
49
$pconfig['schedulertype'] = $config['system']['schedulertype'];
50
$pconfig['maximumstates'] = $config['system']['maximumstates'];
51
$pconfig['disablerendevouz'] = $config['system']['disablerendevouz'];
52
$pconfig['enableserial'] = $config['system']['enableserial'];
53
$pconfig['disablefirmwarecheck'] = isset($config['system']['disablefirmwarecheck']);
54
$pconfig['preferoldsa_enable'] = isset($config['ipsec']['preferoldsa']);
55

    
56
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
	if ($_POST['maximumstates'] && !is_numericint($_POST['maximumstates'])) {
66
		$input_errors[] = "The Firewall Maximum States value must be an integer.";
67
	}
68
	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
	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

    
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
	}
86

    
87
	if (!$input_errors) {
88
		if($_POST['disablefilter'] == "yes") {
89
			$config['system']['disablefilter'] = "enabled";
90
		} else {
91
			unset($config['system']['disablefilter']);
92
		}
93
		if($_POST['disableftpproxy'] == "yes") {
94
			$config['system']['disableftpproxy'] = "enabled";
95
			unset($config['system']['rfc959workaround']);
96
			system_start_ftp_helpers();
97
		} else {
98
			unset($config['system']['disableftpproxy']);
99
			system_start_ftp_helpers();
100
		}
101
		if($_POST['rfc959workaround'] == "yes")
102
			$config['system']['rfc959workaround'] = "enabled";
103
		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
		}
113
		$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
		if($_POST['disableconsolemenu'] == "yes")
118
			$config['system']['disableconsolemenu'] = true;
119
		else
120
			unset($config['system']['disableconsolemenu']);
121
		if ($_POST['expanddiags'] == "yes")
122
			$config['system']['webgui']['expanddiags'] = true;
123
		else
124
			unset($config['system']['webgui']['expanddiags']);
125
		$config['system']['optimization'] = $_POST['optimization'];
126
		
127
		if($_POST['disablefirmwarecheck'] == "yes")
128
			$config['system']['disablefirmwarecheck'] = true;
129
		else
130
			unset($config['system']['disablefirmwarecheck']);
131

    
132
		if ($_POST['enableserial'] == "yes")
133
			$config['system']['enableserial'] = true;
134
		else
135
			unset($config['system']['enableserial']);
136

    
137
		if($_POST['harddiskstandby'] == "yes") {
138
			$config['system']['harddiskstandby'] = "yes";
139
			system_set_harddisk_standby();
140
		} else
141
			unset($config['system']['harddiskstandby']);
142

    
143
		if ($_POST['noantilockout'] == "yes")
144
			$config['system']['webgui']['noantilockout'] = true;
145
		else
146
			unset($config['system']['webgui']['noantilockout']);
147

    
148
		/* Firewall and ALTQ options */
149
		$config['system']['schedulertype'] = $_POST['schedulertype'];
150
		$config['system']['maximumstates'] = $_POST['maximumstates'];
151

    
152
                $config['ipsec']['preferoldsa'] = $_POST['preferoldsa_enable'] ? true : false;
153

    
154
		write_config();
155

    
156
		if (($config['system']['webgui']['certificate'] != $oldcert)
157
				|| ($config['system']['webgui']['private-key'] != $oldkey)) {
158
			system_webgui_start();
159
		}
160

    
161
			
162
		$retval = 0;
163
		if (!file_exists($d_sysrebootreqd_path)) {
164
			config_lock();
165
			$retval = filter_configure();
166
			if(stristr($retval, "error") <> true)
167
			    $savemsg = get_std_save_message($retval);
168
			else
169
			    $savemsg = $retval;
170
			$retval |= interfaces_optional_configure();
171
			config_unlock();
172
		}
173
		
174
		$etc_ttys  = return_filename_as_array("/etc/ttys");
175
		$boot_loader_rc = return_filename_as_array("/boot/loader.rc");
176
		
177
		
178
		conf_mount_rw();
179
		
180
		$fout = fopen("/etc/ttys","w");
181
		foreach($etc_ttys as $tty) {
182
			if(stristr($tty,"ttyv0") <> true) {
183
				fwrite($fout, $tty . "\n");				
184
			}
185
		}
186
		if(isset($pconfig['enableserial']))
187
			fwrite($fout, "ttyv0\t\"/usr/libexec/getty Pc\"\tcons25\t\ton\tsecure\n");
188
		fclose($fout);		
189
		
190
		$fout = fopen("/boot/loader.rc","w");
191
		foreach($boot_loader_rc as $blrc) {
192
			if(stristr($blrc,"comconsole") <> true) {
193
				fwrite($fout, $blrc . "\n");				
194
			}
195
		}
196
		if(isset($pconfig['enableserial']))
197
			fwrite($fout, "set console=comconsole\n");
198
		fclose($fout);
199
		
200
		conf_mount_ro();
201
	}
202
}
203

    
204
$pgtitle = "System: Advanced functions";
205
include("head.inc");
206

    
207
?>
208

    
209
<script language="JavaScript">
210
<!--
211
function enable_change(enable_over) {
212
	if (document.iform.ipv6nat_enable.checked || enable_over) {
213
		document.iform.ipv6nat_ipaddr.disabled = 0;
214
		document.iform.schedulertype.disabled = 0;
215
	} else {
216
		document.iform.ipv6nat_ipaddr.disabled = 1;
217
	}
218
}
219

    
220
var descs=new Array(5);
221
descs[0]="as the name says, it's the normal optimization algorithm";
222
descs[1]="used for high latency links, such as satellite links.  Expires idle connections later than default";
223
descs[2]="expires idle connections quicker. More efficient use of CPU and memory but can drop legitimate connections";
224
descs[3]="tries to avoid dropping any legitimate connections at the expense of increased memory usage and CPU utilization.";
225

    
226
function update_description(itemnum) {
227
        document.forms[0].info.value=descs[itemnum];
228

    
229
}
230

    
231
function openwindow(url) {
232
        var oWin = window.open(url,"pfSensePop","width=620,height=400,top=150,left=150");
233
        if (oWin==null || typeof(oWin)=="undefined") {
234
                return false;
235
        } else {
236
                return true;
237
        }
238
}
239

    
240
// -->
241
</script>
242
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
243
<?php include("fbegin.inc"); ?>
244
<p class="pgtitle"><?=$pgtitle?></p>
245
<form action="system_advanced.php" method="post" name="iform" id="iform">
246
            <?php if ($input_errors) print_input_errors($input_errors); ?>
247
            <?php if ($savemsg) print_info_box($savemsg); ?>
248
            <p><span class="vexpl"><span class="red"><strong>Note: </strong></span>
249
	    the options on this page are intended for use by advanced users only.</span></p><br>
250

    
251
              <table width="100%" border="0" cellpadding="6" cellspacing="0">
252

    
253
		<?php if($g['platform'] == "pfSense" || $g['platform'] == "cdrom"): ?>
254
                <tr>
255
                  <td colspan="2" valign="top" class="listtopic">Enable Serial Console</td>
256
                </tr>
257
                <tr>
258
                  <td width="22%" valign="top" class="vncell">&nbsp;</td>
259
                  <td width="78%" class="vtable">
260
                    <input name="enableserial" type="checkbox" id="enableserial" value="yes" <?php if (isset($pconfig['enableserial'])) echo "checked"; ?> onclick="enable_change(false)">
261
                    <strong>This will enable the first serial port with 9600/8/N/1</strong>
262
                    </td>
263
                </tr>
264
		<?php endif ?>
265

    
266
                <tr>
267
                  <td width="22%" valign="top">&nbsp;</td>
268
                  <td width="78%">
269
                    <input name="Submit" type="submit" class="formbtn" value="Save" onclick="enable_change(true)">
270
                  </td>
271
                </tr>
272
                <tr>
273
                  <td colspan="2" class="list" height="12"></td>
274
                </tr>
275

    
276
                <tr>
277
                  <td colspan="2" valign="top" class="listtopic">IPv6 tunneling</td>
278
                </tr>
279
                <tr>
280
                  <td width="22%" valign="top" class="vncell">&nbsp;</td>
281
                  <td width="78%" class="vtable">
282
                    <input name="ipv6nat_enable" type="checkbox" id="ipv6nat_enable" value="yes" <?php if ($pconfig['ipv6nat_enable']) echo "checked"; ?> onclick="enable_change(false)">
283
                    <strong>NAT encapsulated IPv6 packets (IP protocol 41/RFC2893)
284
                    to:</strong><br> <br> <input name="ipv6nat_ipaddr" type="text" class="formfld" id="ipv6nat_ipaddr" size="20" value="<?=htmlspecialchars($pconfig['ipv6nat_ipaddr']);?>">
285
                    &nbsp;(IP address)<span class="vexpl"><br>
286
                    Don't forget to add a firewall rule to permit IPv6 packets!</span></td>
287
                </tr>
288
                <tr>
289
                  <td width="22%" valign="top">&nbsp;</td>
290
                  <td width="78%">
291
                    <input name="Submit" type="submit" class="formbtn" value="Save" onclick="enable_change(true)">
292
                  </td>
293
                </tr>
294
                <tr>
295
                  <td colspan="2" class="list" height="12"></td>
296
                </tr>
297
                <tr>
298
                  <td colspan="2" valign="top" class="listtopic">webGUI SSL certificate/key</td>
299
                </tr>
300
                <tr>
301
                  <td width="22%" valign="top" class="vncell">Certificate</td>
302
                  <td width="78%" class="vtable">
303
                    <textarea name="cert" cols="65" rows="7" id="cert" class="formpre"><?=htmlspecialchars($pconfig['cert']);?></textarea>
304
                    <br>
305
                    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>
306
                </tr>
307
                <tr>
308
                  <td width="22%" valign="top" class="vncell">Key</td>
309
                  <td width="78%" class="vtable">
310
                    <textarea name="key" cols="65" rows="7" id="key" class="formpre"><?=htmlspecialchars($pconfig['key']);?></textarea>
311
                    <br>
312
                    Paste an RSA private key in PEM format here.</td>
313
                </tr>
314
                <tr>
315
                  <td width="22%" valign="top">&nbsp;</td>
316
                  <td width="78%">
317
                    <input name="Submit" type="submit" class="formbtn" value="Save" onclick="enable_change(true)">
318
                  </td>
319
                </tr>
320
                <tr>
321
                  <td colspan="2" class="list" height="12"></td>
322
                </tr>
323
                <tr>
324
                  <td colspan="2" valign="top" class="listtopic">Miscellaneous</td>
325
                </tr>
326
				<tr>
327
                  <td width="22%" valign="top" class="vncell">Console menu </td>
328
                  <td width="78%" class="vtable">
329
                    <input name="disableconsolemenu" type="checkbox" id="disableconsolemenu" value="yes" <?php if ($pconfig['disableconsolemenu']) echo "checked"; ?>>
330
                    <strong>Disable console menu</strong><span class="vexpl"><br>
331
                    Changes to this option will take effect after a reboot.</span></td>
332
                </tr>
333
		<tr>
334
                  <td valign="top" class="vncell">Firmware version check </td>
335
                  <td class="vtable">
336
                    <input name="disablefirmwarecheck" type="checkbox" id="disablefirmwarecheck" value="yes" <?php if ($pconfig['disablefirmwarecheck']) echo "checked"; ?>>
337
                    <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>
338
		</tr>		
339
		<tr>
340
                  <td width="22%" valign="top" class="vncell">Hard disk standby time </td>
341
                  <td width="78%" class="vtable">
342
                    <select name="harddiskstandby" class="formfld">
343
					<?php
344
                        /* Values from ATA-2
345
                           http://www.t13.org/project/d0948r3-ATA-2.pdf
346
                           Page 66 */
347
						$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");
348
					?>
349
                      <option value="" <?php if(!$pconfig['harddiskstandby']) echo('selected');?>>Always on</option>
350
					<?php
351
					foreach ($sbvals as $sbval):
352
						list($min,$val) = explode(",", $sbval); ?>
353
                      <option value="<?=$val;?>" <?php if($pconfig['harddiskstandby'] == $val) echo('selected');?>><?=$min;?> minutes</option>
354
					<?php endforeach; ?>
355
                    </select>
356
                    <br>
357
                    Puts the hard disk into standby mode when the selected amount of time after the last
358
                    access has elapsed. <em>Do not set this for CF cards.</em></td>
359
				</tr>
360
				<tr>
361
                  <td width="22%" valign="top" class="vncell">Navigation</td>
362
                  <td width="78%" class="vtable">
363
                    <input name="expanddiags" type="checkbox" id="expanddiags" value="yes" <?php if ($pconfig['expanddiags']) echo "checked"; ?>>
364
                    <strong>Keep diagnostics in navigation expanded </strong></td>
365
                </tr>
366
		<tr>
367
                  <td width="22%" valign="top" class="vncell">webGUI anti-lockout</td>
368
                  <td width="78%" class="vtable">
369
                    <input name="noantilockout" type="checkbox" id="noantilockout" value="yes" <?php if ($pconfig['noantilockout']) echo "checked"; ?>>
370
                    <strong>Disable webGUI anti-lockout rule</strong><br>
371
					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>
372
					Hint:
373
					the &quot;set LAN IP address&quot; option in the console menu  resets this setting as well.</td>
374
                </tr>
375
		<tr>
376
                  <td width="22%" valign="top" class="vncell">IPsec SA preferral</td>
377
                  <td width="78%" class="vtable">
378
                    <input name="preferoldsa_enable" type="checkbox" id="preferoldsa_enable" value="yes" <?php if ($pconfig['preferoldsa_enable']) echo "checked"; ?>>
379
                    <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.
380
                  </td>
381
                </tr>		
382
                <tr>
383
                  <td width="22%" valign="top">&nbsp;</td>
384
                  <td width="78%">
385
                    <input name="Submit" type="submit" class="formbtn" value="Save" onclick="enable_change(true)">
386
                  </td>
387
                </tr>
388
                <tr>
389
                  <td colspan="2" class="list" height="12"></td>
390
                </tr>
391
                <tr>
392
                  <td colspan="2" valign="top" class="listtopic">Traffic Shaper and Firewall Advanced</td>
393
                </tr>
394
                <tr>
395
                  <td width="22%" valign="top" class="vncell">FTP Helper</td>
396
                  <td width="78%" class="vtable">
397
                    <input name="disableftpproxy" type="checkbox" id="disableftpproxy" value="yes" <?php if (isset($config['system']['disableftpproxy'])) echo "checked"; ?> onclick="enable_change(false)">
398
                    <strong class="vexpl">Disable the userland FTP-Proxy application</strong><br>
399
                </tr>
400
                <tr>
401
                  <td width="22%" valign="top" class="vncell">FTP RFC 959 data port violation workaround</td>
402
                  <td width="78%" class="vtable">
403
                    <input name="rfc959workaround" type="checkbox" id="rfc959workaround" value="yes" <?php if (isset($config['system']['rfc959workaround'])) echo "checked"; ?> onclick="enable_change(false)">
404
                    <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>
405
                </tr>
406

    
407
		<tr>
408
		  <td width="22%" valign="top" class="vncell">Traffic Shaper Scheduler</td>
409
		  <td width="78%" class="vtable">
410
		    <select id="schedulertype" name="schedulertype" <?= $style ?>>
411
			    <option value="priq"<?php if($pconfig['schedulertype'] == 'priq') echo " SELECTED"; ?>>Priority based queueing</option>
412
			    <option value="cbq"<?php if($pconfig['schedulertype'] == 'cbq') echo " SELECTED"; ?>>Class based queueing</option>
413
			    <option value="hfsc"<?php if($pconfig['schedulertype'] == 'hfsc') echo " SELECTED"; ?>>Hierarchical Fair Service Curve queueing</option>
414
		    </select>
415
		    <br> <span class="vexpl"><b>Select which type of queueing you would like to use</b>
416
		  <?php if (is_array($config['shaper']['queue']) > 0): ?>
417
			<script language="javascript">
418
			document.iform.schedulertype.disabled = 1;
419
			</script>
420
			<br>
421
			NOTE: This option is disabled since there are queues defined.
422
		  <?php endif; ?>
423
		    </span></td>
424
		</tr>
425

    
426
		<tr>
427
                  <td width="22%" valign="top" class="vncell">Firewall Optimization Options</td>
428
                  <td width="78%" class="vtable">
429
			<select onChange="update_description(this.selectedIndex);" name="optimization" id="optimization">
430
			<option value="normal"<?php if($config['system']['optimization']=="normal") echo " SELECTED"; ?>>normal</option>
431
			<option value="high-latency"<?php if($config['system']['optimization']=="high-latency") echo " SELECTED"; ?>>high-latency</option>
432
			<option value="aggressive"<?php if($config['system']['optimization']=="aggressive") echo " SELECTED"; ?>>aggressive</option>
433
			<option value="conservative"<?php if($config['system']['optimization']=="conservative") echo " SELECTED"; ?>>conservative</option>
434
			</select>
435
			<textarea cols="60" rows="2" id="info" name="info"style="border:1px dashed #000066; background-color: #ffffff; color: #000000; font-size: 8pt;">
436
			</textarea>
437
			<script language="javascript">
438
			update_description(document.forms[0].optimization.selectedIndex);
439
			</script>
440
			<br><span class="vexpl"><b>Select which type of state table optimization your would like to use</b></td>
441
                </tr>
442

    
443
                <tr>
444
                  <td width="22%" valign="top" class="vncell">Disable Firewall</td>
445
                  <td width="78%" class="vtable">
446
                    <input name="disablefilter" type="checkbox" id="disablefilter" value="yes" <?php if (isset($config['system']['disablefilter'])) echo "checked"; ?> onclick="enable_change(false)">
447
                    <strong>Disable the firewalls filter altogether.</strong><br>
448
                    <span class="vexpl">Note:  This basically converts pfSense into a routing only platform!</span></td>
449
                </tr>
450

    
451
                <tr>
452
                  <td width="22%" valign="top" class="vncell">Firewall Maximum States</td>
453
                  <td width="78%" class="vtable">
454
                    <input name="maximumstates" type="input" id="maximumstates" value="<?php echo $pconfig['maximumstates']; ?>" onclick="enable_change(false)"><br>
455
                    <strong>Maximum number of connections to hold in the firewall state table.</strong><br>
456
                    <span class="vexpl">Note:  Leave this blank for the default of 10000</span></td>
457
                </tr>
458

    
459
                <tr>
460
                  <td width="22%" valign="top">&nbsp;</td>
461
                  <td width="78%">
462
                    <input name="Submit" type="submit" class="formbtn" value="Save" onclick="enable_change(true)">
463
                  </td>
464
                </tr>
465
                <tr>
466
                  <td colspan="2" class="list" height="12"></td>
467
                </tr>
468

    
469

    
470

    
471

    
472

    
473

    
474
              </table>
475
</form>
476
            <script language="JavaScript">
477
<!--
478
enable_change(false);
479
//enable_altfirmwareurl(false);
480
//enable_altpkgconfigurl(false);
481
//-->
482
</script>
483
<?php include("fend.inc"); ?>
484
</body>
485
</html>
(103-103/128)