system_advanced_admin.php 31.4 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1
<?php
2

Ad Schellevis's avatar
Ad Schellevis committed
3
/*
4
	Copyright (C) 2014-2015 Deciso B.V.
Ad Schellevis's avatar
Ad Schellevis committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
	Copyright (C) 2005-2010 Scott Ullrich
	Copyright (C) 2008 Shrew Soft Inc
	Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
	All rights reserved.

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

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

	2. Redistributions in binary form must reproduce the above copyright
	   notice, this list of conditions and the following disclaimer in the
	   documentation and/or other materials provided with the distribution.

	THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
	INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
	AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
	AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
	OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
	POSSIBILITY OF SUCH DAMAGE.
*/

32
require_once("guiconfig.inc");
Ad Schellevis's avatar
Ad Schellevis committed
33
require_once("filter.inc");
34 35
require_once("system.inc");
require_once("unbound.inc");
36
require_once("pfsense-utils.inc");
37
require_once("services.inc");
Ad Schellevis's avatar
Ad Schellevis committed
38 39 40 41 42 43 44 45 46 47

$pconfig['webguiproto'] = $config['system']['webgui']['protocol'];
$pconfig['webguiport'] = $config['system']['webgui']['port'];
$pconfig['max_procs'] = ($config['system']['webgui']['max_procs']) ? $config['system']['webgui']['max_procs'] : 2;
$pconfig['ssl-certref'] = $config['system']['webgui']['ssl-certref'];
$pconfig['disablehttpredirect'] = isset($config['system']['webgui']['disablehttpredirect']);
$pconfig['disableconsolemenu'] = isset($config['system']['disableconsolemenu']);
$pconfig['noantilockout'] = isset($config['system']['webgui']['noantilockout']);
$pconfig['nodnsrebindcheck'] = isset($config['system']['webgui']['nodnsrebindcheck']);
$pconfig['nohttpreferercheck'] = isset($config['system']['webgui']['nohttpreferercheck']);
48
$pconfig['enable_xdebug'] = isset($config['system']['webgui']['enable_xdebug']) ;
Ad Schellevis's avatar
Ad Schellevis committed
49 50 51 52 53
$pconfig['loginautocomplete'] = isset($config['system']['webgui']['loginautocomplete']);
$pconfig['althostnames'] = $config['system']['webgui']['althostnames'];
$pconfig['enableserial'] = $config['system']['enableserial'];
$pconfig['serialspeed'] = $config['system']['serialspeed'];
$pconfig['primaryconsole'] = $config['system']['primaryconsole'];
54
$pconfig['enablesshd'] = $config['system']['ssh']['enabled'];
Ad Schellevis's avatar
Ad Schellevis committed
55
$pconfig['sshport'] = $config['system']['ssh']['port'];
56
$pconfig['passwordauth'] = isset($config['system']['ssh']['passwordauth']);
57
$pconfig['sshdpermitrootlogin'] = isset($config['system']['ssh']['permitrootlogin']);
Ad Schellevis's avatar
Ad Schellevis committed
58 59
$pconfig['quietlogin'] = isset($config['system']['webgui']['quietlogin']);

60
$a_cert = isset($config['cert']) ? $config['cert'] : array();
Ad Schellevis's avatar
Ad Schellevis committed
61 62

$certs_available = false;
63
if (count($a_cert)) {
64 65
    $certs_available = true;
}
Ad Schellevis's avatar
Ad Schellevis committed
66

67 68 69
if (!$pconfig['webguiproto'] || !$certs_available) {
    $pconfig['webguiproto'] = "http";
}
Ad Schellevis's avatar
Ad Schellevis committed
70 71

if ($_POST) {
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
    unset($input_errors);
    $pconfig = $_POST;

    /* input validation */
    if ($_POST['webguiport']) {
        if (!is_port($_POST['webguiport'])) {
            $input_errors[] = gettext("You must specify a valid webConfigurator port number");
        }
    }

    if ($_POST['max_procs']) {
        if (!is_numeric($_POST['max_procs']) || ($_POST['max_procs'] < 1) || ($_POST['max_procs'] > 500)) {
            $input_errors[] = gettext("Max Processes must be a number 1 or greater");
        }
    }

    if ($_POST['althostnames']) {
        $althosts = explode(" ", $_POST['althostnames']);
        foreach ($althosts as $ah) {
            if (!is_hostname($ah)) {
                $input_errors[] = sprintf(gettext("Alternate hostname %s is not a valid hostname."), htmlspecialchars($ah));
            }
        }
    }

    if ($_POST['sshport']) {
        if (!is_port($_POST['sshport'])) {
            $input_errors[] = gettext("You must specify a valid port number");
        }
    }

    if ($_POST['passwordauth'] == 'yes') {
        $config['system']['ssh']['passwordauth'] = 'enabled';
    } elseif (isset($config['system']['ssh']['passwordauth'])) {
        unset($config['system']['ssh']['passwordauth']);
    }
Ad Schellevis's avatar
Ad Schellevis committed
108

109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
    if ($_POST['sshdpermitrootlogin'] == "yes") {
        $config['system']['ssh']['permitrootlogin'] = "enabled";
    } elseif (isset($config['system']['ssh']['permitrootlogin'])) {
        unset($config['system']['ssh']['permitrootlogin']);
    }

    ob_flush();
    flush();

    if (!$input_errors) {
        if (update_if_changed("webgui protocol", $config['system']['webgui']['protocol'], $_POST['webguiproto'])) {
            $restart_webgui = true;
        }
        if (update_if_changed("webgui port", $config['system']['webgui']['port'], $_POST['webguiport'])) {
            $restart_webgui = true;
        }
        if (update_if_changed("webgui certificate", $config['system']['webgui']['ssl-certref'], $_POST['ssl-certref'])) {
            $restart_webgui = true;
        }
        if (update_if_changed("webgui max processes", $config['system']['webgui']['max_procs'], $_POST['max_procs'])) {
            $restart_webgui = true;
        }

        if ($_POST['disablehttpredirect'] == "yes") {
            $config['system']['webgui']['disablehttpredirect'] = true;
            $restart_webgui = true;
        } else {
            unset($config['system']['webgui']['disablehttpredirect']);
            $restart_webgui = true;
        }
        if ($_POST['quietlogin'] == "yes") {
            $config['system']['webgui']['quietlogin'] = true;
        } else {
            unset($config['system']['webgui']['quietlogin']);
        }

        if ($_POST['disableconsolemenu'] == "yes") {
            $config['system']['disableconsolemenu'] = true;
        } else {
            unset($config['system']['disableconsolemenu']);
        }

        if ($_POST['noantilockout'] == "yes") {
            $config['system']['webgui']['noantilockout'] = true;
        } else {
            unset($config['system']['webgui']['noantilockout']);
        }

        if ($_POST['enableserial'] == "yes") {
            $config['system']['enableserial'] = true;
        } else {
            unset($config['system']['enableserial']);
        }

        if (is_numeric($_POST['serialspeed'])) {
            $config['system']['serialspeed'] = $_POST['serialspeed'];
        } else {
            unset($config['system']['serialspeed']);
        }

        if ($_POST['primaryconsole']) {
            $config['system']['primaryconsole'] = $_POST['primaryconsole'];
        } else {
            unset($config['system']['primaryconsole']);
        }

        if ($_POST['nodnsrebindcheck'] == "yes") {
            $config['system']['webgui']['nodnsrebindcheck'] = true;
        } else {
            unset($config['system']['webgui']['nodnsrebindcheck']);
        }

        if ($_POST['nohttpreferercheck'] == "yes") {
            $config['system']['webgui']['nohttpreferercheck'] = true;
        } else {
            unset($config['system']['webgui']['nohttpreferercheck']);
        }

        if ($_POST['enable_xdebug'] == "yes") {
            $config['system']['webgui']['enable_xdebug'] = true;
        } else {
            unset($config['system']['webgui']['enable_xdebug']);
        }

        if ($_POST['loginautocomplete'] == "yes") {
            $config['system']['webgui']['loginautocomplete'] = true;
        } else {
            unset($config['system']['webgui']['loginautocomplete']);
        }

        if ($_POST['althostnames']) {
            $config['system']['webgui']['althostnames'] = $_POST['althostnames'];
        } else {
            unset($config['system']['webgui']['althostnames']);
        }

        $sshd_enabled = $config['system']['ssh']['enabled'];
        if ($_POST['enablesshd']) {
            $config['system']['ssh']['enabled'] = 'enabled';
        } else {
            unset($config['system']['ssh']['enabled']);
        }

        $sshd_passwordauth = isset($config['system']['ssh']['passwordauth']);
        if ($_POST['passwordauth']) {
            $config['system']['ssh']['passwordauth'] = true;
        } elseif (isset($config['system']['ssh']['passwordauth'])) {
            unset($config['system']['ssh']['passwordauth']);
        }

        $sshd_port = $config['system']['ssh']['port'];
        if ($_POST['sshport']) {
            $config['system']['ssh']['port'] = $_POST['sshport'];
        } elseif (isset($config['system']['ssh']['port'])) {
            unset($config['system']['ssh']['port']);
        }

        if (!isset($_POST['sshdpermitrootlogin']) && isset($config['system']['ssh']['permitrootlogin'])) {
            unset($config['system']['ssh']['permitrootlogin']);
        }

        if (($sshd_enabled != $config['system']['ssh']['enabled']) ||
            ($sshd_passwordauth != $config['system']['ssh']['passwordauth']) ||
            ($sshd_port != $config['system']['ssh']['port']) ||
            ($pconfig['system']['ssh']['permitrootlogin'] != isset($config['system']['ssh']['permitrootlogin'])) ) {
            $restart_sshd = true;
        }

        if ($restart_webgui) {
            global $_SERVER;
            $http_host_port = explode("]", $_SERVER['HTTP_HOST']);
            /* IPv6 address check */
            if (strstr($_SERVER['HTTP_HOST'], "]")) {
                if (count($http_host_port) > 1) {
                    array_pop($http_host_port);
                    $host = str_replace(array("[", "]"), "", implode(":", $http_host_port));
                    $host = "[{$host}]";
                } else {
                    $host = str_replace(array("[", "]"), "", implode(":", $http_host_port));
                    $host = "[{$host}]";
                }
            } else {
                list($host) = explode(":", $_SERVER['HTTP_HOST']);
            }
            $prot = $config['system']['webgui']['protocol'];
            $port = $config['system']['webgui']['port'];
            if ($port) {
                $url = "{$prot}://{$host}:{$port}/system_advanced_admin.php";
            } else {
                $url = "{$prot}://{$host}/system_advanced_admin.php";
            }
        }

        write_config();

        $retval = filter_configure();
265
        $savemsg = get_std_save_message();
266 267 268 269 270 271

        if ($restart_webgui) {
            $savemsg .= sprintf("<br />" . gettext("One moment...redirecting to %s in 20 seconds."), $url);
        }

        setup_serial_port();
272
        system_hosts_generate();
273 274 275 276 277 278
        // Restart DNS in case dns rebinding toggled
        if (isset($config['dnsmasq']['enable'])) {
            services_dnsmasq_configure();
        } elseif (isset($config['unbound']['enable']))
            services_unbound_configure();
    }
Ad Schellevis's avatar
Ad Schellevis committed
279 280
}

281
$pgtitle = array(gettext("System"),gettext("Settings"),gettext("Admin Access"));
Ad Schellevis's avatar
Ad Schellevis committed
282 283 284 285
include("head.inc");

?>

286
<body>
287

288 289 290 291
    <?php include("fbegin.inc"); ?>
    <script type="text/javascript">
    //<![CDATA[
    function prot_change() {
292 293 294 295 296

	if (document.iform.https_proto.checked)
		document.getElementById("ssl_opts").style.display="";
	else
		document.getElementById("ssl_opts").style.display="none";
297 298 299 300 301 302 303
    }
    //]]>
    </script>

<!-- row -->
<section class="page-content-main">
	<div class="container-fluid">
304

305 306
        <div class="row">
            <?php
307
            if (isset($input_errors) && count($input_errors) > 0) {
308 309
                print_input_errors($input_errors);
            }
310
            if (isset($savemsg)) {
311 312
                print_info_box($savemsg);
            }
313 314
            ?>
            <section class="col-xs-12">
315
                <? include('system_advanced_tabs.inc'); ?>
316 317
                <div class="content-box tab-content">

318
					<form action="system_advanced_admin.php" method="post" name="iform" id="iform">
319 320 321 322 323 324 325 326 327 328 329
						<table width="100%" border="0" cellpadding="6" cellspacing="0" summary="main area" class="table table-striped">
							<thead>
								<tr>
									<th colspan="2" valign="top" class="listtopic"><?=gettext("webConfigurator"); ?></th>
								</tr>
							</thead>
							<tbody>
								<tr>
									<td width="22%" valign="top" class="vncell"><?=gettext("Protocol"); ?></td>
									<td width="78%" class="vtable">
										<?php
330 331 332 333 334 335 336 337 338 339
                                        if ($pconfig['webguiproto'] == "http") {
                                            $http_chk = "checked=\"checked\"";
                                        }
                                        if ($pconfig['webguiproto'] == "https") {
                                            $https_chk = "checked=\"checked\"";
                                        }
                                        if (!$certs_available) {
                                            $https_disabled = "disabled=\"disabled\"";
                                        }
                                        ?>
340 341 342
										<input name="webguiproto" id="http_proto" type="radio" value="http" <?=$http_chk;?> onclick="prot_change()" />
										<?=gettext("HTTP"); ?>
										&nbsp;&nbsp;&nbsp;
343 344
										<input name="webguiproto" id="https_proto" type="radio" value="https" <?=$https_chk;
?> <?=$https_disabled;?> onclick="prot_change()" />
345
										<?=gettext("HTTPS"); ?>
346 347
										<?php if (!$certs_available) :
?>
348 349 350 351
										<br />
										<?=gettext("No Certificates have been defined. You must"); ?>
										<a href="system_certmanager.php"><?=gettext("Create or Import"); ?></a>
										<?=gettext("a Certificate before SSL can be enabled."); ?>
352 353
										<?php
endif; ?>
354 355 356 357 358
									</td>
								</tr>
								<tr id="ssl_opts">
									<td width="22%" valign="top" class="vncell"><?=gettext("SSL Certificate"); ?></td>
									<td width="78%" class="vtable">
359
										<select name="ssl-certref" id="ssl-certref" class="formselect selectpicker" data-style="btn-default">
360
											<?php
361 362 363 364 365 366 367 368 369
                                            foreach ($a_cert as $cert) :
                                                $selected = "";
                                                if ($pconfig['ssl-certref'] == $cert['refid']) {
                                                    $selected = "selected=\"selected\"";
                                                }
                                            ?>
											<option value="<?=$cert['refid'];
?>" <?=$selected;
?>><?=$cert['descr'];?></option>
370
											<?php
371 372 373 374 375
                                            endforeach;
                                            if (!count($a_cert)) {
                                                echo "<option></option>";
                                            }
                                            ?>
376
										</select>
377 378 379 380 381 382 383 384
										<br />
										<span class="vexpl">
											<?=sprintf(
												gettext('The %sSSL certificate manager%s can be used to ' .
												'create or import certificates if required.'),
												'<a href="/system_certmanager.php">', '</a>'
											);?>
										</span>
385 386 387 388 389 390 391 392
									</td>
								</tr>
								<tr>
									<td valign="top" class="vncell"><?=gettext("TCP port"); ?></td>
									<td class="vtable">
										<input name="webguiport" type="text" class="formfld unknown" id="webguiport" size="5" value="<?=htmlspecialchars($config['system']['webgui']['port']);?>" />
										<span class="vexpl">
											<?=gettext("Enter a custom port number for the webConfigurator " .
393 394
                                            "above if you want to override the default (80 for HTTP, 443 " .
                                            "for HTTPS). Changes will take effect immediately after save."); ?>
395 396 397 398 399 400 401 402 403
										</span>
									</td>
								</tr>
								<tr>
									<td valign="top" class="vncell"><?=gettext("Max Processes"); ?></td>
									<td class="vtable">
										<input name="max_procs" type="text" class="formfld unknown" id="max_procs" size="5" value="<?=htmlspecialchars($pconfig['max_procs']);?>" />
										<span class="vexpl">
											<?=gettext("Enter the number of webConfigurator processes you " .
404 405
                                            "want to run. This defaults to 2. Increasing this will allow more " .
                                            "users/browsers to access the GUI concurrently."); ?>
406 407 408 409 410 411
										</span>
									</td>
								</tr>
								<tr>
									<td width="22%" valign="top" class="vncell"><?=gettext("WebGUI redirect"); ?></td>
									<td width="78%" class="vtable">
412 413 414
										<input name="disablehttpredirect" type="checkbox" id="disablehttpredirect" value="yes" <?php if ($pconfig['disablehttpredirect']) {
                                            echo "checked=\"checked\"";
} ?> />
415 416 417
										<strong><?=gettext("Disable webConfigurator redirect rule"); ?></strong>
										<br />
										<?php echo gettext("When this is unchecked, access to the webConfigurator " .
418 419 420
                                        "is always permitted even on port 80, regardless of the listening port configured. " .
                                        "Check this box to disable this automatically added redirect rule. ");
                                        ?>
421 422 423 424 425
									</td>
								</tr>
								<tr>
									<td width="22%" valign="top" class="vncell"><?=gettext("WebGUI Login Autocomplete"); ?></td>
									<td width="78%" class="vtable">
426 427 428
										<input name="loginautocomplete" type="checkbox" id="loginautocomplete" value="yes" <?php if ($pconfig['loginautocomplete']) {
                                            echo "checked=\"checked\"";
} ?> />
429 430 431
										<strong><?=gettext("Enable webConfigurator login autocomplete"); ?></strong>
										<br />
										<?php echo gettext("When this is checked, login credentials for the webConfigurator " .
432 433 434
                                        "may be saved by the browser. While convenient, some security standards require this to be disabled. " .
                                        "Check this box to enable autocomplete on the login form so that browsers will prompt to save credentials (NOTE: Some browsers do not respect this option). ");
                                        ?>
435 436 437 438 439
									</td>
								</tr>
								<tr>
									<td width="22%" valign="top" class="vncell"><?=gettext("WebGUI login messages"); ?></td>
									<td width="78%" class="vtable">
440 441 442
										<input name="quietlogin" type="checkbox" id="quietlogin" value="yes" <?php if ($pconfig['quietlogin']) {
                                            echo "checked=\"checked\"";
} ?> />
443 444 445
										<strong><?=gettext("Disable logging of webConfigurator successful logins"); ?></strong>
										<br />
										<?php echo gettext("When this is checked, successful logins to the webConfigurator " .
446 447
                                        "will not be logged.");
                                        ?>
448 449 450 451 452 453
									</td>
								</tr>
								<tr>
									<td width="22%" valign="top" class="vncell"><?=gettext("Anti-lockout"); ?></td>
									<td width="78%" class="vtable">
										<?php
454 455 456 457 458 459 460 461 462
                                        if ($config['interfaces']['lan']) {
                                            $lockout_interface = "LAN";
                                        } else {
                                            $lockout_interface = "WAN";
                                        }
                                        ?>
										<input name="noantilockout" type="checkbox" id="noantilockout" value="yes" <?php if ($pconfig['noantilockout']) {
                                            echo "checked=\"checked\"";
} ?> />
463 464 465
										<strong><?=gettext("Disable webConfigurator anti-lockout rule"); ?></strong>
										<br />
										<?php printf(gettext("When this is unchecked, access to the webConfigurator " .
466 467 468 469 470
                                        "on the %s interface is always permitted, regardless of the user-defined firewall " .
                                        "rule set. Check this box to disable this automatically added rule, so access " .
                                        "to the webConfigurator is controlled by the user-defined firewall rules " .
                                        "(ensure you have a firewall rule in place that allows you in, or you will " .
                                        "lock yourself out!)"), $lockout_interface); ?>
471 472 473 474 475 476
										<em> <?=gettext("Hint: the &quot;Set interface(s) IP address&quot; option in the console menu resets this setting as well."); ?> </em>
									</td>
								</tr>
								<tr>
									<td width="22%" valign="top" class="vncell"><?=gettext("DNS Rebind Check"); ?></td>
									<td width="78%" class="vtable">
477 478 479
										<input name="nodnsrebindcheck" type="checkbox" id="nodnsrebindcheck" value="yes" <?php if ($pconfig['nodnsrebindcheck']) {
                                            echo "checked=\"checked\"";
} ?> />
480 481 482
										<strong><?=gettext("Disable DNS Rebinding Checks"); ?></strong>
										<br />
										<?php echo gettext("When this is unchecked, your system " .
483 484 485
                                        "is protected against <a href=\"http://en.wikipedia.org/wiki/DNS_rebinding\">DNS Rebinding attacks</a>. " .
                                        "This blocks private IP responses from your configured DNS servers. Check this box to disable this protection if it interferes with " .
                                        "webConfigurator access or name resolution in your environment. "); ?>
486 487 488 489 490 491 492 493 494
									</td>
								</tr>
								<tr>
									<td width="22%" valign="top" class="vncell"><?=gettext("Alternate Hostnames"); ?></td>
									<td width="78%" class="vtable">
										<input name="althostnames" type="text" class="formfld unknown" id="althostnames" size="75" value="<?=htmlspecialchars($pconfig['althostnames']);?>"/>
										<strong><?=gettext("Alternate Hostnames for DNS Rebinding and HTTP_REFERER Checks"); ?></strong>
										<br />
										<?php echo gettext("Here you can specify alternate hostnames by which the router may be queried, to " .
495
                                        "bypass the DNS Rebinding Attack checks. Separate hostnames with spaces."); ?>
496 497 498 499 500
									</td>
								</tr>
								<tr>
									<td width="22%" valign="top" class="vncell"><?=gettext("Browser HTTP_REFERER enforcement"); ?></td>
									<td width="78%" class="vtable">
501 502 503
										<input name="nohttpreferercheck" type="checkbox" id="nohttpreferercheck" value="yes" <?php if ($pconfig['nohttpreferercheck']) {
                                            echo "checked=\"checked\"";
} ?> />
504 505 506
										<strong><?=gettext("Disable HTTP_REFERER enforcement check"); ?></strong>
										<br />
										<?php echo gettext("When this is unchecked, access to the webConfigurator " .
507 508 509
                                        "is protected against HTTP_REFERER redirection attempts. " .
                                        "Check this box to disable this protection if you find that it interferes with " .
                                        "webConfigurator access in certain corner cases such as using external scripts to interact with this system. More information on HTTP_REFERER is available from <a target='_blank' href='http://en.wikipedia.org/wiki/HTTP_referrer'>Wikipedia</a>."); ?>
510 511
									</td>
								</tr>
512 513 514
								<tr>
									<td width="22%" valign="top" class="vncell"><?=gettext("Enable XDebug"); ?></td>
									<td width="78%" class="vtable">
515 516 517
										<input name="enable_xdebug" type="checkbox" id="enable_xdebug" value="yes"  <?php if ($pconfig['enable_xdebug']) {
                                            echo "checked=\"checked\"";
} ?> />
518 519 520 521 522 523 524
										<strong><?=gettext("Enable debugger / profiler (developer mode, do not enable in production environment)"); ?></strong>
										<br />
										<?php echo gettext("When this is checked, php XDebug will be enabled and profiling output can be analysed using webgrind which will be available at [this-url]/webgrind/"); ?>
										<br />
										<?php echo gettext("For more information about XDebug profiling and how to enable it for your requests, please visit http://www.xdebug.org/docs/all_settings#profiler_enable_trigger"); ?>
									</td>
								</tr>
525 526 527 528

								<tr>
									<th colspan="2" valign="top" class="listtopic"><?=gettext("Secure Shell"); ?></th>
								</tr>
529

530 531 532
								<tr>
									<td width="22%" valign="top" class="vncell"><?=gettext("Secure Shell Server"); ?></td>
									<td width="78%" class="vtable">
533 534 535
										<input name="enablesshd" type="checkbox" id="enablesshd" value="yes" <?php if (isset($pconfig['enablesshd'])) {
                                            echo "checked=\"checked\"";
} ?> />
536 537 538 539 540 541
										<strong><?=gettext("Enable Secure Shell"); ?></strong>
									</td>
								</tr>
								<tr>
									<td width="22%" valign="top" class="vncell"><?=gettext("Root Login"); ?></td>
									<td width="78%" class="vtable">
542 543 544
										<input name="sshdpermitrootlogin" type="checkbox" id="sshdpermitrootlogin" value="yes" <?php if ($pconfig['sshdpermitrootlogin']) {
                                            echo "checked=\"checked\"";
} ?> />
545
										<strong><?=gettext("Permit root user login"); ?></strong>
546 547 548 549 550 551 552 553
										<br />
										<?=gettext("Root login is generally discouraged. It is advised "); ?>
										<?=gettext("to log in via another user and switch to root afterwards."); ?>
									</td>
								</tr>
								<tr>
									<td width="22%" valign="top" class="vncell"><?=gettext("Authentication Method"); ?></td>
									<td width="78%" class="vtable">
554 555 556
										<input name="passwordauth" type="checkbox" id="passwordauth" value="yes" <?php if ($pconfig['passwordauth']) {
                                            echo "checked=\"checked\"";
} ?> />
557
										<strong><?=gettext("Permit password login"); ?></strong>
558
										<br />
559
										<?=gettext("When disabled, authorized keys need to be configured for each"); ?>
560 561 562 563 564 565 566
										<a href="system_usermanager.php"><?=gettext("user"); ?></a>
										<?=gettext("that has been granted secure shell access."); ?>
									</td>
								</tr>
								<tr>
									<td width="22%" valign="top" class="vncell"><?=gettext("SSH port"); ?></td>
									<td width="78%" class="vtable">
567 568
										<input name="sshport" type="text" class="form-control" id="sshport" value="<?php echo $pconfig['sshport']; ?>"/>
										<?=gettext("Leave this blank for the default of 22."); ?>
569 570 571 572 573 574 575 576 577 578 579 580
									</td>
								</tr>
								<tr>
									<td colspan="2" class="list" height="12">&nbsp;</td>
								</tr>

								<tr>
									<th colspan="2" valign="top" class="listtopic"><?=gettext("Serial Communications"); ?></th>
								</tr>
								<tr>
									<td width="22%" valign="top" class="vncell"><?=gettext("Serial Terminal"); ?></td>
									<td width="78%" class="vtable">
581 582 583
										<input name="enableserial" type="checkbox" id="enableserial" value="yes" <?php if (isset($pconfig['enableserial'])) {
                                            echo "checked=\"checked\"";
} ?> />
584 585 586 587 588 589 590
										<strong><?=gettext("Enables the first serial port with 115200/8/N/1 by default, or another speed selectable below."); ?></strong>
										<span class="vexpl"><?=gettext("Note:  This will redirect the console output and messages to the serial port. You can still access the console menu from the internal video card/keyboard. A <b>null modem</b> serial cable or adapter is required to use the serial console."); ?></span>
									</td>
								</tr>
								<tr>
									<td width="22%" valign="top" class="vncell"><?=gettext("Serial Speed")?></td>
									<td width="78%" class="vtable">
591
										<select name="serialspeed" id="serialspeed" class="formselect selectpicker">
592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609
											<option value="115200" <?php if ($pconfig['serialspeed'] == "115200") {
                                                echo "selected=\"selected\"";
}?>>115200</option>
											<option value="57600"  <?php if ($pconfig['serialspeed'] == "57600") {
                                                echo "selected=\"selected\"";
}?>>57600</option>
											<option value="38400"  <?php if ($pconfig['serialspeed'] == "38400") {
                                                echo "selected=\"selected\"";
}?>>38400</option>
											<option value="19200"  <?php if ($pconfig['serialspeed'] == "19200") {
                                                echo "selected=\"selected\"";
}?>>19200</option>
											<option value="14400"  <?php if ($pconfig['serialspeed'] == "14400") {
                                                echo "selected=\"selected\"";
}?>>14400</option>
											<option value="9600"   <?php if ($pconfig['serialspeed'] == "9600") {
                                                echo "selected=\"selected\"";
}?>>9600</option>
610 611 612 613 614 615 616
										</select> bps
										<br /><?=gettext("Allows selection of different speeds for the serial console port."); ?>
									</td>
								</tr>
								<tr>
									<td width="22%" valign="top" class="vncell"><?=gettext("Primary Console")?></td>
									<td width="78%" class="vtable">
617
										<select name="primaryconsole" id="primaryconsole" class="formselect selectpicker">
618 619 620 621 622 623
											<option value="serial"   <?php if ($pconfig['primaryconsole'] == "serial") {
                                                echo "selected=\"selected\"";
}?>>Serial Console</option>
											<option value="video"  <?php if ($pconfig['primaryconsole'] == "video") {
                                                echo "selected=\"selected\"";
}?>>VGA Console</option>
624
										</select>
625
										<br /><?=gettext("Select the preferred console if multiple consoles are present. The preferred console will show OPNsense boot script output. All consoles display OS boot messages, console messages, and the console menu."); ?>
626 627
									</td>
								</tr>
628
                                <tr>
629 630 631 632 633 634
									<th colspan="2" valign="top" class="listtopic"><?=gettext("Console Options"); ?></th>
								</tr>

								<tr>
									<td width="22%" valign="top" class="vncell"><?=gettext("Console menu"); ?></td>
									<td width="78%" class="vtable">
635 636 637
										<input name="disableconsolemenu" type="checkbox" id="disableconsolemenu" value="yes" <?php if ($pconfig['disableconsolemenu']) {
                                            echo "checked=\"checked\"";
} ?>  />
638 639 640 641 642 643 644 645 646 647 648 649 650 651
										<strong><?=gettext("Password protect the console menu"); ?></strong>
										<br />
										<span class="vexpl"><?=gettext("Changes to this option will take effect after a reboot."); ?></span>
									</td>
								</tr>
								<tr>
									<td colspan="2" class="list" height="12">&nbsp;</td>
								</tr>
								<tr>
									<td width="22%" valign="top">&nbsp;</td>
									<td width="78%"><input name="Submit" type="submit" class="btn btn-primary" value="<?=gettext("Save");?>" /></td>
								</tr>
							</tbody>
						</table>
652
					</form>
653 654 655 656 657
                </div>
            </section>
        </div>
	</div>
</section>
Ad Schellevis's avatar
Ad Schellevis committed
658

659 660 661 662 663
<script type="text/javascript">
//<![CDATA[
	prot_change();
//]]>
</script>
Ad Schellevis's avatar
Ad Schellevis committed
664 665

<?php
666 667 668
if ($restart_webgui) {
    echo "<meta http-equiv=\"refresh\" content=\"20;url={$url}\" />";
}
Ad Schellevis's avatar
Ad Schellevis committed
669
?>
670 671

<?php include("foot.inc"); ?>
Ad Schellevis's avatar
Ad Schellevis committed
672 673 674

<?php
if ($restart_sshd) {
675 676
    killbyname("sshd");
    log_error(gettext("secure shell configuration has changed. Stopping sshd."));
Ad Schellevis's avatar
Ad Schellevis committed
677

678 679 680 681
    if ($config['system']['ssh']['enabled']) {
        log_error(gettext("secure shell configuration has changed. Restarting sshd."));
        configd_run("sshd restart");
    }
Ad Schellevis's avatar
Ad Schellevis committed
682 683
}
if ($restart_webgui) {
684 685 686 687
    ob_flush();
    flush();
    log_error(gettext("webConfigurator configuration has changed. Restarting webConfigurator."));
    configd_run("webgui restart 2", true);
Ad Schellevis's avatar
Ad Schellevis committed
688
}