Commit 8d00b610 authored by Ad Schellevis's avatar Ad Schellevis

(legacy) refactor system_advanced_admin.php, work in progress

parent db1628ca
<?php <?php
/* /*
Copyright (C) 2014-2015 Deciso B.V. Copyright (C) 2014-2015 Deciso B.V.
Copyright (C) 2005-2010 Scott Ullrich Copyright (C) 2005-2010 Scott Ullrich
Copyright (C) 2008 Shrew Soft Inc Copyright (C) 2008 Shrew Soft Inc
Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>. Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
All rights reserved. All rights reserved.
Redistribution and use in source and binary forms, with or without Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met: modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, 1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer. this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright 2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution. documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 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 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. POSSIBILITY OF SUCH DAMAGE.
*/ */
require_once("guiconfig.inc"); require_once("guiconfig.inc");
...@@ -36,25 +36,218 @@ require_once("unbound.inc"); ...@@ -36,25 +36,218 @@ require_once("unbound.inc");
require_once("pfsense-utils.inc"); require_once("pfsense-utils.inc");
require_once("services.inc"); require_once("services.inc");
$pconfig['webguiproto'] = $config['system']['webgui']['protocol']; if ($_SERVER['REQUEST_METHOD'] === 'GET') {
$pconfig['webguiport'] = $config['system']['webgui']['port']; $pconfig = array();
$pconfig['ssl-certref'] = $config['system']['webgui']['ssl-certref']; $pconfig['webguiproto'] = $config['system']['webgui']['protocol'];
$pconfig['disablehttpredirect'] = isset($config['system']['webgui']['disablehttpredirect']); $pconfig['webguiport'] = $config['system']['webgui']['port'];
$pconfig['disableconsolemenu'] = isset($config['system']['disableconsolemenu']); $pconfig['ssl-certref'] = $config['system']['webgui']['ssl-certref'];
$pconfig['noantilockout'] = isset($config['system']['webgui']['noantilockout']); $pconfig['disablehttpredirect'] = isset($config['system']['webgui']['disablehttpredirect']);
$pconfig['nodnsrebindcheck'] = isset($config['system']['webgui']['nodnsrebindcheck']); $pconfig['disableconsolemenu'] = isset($config['system']['disableconsolemenu']);
$pconfig['nohttpreferercheck'] = isset($config['system']['webgui']['nohttpreferercheck']); $pconfig['noantilockout'] = isset($config['system']['webgui']['noantilockout']);
$pconfig['enable_xdebug'] = isset($config['system']['webgui']['enable_xdebug']) ; $pconfig['nodnsrebindcheck'] = isset($config['system']['webgui']['nodnsrebindcheck']);
$pconfig['loginautocomplete'] = isset($config['system']['webgui']['loginautocomplete']); $pconfig['nohttpreferercheck'] = isset($config['system']['webgui']['nohttpreferercheck']);
$pconfig['althostnames'] = $config['system']['webgui']['althostnames']; $pconfig['enable_xdebug'] = isset($config['system']['webgui']['enable_xdebug']) ;
$pconfig['enableserial'] = $config['system']['enableserial']; $pconfig['loginautocomplete'] = isset($config['system']['webgui']['loginautocomplete']);
$pconfig['serialspeed'] = $config['system']['serialspeed']; $pconfig['althostnames'] = $config['system']['webgui']['althostnames'];
$pconfig['primaryconsole'] = $config['system']['primaryconsole']; $pconfig['enableserial'] = $config['system']['enableserial'];
$pconfig['enablesshd'] = $config['system']['ssh']['enabled']; $pconfig['serialspeed'] = $config['system']['serialspeed'];
$pconfig['sshport'] = $config['system']['ssh']['port']; $pconfig['primaryconsole'] = $config['system']['primaryconsole'];
$pconfig['passwordauth'] = isset($config['system']['ssh']['passwordauth']); $pconfig['enablesshd'] = $config['system']['ssh']['enabled'];
$pconfig['sshdpermitrootlogin'] = isset($config['system']['ssh']['permitrootlogin']); $pconfig['sshport'] = $config['system']['ssh']['port'];
$pconfig['quietlogin'] = isset($config['system']['webgui']['quietlogin']); $pconfig['passwordauth'] = isset($config['system']['ssh']['passwordauth']);
$pconfig['sshdpermitrootlogin'] = isset($config['system']['ssh']['permitrootlogin']);
$pconfig['quietlogin'] = isset($config['system']['webgui']['quietlogin']);
} elseif ($_SERVER['REQUEST_METHOD'] === 'POST') {
$input_errors = array();
$pconfig = $_POST;
/* input validation */
if (!empty($pconfig['webguiport'])) {
if (!is_port($pconfig['webguiport'])) {
$input_errors[] = gettext("You must specify a valid webConfigurator port number");
}
}
if (!empty($pconfig['althostnames'])) {
$althosts = explode(" ", $pconfig['althostnames']);
foreach ($althosts as $ah) {
if (!is_hostname($ah)) {
$input_errors[] = sprintf(gettext("Alternate hostname %s is not a valid hostname."), htmlspecialchars($ah));
}
}
}
if (!empty($pconfig['sshport'])) {
if (!is_port($pconfig['sshport'])) {
$input_errors[] = gettext("You must specify a valid port number");
}
}
if (count($input_errors) ==0) {
// flag web ui for restart
if ($config['system']['webgui']['protocol'] != $pconfig['webguiproto'] ||
$config['system']['webgui']['port'] != $pconfig['webguiport'] ||
$config['system']['webgui']['ssl-certref'] != $pconfig['ssl-certref'] ||
($pconfig['disablehttpredirect'] == "yes") != !empty($config['system']['webgui']['disablehttpredirect'])
) {
$restart_webgui = true;
} else {
$restart_webgui = false;
}
$config['system']['webgui']['protocol'] = $pconfig['webguiproto'];
$config['system']['webgui']['port'] = $pconfig['webguiport'];
$config['system']['webgui']['ssl-certref'] = $pconfig['ssl-certref'];
if ($pconfig['disablehttpredirect'] == "yes") {
$config['system']['webgui']['disablehttpredirect'] = true;
} elseif (isset($config['system']['webgui']['disablehttpredirect'])) {
unset($config['system']['webgui']['disablehttpredirect']);
}
if ($pconfig['quietlogin'] == "yes") {
$config['system']['webgui']['quietlogin'] = true;
} elseif (isset($config['system']['webgui']['quietlogin'])) {
unset($config['system']['webgui']['quietlogin']);
}
if ($pconfig['disableconsolemenu'] == "yes") {
$config['system']['disableconsolemenu'] = true;
} elseif (isset($config['system']['disableconsolemenu'])) {
unset($config['system']['disableconsolemenu']);
}
if ($pconfig['noantilockout'] == "yes") {
$config['system']['webgui']['noantilockout'] = true;
} elseif (isset($config['system']['webgui']['noantilockout'])) {
unset($config['system']['webgui']['noantilockout']);
}
if ($pconfig['enableserial'] == "yes") {
$config['system']['enableserial'] = true;
} elseif (isset($config['system']['enableserial'])) {
unset($config['system']['enableserial']);
}
if (is_numeric($pconfig['serialspeed'])) {
$config['system']['serialspeed'] = $pconfig['serialspeed'];
} elseif (isset($config['system']['serialspeed'])) {
unset($config['system']['serialspeed']);
}
if (!empty($pconfig['primaryconsole'])) {
$config['system']['primaryconsole'] = $pconfig['primaryconsole'];
} elseif (isset($config['system']['primaryconsole'])) {
unset($config['system']['primaryconsole']);
}
if ($pconfig['nodnsrebindcheck'] == "yes") {
$config['system']['webgui']['nodnsrebindcheck'] = true;
} elseif (isset($config['system']['webgui']['nodnsrebindcheck'])) {
unset($config['system']['webgui']['nodnsrebindcheck']);
}
if ($pconfig['nohttpreferercheck'] == "yes") {
$config['system']['webgui']['nohttpreferercheck'] = true;
} elseif (isset($config['system']['webgui']['nohttpreferercheck'])) {
unset($config['system']['webgui']['nohttpreferercheck']);
}
if ($pconfig['enable_xdebug'] == "yes") {
$config['system']['webgui']['enable_xdebug'] = true;
} elseif (isset($config['system']['webgui']['enable_xdebug'])) {
unset($config['system']['webgui']['enable_xdebug']);
}
if ($pconfig['loginautocomplete'] == "yes") {
$config['system']['webgui']['loginautocomplete'] = true;
} elseif (isset($config['system']['webgui']['loginautocomplete'])) {
unset($config['system']['webgui']['loginautocomplete']);
}
if (!empty($pconfig['althostnames'])) {
$config['system']['webgui']['althostnames'] = $pconfig['althostnames'];
} elseif (isset($config['system']['webgui']['althostnames'])) {
unset($config['system']['webgui']['althostnames']);
}
if (empty($config['system']['ssh']['enabled']) != empty($pconfig['enablesshd']) ||
empty($config['system']['ssh']['passwordauth']) != empty($pconfig['passwordauth']) ||
$config['system']['ssh']['port'] != $pconfig['sshport'] ||
empty($config['system']['ssh']['permitrootlogin']) != empty($pconfig['sshdpermitrootlogin'])
) {
$restart_sshd = true;
} else {
$restart_sshd = false;
}
if (!empty($pconfig['enablesshd'])) {
$config['system']['ssh']['enabled'] = 'enabled';
} elseif (isset($config['system']['ssh']['enabled'])) {
unset($config['system']['ssh']['enabled']);
}
if (!empty($pconfig['passwordauth'])) {
$config['system']['ssh']['passwordauth'] = true;
} elseif (isset($config['system']['ssh']['passwordauth'])) {
unset($config['system']['ssh']['passwordauth']);
}
if (!empty($pconfig['sshport'])) {
$config['system']['ssh']['port'] = $_POST['sshport'];
} elseif (isset($config['system']['ssh']['port'])) {
unset($config['system']['ssh']['port']);
}
if (!empty($pconfig['sshdpermitrootlogin'])) {
$config['system']['ssh']['permitrootlogin'] = true;
} elseif (isset($config['system']['ssh']['permitrootlogin'])) {
unset($config['system']['ssh']['permitrootlogin']);
}
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();
$savemsg = get_std_save_message();
if ($restart_webgui) {
$savemsg .= sprintf("<br />" . gettext("One moment...redirecting to %s in 20 seconds."), $url);
}
setup_serial_port();
system_hosts_generate();
// Restart DNS in case dns rebinding toggled
if (isset($config['dnsmasq']['enable'])) {
services_dnsmasq_configure();
} elseif (isset($config['unbound']['enable']))
services_unbound_configure();
}
}
$a_cert = isset($config['cert']) ? $config['cert'] : array(); $a_cert = isset($config['cert']) ? $config['cert'] : array();
...@@ -63,573 +256,324 @@ if (count($a_cert)) { ...@@ -63,573 +256,324 @@ if (count($a_cert)) {
$certs_available = true; $certs_available = true;
} }
if (!$pconfig['webguiproto'] || !$certs_available) { if (empty($pconfig['webguiproto']) || !$certs_available) {
$pconfig['webguiproto'] = "http"; $pconfig['webguiproto'] = "http";
} }
legacy_html_escape_form_data($pconfig);
if ($_POST) {
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['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");
}
}
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 ($_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']);
}
$sshd_permitrootlogin = isset($config['system']['ssh']['permitrootlogin']);
if ($_POST['sshdpermitrootlogin']) {
$config['system']['ssh']['permitrootlogin'] = true;
} elseif (isset($config['system']['ssh']['permitrootlogin'])) {
unset($config['system']['ssh']['permitrootlogin']);
}
if (($sshd_enabled != $config['system']['ssh']['enabled']) ||
($sshd_passwordauth != isset($config['system']['ssh']['passwordauth'])) ||
($sshd_port != $config['system']['ssh']['port']) ||
($sshd_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();
$savemsg = get_std_save_message();
if ($restart_webgui) {
$savemsg .= sprintf("<br />" . gettext("One moment...redirecting to %s in 20 seconds."), $url);
}
setup_serial_port();
system_hosts_generate();
// Restart DNS in case dns rebinding toggled
if (isset($config['dnsmasq']['enable'])) {
services_dnsmasq_configure();
} elseif (isset($config['unbound']['enable']))
services_unbound_configure();
}
}
$pgtitle = array(gettext("System"),gettext("Settings"),gettext("Admin Access")); $pgtitle = array(gettext("System"),gettext("Settings"),gettext("Admin Access"));
include("head.inc"); include("head.inc");
?> ?>
<body> <body>
<?php include("fbegin.inc"); ?> <?php include("fbegin.inc"); ?>
<script type="text/javascript"> <script type="text/javascript">
//<![CDATA[ //<![CDATA[
function prot_change() { function prot_change() {
if (document.iform.https_proto.checked) {
if (document.iform.https_proto.checked) document.getElementById("ssl_opts").style.display="";
document.getElementById("ssl_opts").style.display=""; } else {
else document.getElementById("ssl_opts").style.display="none";
document.getElementById("ssl_opts").style.display="none"; }
} }
//]]> //]]>
</script> </script>
<!-- row -->
<section class="page-content-main"> <section class="page-content-main">
<div class="container-fluid"> <div class="container-fluid">
<div class="row">
<div class="row"> <?php
<?php if (isset($input_errors) && count($input_errors) > 0) {
if (isset($input_errors) && count($input_errors) > 0) { print_input_errors($input_errors);
print_input_errors($input_errors); }
} if (isset($savemsg)) {
if (isset($savemsg)) { print_info_box($savemsg);
print_info_box($savemsg); }
}
?>
<section class="col-xs-12">
<div class="content-box tab-content">
<form action="system_advanced_admin.php" method="post" name="iform" id="iform">
<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
if ($pconfig['webguiproto'] == "http") {
$http_chk = "checked=\"checked\"";
}
if ($pconfig['webguiproto'] == "https") {
$https_chk = "checked=\"checked\"";
}
if (!$certs_available) {
$https_disabled = "disabled=\"disabled\"";
}
?>
<input name="webguiproto" id="http_proto" type="radio" value="http" <?=$http_chk;?> onclick="prot_change()" />
<?=gettext("HTTP"); ?>
&nbsp;&nbsp;&nbsp;
<input name="webguiproto" id="https_proto" type="radio" value="https" <?=$https_chk;
?> <?=$https_disabled;?> onclick="prot_change()" />
<?=gettext("HTTPS"); ?>
<?php if (!$certs_available) :
?> ?>
<br /> <section class="col-xs-12">
<?=gettext("No Certificates have been defined. You must"); ?> <div class="content-box tab-content">
<a href="system_certmanager.php"><?=gettext("Create or Import"); ?></a> <form action="system_advanced_admin.php" method="post" name="iform" id="iform">
<?=gettext("a Certificate before SSL can be enabled."); ?> <table class="table table-striped">
<?php <tr>
endif; ?> <td width="22%"><strong><?=gettext("webConfigurator");?></strong></td>
</td> <td width="78%" align="right">
</tr> <small><?=gettext("full help"); ?> </small>
<tr id="ssl_opts"> <i class="fa fa-toggle-off text-danger" style="cursor: pointer;" id="show_all_help_page" type="button"></i></a>
<td width="22%" valign="top" class="vncell"><?=gettext("SSL Certificate"); ?></td> </td>
<td width="78%" class="vtable"> </tr>
<select name="ssl-certref" id="ssl-certref" class="formselect selectpicker" data-style="btn-default"> <tr>
<?php <td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Protocol"); ?></td>
foreach ($a_cert as $cert) : <td>
$selected = ""; <input name="webguiproto" id="http_proto" type="radio" value="http" <?=$pconfig['webguiproto'] == "http" ? "checked=\"checked\"" :"";?> onclick="prot_change()" />
if ($pconfig['ssl-certref'] == $cert['refid']) { <?=gettext("HTTP"); ?>
$selected = "selected=\"selected\""; &nbsp;&nbsp;&nbsp;
} <input name="webguiproto" id="https_proto" type="radio" value="https" <?=$pconfig['webguiproto'] == "https" ? "checked=\"checked\"" :"";?> <?=!$certs_available ? "disabled=\"disabled\"": "";?> onclick="prot_change()" />
?> <?=gettext("HTTPS"); ?>
<option value="<?=$cert['refid'];
?>" <?=$selected; <?php
?>><?=$cert['descr'];?></option> if (!$certs_available) :?>
<?php <br />
endforeach; <?=gettext("No Certificates have been defined. You must"); ?>
if (!count($a_cert)) { <a href="system_certmanager.php"><?=gettext("Create or Import"); ?></a>
echo "<option></option>"; <?=gettext("a Certificate before SSL can be enabled."); ?>
} <?php
?> endif; ?>
</select> </td>
<br /> </tr>
<span class="vexpl"> <tr id="ssl_opts">
<?=sprintf( <td><a id="help_for_sslcertref" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("SSL Certificate"); ?></td>
gettext('The %sSSL certificate manager%s can be used to ' . <td>
'create or import certificates if required.'), <select name="ssl-certref" class="formselect selectpicker" data-style="btn-default">
'<a href="/system_certmanager.php">', '</a>' <?php
);?> foreach ($a_cert as $cert) :?>
</span> <option value="<?=$cert['refid'];?>" <?=$pconfig['ssl-certref'] == $cert['refid'] ? "selected=\"selected\"" : "";?>>
</td> <?=$cert['descr'];?>
</tr> </option>
<tr> <?php
<td valign="top" class="vncell"><?=gettext("TCP port"); ?></td> endforeach;?>
<td class="vtable"> </select>
<input name="webguiport" type="text" class="formfld unknown" id="webguiport" size="5" value="<?=htmlspecialchars($config['system']['webgui']['port']);?>" /> <div class='hidden' for="help_for_sslcertref">
<span class="vexpl"> <?=sprintf(
<?=gettext("Enter a custom port number for the webConfigurator " . gettext('The %sSSL certificate manager%s can be used to ' .
'create or import certificates if required.'),
'<a href="/system_certmanager.php">', '</a>'
);?>
</div>
</td>
</tr>
<tr>
<td><a id="help_for_webguiport" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("TCP port"); ?></td>
<td>
<input name="webguiport" type="text" value="<?=$pconfig['webguiport'];?>" />
<div class="hidden" for="help_for_webguiport">
<?=gettext("Enter a custom port number for the webConfigurator " .
"above if you want to override the default (80 for HTTP, 443 " . "above if you want to override the default (80 for HTTP, 443 " .
"for HTTPS). Changes will take effect immediately after save."); ?> "for HTTPS). Changes will take effect immediately after save."); ?>
</span> </div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td width="22%" valign="top" class="vncell"><?=gettext("WebGUI redirect"); ?></td> <td><a id="help_for_disablehttpredirect" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("WebGUI redirect"); ?></td>
<td width="78%" class="vtable"> <td width="78%">
<input name="disablehttpredirect" type="checkbox" id="disablehttpredirect" value="yes" <?php if ($pconfig['disablehttpredirect']) { <input name="disablehttpredirect" type="checkbox" value="yes" <?=!empty($pconfig['disablehttpredirect']) ? "checked=\"checked\"" : "";?> />
echo "checked=\"checked\""; <strong><?=gettext("Disable webConfigurator redirect rule"); ?></strong>
} ?> /> <div class="hidden" for="help_for_disablehttpredirect">
<strong><?=gettext("Disable webConfigurator redirect rule"); ?></strong> <?= gettext("When this is unchecked, access to the webConfigurator " .
<br /> "is always permitted even on port 80, regardless of the listening port configured. " .
<?php echo gettext("When this is unchecked, access to the webConfigurator " . "Check this box to disable this automatically added redirect rule. ");
"is always permitted even on port 80, regardless of the listening port configured. " . ?>
"Check this box to disable this automatically added redirect rule. "); </div>
?> </td>
</td> </tr>
</tr> <tr>
<tr> <td><a id="help_for_loginautocomplete" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("WebGUI Login Autocomplete"); ?></td>
<td width="22%" valign="top" class="vncell"><?=gettext("WebGUI Login Autocomplete"); ?></td> <td>
<td width="78%" class="vtable"> <input name="loginautocomplete" type="checkbox" value="yes" <?= !empty($pconfig['loginautocomplete']) ? "checked=\"checked\"" : "";?> />
<input name="loginautocomplete" type="checkbox" id="loginautocomplete" value="yes" <?php if ($pconfig['loginautocomplete']) { <strong><?=gettext("Enable webConfigurator login autocomplete"); ?></strong>
echo "checked=\"checked\""; <div class="hidden" for="help_for_loginautocomplete">
} ?> /> <?= gettext("When this is checked, login credentials for the webConfigurator " .
<strong><?=gettext("Enable webConfigurator login autocomplete"); ?></strong> "may be saved by the browser. While convenient, some security standards require this to be disabled. " .
<br /> "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). ");?>
<?php echo gettext("When this is checked, login credentials for the webConfigurator " . </div>
"may be saved by the browser. While convenient, some security standards require this to be disabled. " . </td>
"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). "); </tr>
?> <tr>
</td> <td><a id="help_for_quietlogin" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("WebGUI login messages"); ?></td>
</tr> <td>
<tr> <input name="quietlogin" type="checkbox" value="yes" <?=!empty($pconfig['quietlogin']) ? "checked=\"checked\"" : ""; ?>/>
<td width="22%" valign="top" class="vncell"><?=gettext("WebGUI login messages"); ?></td> <strong><?=gettext("Disable logging of webConfigurator successful logins"); ?></strong>
<td width="78%" class="vtable"> <div class="hidden" for="help_for_quietlogin">
<input name="quietlogin" type="checkbox" id="quietlogin" value="yes" <?php if ($pconfig['quietlogin']) { <?=gettext("When this is checked, successful logins to the webConfigurator " .
echo "checked=\"checked\""; "will not be logged.");?>
} ?> /> </div>
<strong><?=gettext("Disable logging of webConfigurator successful logins"); ?></strong> </td>
<br /> </tr>
<?php echo gettext("When this is checked, successful logins to the webConfigurator " . <tr>
"will not be logged."); <td><a id="help_for_noantilockout" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Anti-lockout"); ?></td>
?> <td>
</td> <input name="noantilockout" type="checkbox" value="yes" <?=!empty($pconfig['noantilockout'])? "checked=\"checked\"" : "";?>/>
</tr> <strong><?=gettext("Disable webConfigurator anti-lockout rule"); ?></strong>
<tr> <div class="hidden" for="help_for_noantilockout">
<td width="22%" valign="top" class="vncell"><?=gettext("Anti-lockout"); ?></td> <?php printf(gettext("When this is unchecked, access to the webConfigurator " .
<td width="78%" class="vtable"> "on the %s interface is always permitted, regardless of the user-defined firewall " .
<?php "rule set. Check this box to disable this automatically added rule, so access " .
if ($config['interfaces']['lan']) { "to the webConfigurator is controlled by the user-defined firewall rules " .
$lockout_interface = "LAN"; "(ensure you have a firewall rule in place that allows you in, or you will " .
} else { "lock yourself out!)"), (!empty($config['interfaces']['lan']) ? "LAN" : "WAN")); ?>
$lockout_interface = "WAN"; <em> <?=gettext("Hint: the &quot;Set interface(s) IP address&quot; option in the console menu resets this setting as well."); ?> </em>
} </div>
?> </td>
<input name="noantilockout" type="checkbox" id="noantilockout" value="yes" <?php if ($pconfig['noantilockout']) { </tr>
echo "checked=\"checked\""; <tr>
} ?> /> <td><a id="help_for_nodnsrebindcheck" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("DNS Rebind Check"); ?></td>
<strong><?=gettext("Disable webConfigurator anti-lockout rule"); ?></strong> <td>
<br /> <input name="nodnsrebindcheck" type="checkbox" value="yes" <?=!empty($pconfig['nodnsrebindcheck']) ? "checked=\"checked\"" : "";?>/>
<?php printf(gettext("When this is unchecked, access to the webConfigurator " . <strong><?=gettext("Disable DNS Rebinding Checks"); ?></strong>
"on the %s interface is always permitted, regardless of the user-defined firewall " . <div class="hidden" for="help_for_nodnsrebindcheck">
"rule set. Check this box to disable this automatically added rule, so access " . <?= gettext("When this is unchecked, your system " .
"to the webConfigurator is controlled by the user-defined firewall rules " . "is protected against <a href=\"http://en.wikipedia.org/wiki/DNS_rebinding\">DNS Rebinding attacks</a>. " .
"(ensure you have a firewall rule in place that allows you in, or you will " . "This blocks private IP responses from your configured DNS servers. Check this box to disable this protection if it interferes with " .
"lock yourself out!)"), $lockout_interface); ?> "webConfigurator access or name resolution in your environment. "); ?>
<em> <?=gettext("Hint: the &quot;Set interface(s) IP address&quot; option in the console menu resets this setting as well."); ?> </em> </div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td width="22%" valign="top" class="vncell"><?=gettext("DNS Rebind Check"); ?></td> <td><a id="help_for_althostnames" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Alternate Hostnames"); ?></td>
<td width="78%" class="vtable"> <td>
<input name="nodnsrebindcheck" type="checkbox" id="nodnsrebindcheck" value="yes" <?php if ($pconfig['nodnsrebindcheck']) { <input name="althostnames" type="text" value="<?=$pconfig['althostnames'];?>"/>
echo "checked=\"checked\""; <strong><?=gettext("Alternate Hostnames for DNS Rebinding and HTTP_REFERER Checks"); ?></strong>
} ?> /> <div class="hidden" for="help_for_althostnames">
<strong><?=gettext("Disable DNS Rebinding Checks"); ?></strong> <?=gettext("Here you can specify alternate hostnames by which the router may be queried, to " .
<br /> "bypass the DNS Rebinding Attack checks. Separate hostnames with spaces."); ?>
<?php echo gettext("When this is unchecked, your system " . </div>
"is protected against <a href=\"http://en.wikipedia.org/wiki/DNS_rebinding\">DNS Rebinding attacks</a>. " . </td>
"This blocks private IP responses from your configured DNS servers. Check this box to disable this protection if it interferes with " . </tr>
"webConfigurator access or name resolution in your environment. "); ?> <tr>
</td> <td><a id="help_for_nohttpreferercheck" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Browser HTTP_REFERER enforcement"); ?></td>
</tr> <td>
<tr> <input name="nohttpreferercheck" type="checkbox" value="yes" <?= !empty($pconfig['nohttpreferercheck']) ? "checked=\"checked\"" : "";?> />
<td width="22%" valign="top" class="vncell"><?=gettext("Alternate Hostnames"); ?></td> <strong><?=gettext("Disable HTTP_REFERER enforcement check"); ?></strong>
<td width="78%" class="vtable"> <div class="hidden" for="help_for_nohttpreferercheck">
<input name="althostnames" type="text" class="formfld unknown" id="althostnames" size="75" value="<?=htmlspecialchars($pconfig['althostnames']);?>"/> <?=gettext("When this is unchecked, access to the webConfigurator " .
<strong><?=gettext("Alternate Hostnames for DNS Rebinding and HTTP_REFERER Checks"); ?></strong> "is protected against HTTP_REFERER redirection attempts. " .
<br /> "Check this box to disable this protection if you find that it interferes with " .
<?php echo gettext("Here you can specify alternate hostnames by which the router may be queried, to " . "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>."); ?>
"bypass the DNS Rebinding Attack checks. Separate hostnames with spaces."); ?> </div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Browser HTTP_REFERER enforcement"); ?></td> <td><a id="help_for_xdebug" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Enable XDebug"); ?></td>
<td width="78%" class="vtable"> <td width="78%">
<input name="nohttpreferercheck" type="checkbox" id="nohttpreferercheck" value="yes" <?php if ($pconfig['nohttpreferercheck']) { <input name="enable_xdebug" type="checkbox" value="yes" <?=!empty($pconfig['enable_xdebug']) ? "checked=\"checked\"" : "";?> />
echo "checked=\"checked\""; <strong><?=gettext("Enable debugger / profiler (developer mode, do not enable in production environment)"); ?></strong>
} ?> /> <div class="hidden" for="help_for_xdebug">
<strong><?=gettext("Disable HTTP_REFERER enforcement check"); ?></strong> <?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 /> <br />
<?php echo gettext("When this is unchecked, access to the webConfigurator " . <?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"); ?>
"is protected against HTTP_REFERER redirection attempts. " . </div>
"Check this box to disable this protection if you find that it interferes with " . </td>
"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>."); ?> </tr>
</td> <tr>
</tr> <th colspan="2"><?=gettext("Secure Shell"); ?></th>
<tr> </tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Enable XDebug"); ?></td> <tr>
<td width="78%" class="vtable"> <td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Secure Shell Server"); ?></td>
<input name="enable_xdebug" type="checkbox" id="enable_xdebug" value="yes" <?php if ($pconfig['enable_xdebug']) { <td>
echo "checked=\"checked\""; <input name="enablesshd" type="checkbox" value="yes" <?=!empty($pconfig['enablesshd']) ? "checked=\"checked\"" : "";?> />
} ?> /> <strong><?=gettext("Enable Secure Shell"); ?></strong>
<strong><?=gettext("Enable debugger / profiler (developer mode, do not enable in production environment)"); ?></strong> </td>
<br /> </tr>
<?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/"); ?> <tr>
<br /> <td><a id="help_for_sshdpermitrootlogin" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Root Login"); ?></td>
<?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>
</td> <input name="sshdpermitrootlogin" type="checkbox" value="yes" <?=!empty($pconfig['sshdpermitrootlogin']) ? "checked=\"checked\"" : "";?> />
</tr> <strong><?=gettext("Permit root user login"); ?></strong>
<div class="hidden" for="help_for_sshdpermitrootlogin">
<tr> <?= gettext(
<th colspan="2" valign="top" class="listtopic"><?=gettext("Secure Shell"); ?></th> 'Root login is generally discouraged. It is advised ' .
</tr> 'to log in via another user and switch to root afterwards.'
) ?>
<tr> </div>
<td width="22%" valign="top" class="vncell"><?=gettext("Secure Shell Server"); ?></td> </td>
<td width="78%" class="vtable"> </tr>
<input name="enablesshd" type="checkbox" id="enablesshd" value="yes" <?php if (isset($pconfig['enablesshd'])) { <tr>
echo "checked=\"checked\""; <td><a id="help_for_passwordauth" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Authentication Method"); ?></td>
} ?> /> <td>
<strong><?=gettext("Enable Secure Shell"); ?></strong> <input name="passwordauth" type="checkbox" value="yes" <?=!empty($pconfig['passwordauth']) ? "checked=\"checked\"" : "";?> />
</td> <strong><?=gettext("Permit password login"); ?></strong>
</tr> <div class="hidden" for="help_for_passwordauth">
<tr> <?=gettext("When disabled, authorized keys need to be configured for each"); ?>
<td width="22%" valign="top" class="vncell"><?=gettext("Root Login"); ?></td> <a href="system_usermanager.php"><?=gettext("user"); ?></a>
<td width="78%" class="vtable"> <?=gettext("that has been granted secure shell access."); ?>
<input name="sshdpermitrootlogin" type="checkbox" id="sshdpermitrootlogin" value="yes" <?php if ($pconfig['sshdpermitrootlogin']) { </div>
echo "checked=\"checked\""; </td>
} ?> /> </tr>
<strong><?=gettext("Permit root user login"); ?></strong> <tr>
<br /> <td><a id="help_for_sshport" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("SSH port"); ?></td>
<?= gettext( <td width="78%">
'Root login is generally discouraged. It is advised ' . <input name="sshport" type="text" value="<?=$pconfig['sshport'];?>"/>
'to log in via another user and switch to root afterwards.' <div class="hidden" for="help_for_sshport">
) ?> <?=gettext("Leave this blank for the default of 22."); ?>
</td> </div>
</tr> </td>
<tr> </tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Authentication Method"); ?></td> <tr>
<td width="78%" class="vtable"> <th colspan="2"><?=gettext("Serial Communications"); ?></th>
<input name="passwordauth" type="checkbox" id="passwordauth" value="yes" <?php if ($pconfig['passwordauth']) { </tr>
echo "checked=\"checked\""; <tr>
} ?> /> <td><a id="help_for_enableserial" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Serial Terminal"); ?></td>
<strong><?=gettext("Permit password login"); ?></strong> <td width="78%">
<br /> <input name="enableserial" type="checkbox" id="enableserial" value="yes" <?=!empty($pconfig['enableserial']) ? "checked=\"checked\"" : "";?> />
<?=gettext("When disabled, authorized keys need to be configured for each"); ?> <strong><?=gettext("Enables the first serial port with 115200/8/N/1 by default, or another speed selectable below."); ?></strong>
<a href="system_usermanager.php"><?=gettext("user"); ?></a> <div class="hidden" for="help_for_enableserial">
<?=gettext("that has been granted secure shell access."); ?> <?=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."); ?>
</td> </div>
</tr> </td>
<tr> </tr>
<td width="22%" valign="top" class="vncell"><?=gettext("SSH port"); ?></td> <tr>
<td width="78%" class="vtable"> <td><a id="help_for_serialspeed" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Serial Speed")?></td>
<input name="sshport" type="text" class="form-control" id="sshport" value="<?php echo $pconfig['sshport']; ?>"/> <td>
<?=gettext("Leave this blank for the default of 22."); ?> <select name="serialspeed" id="serialspeed" class="formselect selectpicker">
</td> <option value="115200" <?=$pconfig['serialspeed'] == "115200" ? "selected=\"selected\"" : "";?>>115200</option>
</tr> <option value="57600" <?=$pconfig['serialspeed'] == "57600" ? "selected=\"selected\"" : "";?>>57600</option>
<tr> <option value="38400" <?=$pconfig['serialspeed'] == "38400" ? "selected=\"selected\"" : "";?>>38400</option>
<td colspan="2" class="list" height="12">&nbsp;</td> <option value="19200" <?=$pconfig['serialspeed'] == "19200" ? "selected=\"selected\"" : "";?>>19200</option>
</tr> <option value="14400" <?=$pconfig['serialspeed'] == "14400" ? "selected=\"selected\"" : "";?>>14400</option>
<option value="9600" <?=$pconfig['serialspeed'] == "9600" ? "selected=\"selected\"" : "";?>>9600</option>
<tr> </select> <?=gettext("bps");?>
<th colspan="2" valign="top" class="listtopic"><?=gettext("Serial Communications"); ?></th> <div class="hidden" for="help_for_serialspeed">
</tr> <?=gettext("Allows selection of different speeds for the serial console port."); ?>
<tr> </div>
<td width="22%" valign="top" class="vncell"><?=gettext("Serial Terminal"); ?></td> </td>
<td width="78%" class="vtable"> </tr>
<input name="enableserial" type="checkbox" id="enableserial" value="yes" <?php if (isset($pconfig['enableserial'])) { <tr>
echo "checked=\"checked\""; <td><a id="help_for_primaryconsole" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Primary Console")?></td>
} ?> /> <td width="78%">
<strong><?=gettext("Enables the first serial port with 115200/8/N/1 by default, or another speed selectable below."); ?></strong> <select name="primaryconsole" id="primaryconsole" class="formselect selectpicker">
<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> <option value="serial" <?=$pconfig['primaryconsole'] == "serial" ? "selected=\"selected\"" : "";?>>
</td> <?=gettext("Serial Console");?>
</tr> </option>
<tr> <option value="video" <?=$pconfig['primaryconsole'] == "video" ? "selected=\"selected\"" : "";?>>
<td width="22%" valign="top" class="vncell"><?=gettext("Serial Speed")?></td> <?=gettext("VGA Console");?>
<td width="78%" class="vtable"> </option>
<select name="serialspeed" id="serialspeed" class="formselect selectpicker"> </select>
<option value="115200" <?php if ($pconfig['serialspeed'] == "115200") { <div class="hidden" for="help_for_primaryconsole">
echo "selected=\"selected\""; <?=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."); ?>
}?>>115200</option> </div>
<option value="57600" <?php if ($pconfig['serialspeed'] == "57600") { </td>
echo "selected=\"selected\""; </tr>
}?>>57600</option> <tr>
<option value="38400" <?php if ($pconfig['serialspeed'] == "38400") { <th colspan="2"><?=gettext("Console Options"); ?></th>
echo "selected=\"selected\""; </tr>
}?>>38400</option> <tr>
<option value="19200" <?php if ($pconfig['serialspeed'] == "19200") { <td><a id="help_for_disableconsolemenu" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Console menu"); ?></td>
echo "selected=\"selected\""; <td width="78%">
}?>>19200</option> <input name="disableconsolemenu" type="checkbox" value="yes" <?= !empty($pconfig['disableconsolemenu']) ? "checked=\"checked\"" :"";?> />
<option value="14400" <?php if ($pconfig['serialspeed'] == "14400") { <strong><?=gettext("Password protect the console menu"); ?></strong>
echo "selected=\"selected\""; <div class="hidden" for="help_for_disableconsolemenu">
}?>>14400</option> <?=gettext("Changes to this option will take effect after a reboot."); ?>
<option value="9600" <?php if ($pconfig['serialspeed'] == "9600") { </div>
echo "selected=\"selected\""; </td>
}?>>9600</option> </tr>
</select> bps <tr>
<br /><?=gettext("Allows selection of different speeds for the serial console port."); ?> <td colspan="2" class="list" height="12">&nbsp;</td>
</td> </tr>
</tr> <tr>
<tr> <td width="22%" valign="top">&nbsp;</td>
<td width="22%" valign="top" class="vncell"><?=gettext("Primary Console")?></td> <td width="78%"><input name="Submit" type="submit" class="btn btn-primary" value="<?=gettext("Save");?>" /></td>
<td width="78%" class="vtable"> </tr>
<select name="primaryconsole" id="primaryconsole" class="formselect selectpicker"> </table>
<option value="serial" <?php if ($pconfig['primaryconsole'] == "serial") { </form>
echo "selected=\"selected\"";
}?>>Serial Console</option>
<option value="video" <?php if ($pconfig['primaryconsole'] == "video") {
echo "selected=\"selected\"";
}?>>VGA Console</option>
</select>
<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."); ?>
</td>
</tr>
<tr>
<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">
<input name="disableconsolemenu" type="checkbox" id="disableconsolemenu" value="yes" <?php if ($pconfig['disableconsolemenu']) {
echo "checked=\"checked\"";
} ?> />
<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>
</form>
</div> </div>
</section> </section>
</div> </div>
</div> </div>
</section> </section>
<script type="text/javascript"> <script type="text/javascript">
//<![CDATA[ //<![CDATA[
prot_change(); prot_change();
//]]> //]]>
</script> </script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment