Commit adfeac41 authored by Ad Schellevis's avatar Ad Schellevis

(legacy) refactor diag_logs_settings.php

parent 28215751
<?php <?php
/* /*
Copyright (C) 2014-2015 Deciso B.V. Copyright (C) 2014-2015 Deciso B.V.
Copyright (C) 2007 Seth Mos <seth.mos@dds.nl> Copyright (C) 2007 Seth Mos <seth.mos@dds.nl>
Copyright (C) 2004-2009 Scott Ullrich Copyright (C) 2004-2009 Scott Ullrich
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");
...@@ -37,195 +37,167 @@ require_once("system.inc"); ...@@ -37,195 +37,167 @@ require_once("system.inc");
require_once("pfsense-utils.inc"); require_once("pfsense-utils.inc");
require_once("services.inc"); require_once("services.inc");
$pconfig['rrdenable'] = isset($config['rrd']['enable']);
function clear_all_log_files() function clear_all_log_files()
{ {
killbyname('syslogd'); killbyname('syslogd');
$clog_files = array( $clog_files = array('dhcpd', 'filter', 'gateways', 'ipsec', 'l2tps', 'lighttpd', 'ntpd', 'openvpn', 'poes',
'dhcpd', 'portalauth', 'ppps', 'pptps', 'relayd', 'resolver', 'routing', 'system','vpn','wireless');
'filter', $log_files = array('squid/access', 'squid/cache', 'squid/store');
'gateways',
'ipsec', foreach ($clog_files as $lfile) {
'l2tps', clear_clog("/var/log/{$lfile}.log", false);
'lighttpd', }
'ntpd',
'openvpn',
'poes', foreach ($log_files as $lfile) {
'portalauth', clear_log("/var/log/{$lfile}.log", false);
'ppps', }
'pptps',
'relayd',
'resolver',
'routing',
'system',
'vpn',
'wireless',
);
foreach ($clog_files as $lfile) {
clear_clog("/var/log/{$lfile}.log", false);
}
$log_files = array(
'squid/access',
'squid/cache',
'squid/store',
);
foreach ($log_files as $lfile) {
clear_log("/var/log/{$lfile}.log", false);
}
system_syslogd_start();
killbyname('dhcpd');
services_dhcpd_configure();
}
$pconfig['reverse'] = isset($config['syslog']['reverse']); system_syslogd_start();
$pconfig['nentries'] = $config['syslog']['nentries']; killbyname('dhcpd');
$pconfig['remoteserver'] = $config['syslog']['remoteserver']; services_dhcpd_configure();
$pconfig['remoteserver2'] = $config['syslog']['remoteserver2']; }
$pconfig['remoteserver3'] = $config['syslog']['remoteserver3'];
$pconfig['sourceip'] = $config['syslog']['sourceip'];
$pconfig['ipproto'] = $config['syslog']['ipproto'];
$pconfig['filter'] = isset($config['syslog']['filter']);
$pconfig['dhcp'] = isset($config['syslog']['dhcp']);
$pconfig['portalauth'] = isset($config['syslog']['portalauth']);
$pconfig['vpn'] = isset($config['syslog']['vpn']);
$pconfig['apinger'] = isset($config['syslog']['apinger']);
$pconfig['relayd'] = isset($config['syslog']['relayd']);
$pconfig['hostapd'] = isset($config['syslog']['hostapd']);
$pconfig['logall'] = isset($config['syslog']['logall']);
$pconfig['system'] = isset($config['syslog']['system']);
$pconfig['enable'] = isset($config['syslog']['enable']);
$pconfig['logdefaultblock'] = !isset($config['syslog']['nologdefaultblock']);
$pconfig['logdefaultpass'] = isset($config['syslog']['nologdefaultpass']);
$pconfig['logbogons'] = !isset($config['syslog']['nologbogons']);
$pconfig['logprivatenets'] = !isset($config['syslog']['nologprivatenets']);
$pconfig['loglighttpd'] = !isset($config['syslog']['nologlighttpd']);
$pconfig['filterdescriptions'] = $config['syslog']['filterdescriptions'];
$pconfig['disablelocallogging'] = isset($config['syslog']['disablelocallogging']);
$pconfig['logfilesize'] = $config['syslog']['logfilesize'];
if (!$pconfig['nentries'])
$pconfig['nentries'] = 50;
function is_valid_syslog_server($target) { function is_valid_syslog_server($target) {
return (is_ipaddr($target) return (is_ipaddr($target)
|| is_ipaddrwithport($target) || is_ipaddrwithport($target)
|| is_hostname($target) || is_hostname($target)
|| is_hostnamewithport($target)); || is_hostnamewithport($target));
} }
if ($_POST['resetlogs'] == 'Reset Log Files') {
clear_all_log_files(); if ($_SERVER['REQUEST_METHOD'] === 'GET') {
$savemsg = gettext("The log files have been reset."); $pconfig = array();
} elseif ($_POST['ResetRRD']) { $pconfig['rrdenable'] = isset($config['rrd']['enable']);
$savemsg = gettext('RRD data has been cleared.'); $pconfig['reverse'] = isset($config['syslog']['reverse']);
mwexec('/bin/rm /var/db/rrd/*'); $pconfig['nentries'] = !empty($config['syslog']['nentries']) ? $config['syslog']['nentries'] : 50;
enable_rrd_graphing(); $pconfig['remoteserver'] = !empty($config['syslog']['remoteserver']) ? $config['syslog']['remoteserver'] : null;
setup_gateways_monitor(); $pconfig['remoteserver2'] = !empty($config['syslog']['remoteserver2']) ? $config['syslog']['remoteserver2'] : null;
} elseif ($_POST) { $pconfig['remoteserver3'] = !empty($config['syslog']['remoteserver3']) ? $config['syslog']['remoteserver3'] : null;
$pconfig['sourceip'] = !empty($config['syslog']['sourceip']) ? $config['syslog']['sourceip'] : null;
unset($input_errors); $pconfig['ipproto'] = !empty($config['syslog']['ipproto']) ? $config['syslog']['ipproto'] : null;
$pconfig = $_POST; $pconfig['filter'] = isset($config['syslog']['filter']);
$pconfig['dhcp'] = isset($config['syslog']['dhcp']);
/* input validation */ $pconfig['portalauth'] = isset($config['syslog']['portalauth']);
if ($_POST['enable'] && !is_valid_syslog_server($_POST['remoteserver'])) { $pconfig['vpn'] = isset($config['syslog']['vpn']);
$input_errors[] = gettext("A valid IP address/hostname or IP/hostname:port must be specified for remote syslog server #1."); $pconfig['apinger'] = isset($config['syslog']['apinger']);
} $pconfig['relayd'] = isset($config['syslog']['relayd']);
if ($_POST['enable'] && $_POST['remoteserver2'] && !is_valid_syslog_server($_POST['remoteserver2'])) { $pconfig['hostapd'] = isset($config['syslog']['hostapd']);
$input_errors[] = gettext("A valid IP address/hostname or IP/hostname:port must be specified for remote syslog server #2."); $pconfig['logall'] = isset($config['syslog']['logall']);
} $pconfig['system'] = isset($config['syslog']['system']);
if ($_POST['enable'] && $_POST['remoteserver3'] && !is_valid_syslog_server($_POST['remoteserver3'])) { $pconfig['enable'] = isset($config['syslog']['enable']);
$input_errors[] = gettext("A valid IP address/hostname or IP/hostname:port must be specified for remote syslog server #3."); $pconfig['logdefaultblock'] = empty($config['syslog']['nologdefaultblock']);
} $pconfig['logdefaultpass'] = empty($config['syslog']['nologdefaultpass']);
$pconfig['logbogons'] = empty($config['syslog']['nologbogons']);
if (($_POST['nentries'] < 5) || ($_POST['nentries'] > 2000)) { $pconfig['logprivatenets'] = empty($config['syslog']['nologprivatenets']);
$input_errors[] = gettext("Number of log entries to show must be between 5 and 2000."); $pconfig['loglighttpd'] = empty($config['syslog']['nologlighttpd']);
} $pconfig['filterdescriptions'] = $config['syslog']['filterdescriptions'];
$pconfig['disablelocallogging'] = isset($config['syslog']['disablelocallogging']);
if (isset($_POST['logfilesize']) && (strlen($_POST['logfilesize']) > 0)) { $pconfig['logfilesize'] = !empty($config['syslog']['logfilesize']) ? $config['syslog']['logfilesize'] : null;
if (!is_numeric($_POST['logfilesize']) || ($_POST['logfilesize'] < 5120)) {
$input_errors[] = gettext("Log file size must be a positive integer greater than 5120."); } elseif ($_SERVER['REQUEST_METHOD'] === 'POST') {
} if (!empty($_POST['action']) && $_POST['action'] == "resetlogs") {
} clear_all_log_files();
if (!$input_errors) { $savemsg = gettext("The log files have been reset.");
$config['syslog']['reverse'] = $_POST['reverse'] ? true : false; } elseif (!empty($_POST['action']) && $_POST['action'] == "ResetRRD") {
$config['syslog']['nentries'] = (int)$_POST['nentries']; $savemsg = gettext('RRD data has been cleared.');
$pconfig['nentries'] = $config['syslog']['nentries']; mwexec('/bin/rm /var/db/rrd/*');
if (isset($_POST['logfilesize']) && (strlen($_POST['logfilesize']) > 0)) { enable_rrd_graphing();
$config['syslog']['logfilesize'] = (int)$_POST['logfilesize']; setup_gateways_monitor();
$pconfig['logfilesize'] = $config['syslog']['logfilesize']; } else {
} else { $input_errors = array();
unset($config['syslog']['logfilesize']); $pconfig = $_POST;
}
$config['syslog']['remoteserver'] = $_POST['remoteserver']; /* input validation */
$config['syslog']['remoteserver2'] = $_POST['remoteserver2']; if (!empty($pconfig['enable']) && !is_valid_syslog_server($pconfig['remoteserver'])) {
$config['syslog']['remoteserver3'] = $_POST['remoteserver3']; $input_errors[] = gettext("A valid IP address/hostname or IP/hostname:port must be specified for remote syslog server #1.");
$config['syslog']['sourceip'] = $_POST['sourceip']; }
$config['syslog']['ipproto'] = $_POST['ipproto']; if (!empty($pconfig['enable']) && !empty($pconfig['remoteserver2']) && !is_valid_syslog_server($pconfig['remoteserver2'])) {
$config['syslog']['filter'] = $_POST['filter'] ? true : false; $input_errors[] = gettext("A valid IP address/hostname or IP/hostname:port must be specified for remote syslog server #2.");
$config['syslog']['dhcp'] = $_POST['dhcp'] ? true : false; }
$config['syslog']['portalauth'] = $_POST['portalauth'] ? true : false; if (!empty($pconfig['enable']) && !empty($pconfig['remoteserver3']) && !is_valid_syslog_server($_POST['remoteserver3'])) {
$config['syslog']['vpn'] = $_POST['vpn'] ? true : false; $input_errors[] = gettext("A valid IP address/hostname or IP/hostname:port must be specified for remote syslog server #3.");
$config['syslog']['apinger'] = $_POST['apinger'] ? true : false; }
$config['syslog']['relayd'] = $_POST['relayd'] ? true : false;
$config['syslog']['hostapd'] = $_POST['hostapd'] ? true : false; if (($pconfig['nentries'] < 5) || ($pconfig['nentries'] > 2000)) {
$config['syslog']['logall'] = $_POST['logall'] ? true : false; $input_errors[] = gettext("Number of log entries to show must be between 5 and 2000.");
$config['syslog']['system'] = $_POST['system'] ? true : false; }
$config['syslog']['disablelocallogging'] = $_POST['disablelocallogging'] ? true : false;
$config['syslog']['enable'] = $_POST['enable'] ? true : false; if (!empty($pconfig['logfilesize']) && (strlen($pconfig['logfilesize']) > 0)) {
$oldnologdefaultblock = isset($config['syslog']['nologdefaultblock']); if (!is_numeric($pconfig['logfilesize']) || ($pconfig['logfilesize'] < 5120)) {
$oldnologdefaultpass = isset($config['syslog']['nologdefaultpass']); $input_errors[] = gettext("Log file size must be a positive integer greater than 5120.");
$oldnologbogons = isset($config['syslog']['nologbogons']); }
$oldnologprivatenets = isset($config['syslog']['nologprivatenets']); }
$oldnologlighttpd = isset($config['syslog']['nologlighttpd']); if (count($input_errors) == 0) {
$config['syslog']['nologdefaultblock'] = $_POST['logdefaultblock'] ? false : true; $config['syslog']['reverse'] = !empty($pconfig['reverse']) ? true : false;
$config['syslog']['nologdefaultpass'] = $_POST['logdefaultpass'] ? true : false; $config['syslog']['nentries'] = (int)$pconfig['nentries'];
$config['syslog']['nologbogons'] = $_POST['logbogons'] ? false : true; if (isset($_POST['logfilesize']) && (strlen($pconfig['logfilesize']) > 0)) {
$config['syslog']['nologprivatenets'] = $_POST['logprivatenets'] ? false : true; $config['syslog']['logfilesize'] = (int)$pconfig['logfilesize'];
$config['syslog']['nologlighttpd'] = $_POST['loglighttpd'] ? false : true; } elseif (isset($config['syslog']['logfilesize'])) {
if (is_numeric($_POST['filterdescriptions']) && $_POST['filterdescriptions'] > 0) unset($config['syslog']['logfilesize']);
$config['syslog']['filterdescriptions'] = $_POST['filterdescriptions']; }
else $config['syslog']['remoteserver'] = $pconfig['remoteserver'];
unset($config['syslog']['filterdescriptions']); $config['syslog']['remoteserver2'] = $pconfig['remoteserver2'];
if($config['syslog']['enable'] == false) { $config['syslog']['remoteserver3'] = $pconfig['remoteserver3'];
unset($config['syslog']['remoteserver']); $config['syslog']['sourceip'] = $pconfig['sourceip'];
unset($config['syslog']['remoteserver2']); $config['syslog']['ipproto'] = $pconfig['ipproto'];
unset($config['syslog']['remoteserver3']); $config['syslog']['filter'] = !empty($pconfig['filter']);
} $config['syslog']['dhcp'] = !empty($pconfig['dhcp']);
$config['syslog']['portalauth'] = !empty($pconfig['portalauth']);
$config['rrd']['enable'] = $_POST['rrdenable'] ? true : false; $config['syslog']['vpn'] = !empty($pconfig['vpn']);
$config['syslog']['apinger'] = !empty($pconfig['apinger']);
write_config(); $config['syslog']['relayd'] = !empty($pconfig['relayd']);
$config['syslog']['hostapd'] = !empty($pconfig['hostapd']);
$retval = 0; $config['syslog']['logall'] = !empty($pconfig['logall']);
$retval = system_syslogd_start(); $config['syslog']['system'] = !empty($pconfig['system']);
if (($oldnologdefaultblock !== isset($config['syslog']['nologdefaultblock'])) $config['syslog']['disablelocallogging'] = !empty($pconfig['disablelocallogging']);
|| ($oldnologdefaultpass !== isset($config['syslog']['nologdefaultpass'])) $config['syslog']['enable'] = !empty($pconfig['enable']);
|| ($oldnologbogons !== isset($config['syslog']['nologbogons'])) $oldnologdefaultblock = isset($config['syslog']['nologdefaultblock']);
|| ($oldnologprivatenets !== isset($config['syslog']['nologprivatenets']))) $oldnologdefaultpass = isset($config['syslog']['nologdefaultpass']);
$retval |= filter_configure(); $oldnologbogons = isset($config['syslog']['nologbogons']);
$oldnologprivatenets = isset($config['syslog']['nologprivatenets']);
$savemsg = get_std_save_message(); $oldnologlighttpd = isset($config['syslog']['nologlighttpd']);
$config['syslog']['nologdefaultblock'] = empty($pconfig['logdefaultblock']);
if ($oldnologlighttpd !== isset($config['syslog']['nologlighttpd'])) { $config['syslog']['nologdefaultpass'] = empty($pconfig['logdefaultpass']);
ob_flush(); $config['syslog']['nologbogons'] = empty($pconfig['logbogons']);
flush(); $config['syslog']['nologprivatenets'] = empty($pconfig['logprivatenets']);
log_error(gettext("webConfigurator configuration has changed. Restarting webConfigurator.")); $config['syslog']['nologlighttpd'] = empty($pconfig['loglighttpd']);
mwexec_bg('/usr/local/etc/rc.restart_webgui 2'); if (is_numeric($pconfig['filterdescriptions']) && $pconfig['filterdescriptions'] > 0)
$savemsg .= "<br />" . gettext("WebGUI process is restarting."); $config['syslog']['filterdescriptions'] = $pconfig['filterdescriptions'];
} elseif (isset($config['syslog']['filterdescriptions'])) {
unset($config['syslog']['filterdescriptions']);
filter_pflog_start(); }
enable_rrd_graphing();
setup_gateways_monitor(); $config['rrd']['enable'] = !empty($pconfig['rrdenable']);
}
write_config();
$retval = 0;
$retval = system_syslogd_start();
if (($oldnologdefaultblock !== isset($config['syslog']['nologdefaultblock']))
|| ($oldnologdefaultpass !== isset($config['syslog']['nologdefaultpass']))
|| ($oldnologbogons !== isset($config['syslog']['nologbogons']))
|| ($oldnologprivatenets !== isset($config['syslog']['nologprivatenets'])))
$retval |= filter_configure();
$savemsg = get_std_save_message();
if ($oldnologlighttpd !== isset($config['syslog']['nologlighttpd'])) {
log_error(gettext("webConfigurator configuration has changed. Restarting webConfigurator."));
mwexec_bg('/usr/local/etc/rc.restart_webgui 2');
$savemsg .= "<br />" . gettext("WebGUI process is restarting.");
}
filter_pflog_start();
enable_rrd_graphing();
setup_gateways_monitor();
}
}
} }
legacy_html_escape_form_data($pconfig);
$pgtitle = array(gettext('System'), gettext('Settings'), gettext('Log Files')); $pgtitle = array(gettext('System'), gettext('Settings'), gettext('Log Files'));
$closehead = false; $closehead = false;
include("head.inc"); include("head.inc");
...@@ -233,311 +205,383 @@ include("head.inc"); ...@@ -233,311 +205,383 @@ include("head.inc");
?> ?>
<script type="text/javascript"> <script type="text/javascript">
//<![CDATA[ //<![CDATA[
function enable_change(enable_over) { function enable_change(enable_over) {
if (document.iform.enable.checked || enable_over) { if (document.iform.enable.checked || enable_over) {
document.iform.remoteserver.disabled = 0; document.iform.remoteserver.disabled = 0;
document.iform.remoteserver2.disabled = 0; document.iform.remoteserver2.disabled = 0;
document.iform.remoteserver3.disabled = 0; document.iform.remoteserver3.disabled = 0;
document.iform.filter.disabled = 0; document.iform.filter.disabled = 0;
document.iform.dhcp.disabled = 0; document.iform.dhcp.disabled = 0;
document.iform.portalauth.disabled = 0; document.iform.portalauth.disabled = 0;
document.iform.vpn.disabled = 0; document.iform.vpn.disabled = 0;
document.iform.apinger.disabled = 0; document.iform.apinger.disabled = 0;
document.iform.relayd.disabled = 0; document.iform.relayd.disabled = 0;
document.iform.hostapd.disabled = 0; document.iform.hostapd.disabled = 0;
document.iform.system.disabled = 0; document.iform.system.disabled = 0;
document.iform.logall.disabled = 0; document.iform.logall.disabled = 0;
check_everything(); check_everything();
} else { } else {
document.iform.remoteserver.disabled = 1; document.iform.remoteserver.disabled = 1;
document.iform.remoteserver2.disabled = 1; document.iform.remoteserver2.disabled = 1;
document.iform.remoteserver3.disabled = 1; document.iform.remoteserver3.disabled = 1;
document.iform.filter.disabled = 1; document.iform.filter.disabled = 1;
document.iform.dhcp.disabled = 1; document.iform.dhcp.disabled = 1;
document.iform.portalauth.disabled = 1; document.iform.portalauth.disabled = 1;
document.iform.vpn.disabled = 1; document.iform.vpn.disabled = 1;
document.iform.apinger.disabled = 1; document.iform.apinger.disabled = 1;
document.iform.relayd.disabled = 1; document.iform.relayd.disabled = 1;
document.iform.hostapd.disabled = 1; document.iform.hostapd.disabled = 1;
document.iform.system.disabled = 1; document.iform.system.disabled = 1;
document.iform.logall.disabled = 1; document.iform.logall.disabled = 1;
} }
} }
function check_everything() { function check_everything() {
if (document.iform.logall.checked) { if (document.iform.logall.checked) {
document.iform.filter.disabled = 1; document.iform.filter.disabled = 1;
document.iform.filter.checked = false; document.iform.filter.checked = false;
document.iform.dhcp.disabled = 1; document.iform.dhcp.disabled = 1;
document.iform.dhcp.checked = false; document.iform.dhcp.checked = false;
document.iform.portalauth.disabled = 1; document.iform.portalauth.disabled = 1;
document.iform.portalauth.checked = false; document.iform.portalauth.checked = false;
document.iform.vpn.disabled = 1; document.iform.vpn.disabled = 1;
document.iform.vpn.checked = false; document.iform.vpn.checked = false;
document.iform.apinger.disabled = 1; document.iform.apinger.disabled = 1;
document.iform.apinger.checked = false; document.iform.apinger.checked = false;
document.iform.relayd.disabled = 1; document.iform.relayd.disabled = 1;
document.iform.relayd.checked = false; document.iform.relayd.checked = false;
document.iform.hostapd.disabled = 1; document.iform.hostapd.disabled = 1;
document.iform.hostapd.checked = false; document.iform.hostapd.checked = false;
document.iform.system.disabled = 1; document.iform.system.disabled = 1;
document.iform.system.checked = false; document.iform.system.checked = false;
} else { } else {
document.iform.filter.disabled = 0; document.iform.filter.disabled = 0;
document.iform.dhcp.disabled = 0; document.iform.dhcp.disabled = 0;
document.iform.portalauth.disabled = 0; document.iform.portalauth.disabled = 0;
document.iform.vpn.disabled = 0; document.iform.vpn.disabled = 0;
document.iform.apinger.disabled = 0; document.iform.apinger.disabled = 0;
document.iform.relayd.disabled = 0; document.iform.relayd.disabled = 0;
document.iform.hostapd.disabled = 0; document.iform.hostapd.disabled = 0;
document.iform.system.disabled = 0; document.iform.system.disabled = 0;
} }
} }
$(document).ready(function() {
enable_change(false);
// messagebox, flush all rrd graphs
$("#ResetRRD").click(function(event){
event.preventDefault();
BootstrapDialog.show({
type:BootstrapDialog.TYPE_INFO,
title: "<?= gettext("Syslog");?>",
message: "<?=gettext('Do you really want to reset the RRD graphs? This will erase all graph data.');?>",
buttons: [{
label: "<?= gettext("No");?>",
action: function(dialogRef) {
dialogRef.close();
}}, {
label: "<?= gettext("Yes");?>",
action: function(dialogRef) {
$("#action").val("ResetRRD");
$("#iform").submit()
}
}]
});
});
// messagebox, flush all log files
$("#resetlogs").click(function(event){
event.preventDefault();
BootstrapDialog.show({
type:BootstrapDialog.TYPE_INFO,
title: "<?= gettext("Syslog");?>",
message: "<?=gettext('Do you really want to reset the log files? This will erase all local log data.');?>",
buttons: [{
label: "<?= gettext("No");?>",
action: function(dialogRef) {
dialogRef.close();
}}, {
label: "<?= gettext("Yes");?>",
action: function(dialogRef) {
$("#action").val("resetlogs");
$("#iform").submit()
}
}]
});
});
});
//]]> //]]>
</script> </script>
</head> </head>
<body> <body>
<?php include("fbegin.inc"); ?> <?php include("fbegin.inc"); ?>
<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
if (isset($input_errors) && count($input_errors) > 0) {
<?php if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors); ?> print_input_errors($input_errors);
<?php if (isset($savemsg)) print_info_box($savemsg); ?> }
if (isset($savemsg)) {
<section class="col-xs-12"> print_info_box($savemsg);
<form action="diag_logs_settings.php" method="post" name="iform" id="iform"> }
<div class="tab-content content-box col-xs-12 __mb"> ?>
<div class="table-responsive"> <section class="col-xs-12">
<table class="table table-striped"> <form action="diag_logs_settings.php" method="post" name="iform" id="iform">
<tr> <input type="hidden" id="action" name="action" value="" />
<td colspan="2" valign="top" class="listtopic"><strong><?=gettext('Reporting Database Options');?></strong></td> <div class="tab-content content-box col-xs-12 __mb">
</tr> <div class="table-responsive">
<tr> <table class="table table-striped">
<td width="22%" valign="top" class="vtable"><?=gettext("Round-Robin-Database");?></td> <tr>
<td width="78%" class="vtable"> <td colspan="2"><strong><?=gettext('Reporting Database Options');?></strong></td>
<label> </tr>
<input name="rrdenable" type="checkbox" id="rrdenable" value="yes" <?php if ($pconfig['rrdenable']) echo "checked=\"checked\"" ?> onclick="enable_change(false)" /> <tr>
&nbsp;<?=gettext("Enables the RRD graphing backend.");?> <td width="22%"><i class="fa fa-info-circle text-muted"></i> <?=gettext("Round-Robin-Database");?></td>
</label> <td>
</td> <input name="rrdenable" type="checkbox" id="rrdenable" value="yes" <?=!empty($pconfig['rrdenable']) ? "checked=\"checked\"" : ""?> onclick="enable_change(false)" />
</tr> &nbsp;<strong><?=gettext("Enables the RRD graphing backend.");?></strong>
<tr> </td>
<td width="22%" valign="top">&nbsp;</td> </tr>
<td width="78%"> <tr>
<input name="Submit" type="submit" class="btn btn-primary" value="<?=gettext("Save");?>" onclick="enable_change(true)" /> <td>&nbsp;</td>
<input name="ResetRRD" type="submit" class="btn btn-default" value="<?=gettext("Reset RRD Data");?>" onclick="return confirm('<?=gettext('Do you really want to reset the RRD graphs? This will erase all graph data.');?>')" /> <td>
</td> <input name="Submit" type="submit" class="btn btn-primary" value="<?=gettext("Save");?>" onclick="enable_change(true)" />
</tr> <input type="button" name="ResetRRD" id="ResetRRD" class="btn btn-default" value="<?=gettext("Reset RRD Data");?>" />
</table> </td>
</div> </tr>
<div class="container-fluid"> <tr>
<p><strong><span class="text-danger"><?=gettext("Note:");?></span></strong><br /> <td colspan="2">
<?=gettext("Graphs will not be allowed to be recreated within a 1 minute interval, please " . <p>
"take this into account after changing the style.");?> <strong><span class="text-danger"><?=gettext("Note:");?></span></strong><br />
</p> <?=gettext("Graphs will not be allowed to be recreated within a 1 minute interval, please " .
</div> "take this into account after changing the style.");?>
</div> </p>
<div class="tab-content content-box col-xs-12 __mb"> </td>
<div class="table-responsive"> </tr>
<table class="table table-striped"> </table>
<tr> </div>
<td colspan="2" valign="top" class="listtopic"><strong><?=gettext("Local Logging Options");?></strong></td> </div>
</tr> <div class="tab-content content-box col-xs-12 __mb">
<tr> <div class="table-responsive">
<td width="22%" valign="top" class="vtable"><?=gettext('Forward/Reverse Display') ?></td> <table class="table table-striped">
<td width="78%" class="vtable"> <input name="reverse" type="checkbox" id="reverse" value="yes" <?php if ($pconfig['reverse']) echo "checked=\"checked\""; ?> /> <tr>
<strong><?=gettext("Show log entries in reverse order (newest entries on top)");?></strong></td> <td width="22%"><strong><?=gettext("Local Logging Options");?></strong></td>
</tr> <td width="78%" align="right">
<tr> <small><?=gettext("full help"); ?> </small>
<td width="22%" valign="top" class="vtable"><?=gettext('GUI Log Entries to Display') ?></td> <i class="fa fa-toggle-off text-danger" style="cursor: pointer;" id="show_all_help_page" type="button"></i></a>
<td width="78%" class="vtable"> </td>
<input name="nentries" id="nentries" type="text" class="formfld unknown" size="4" value="<?=htmlspecialchars($pconfig['nentries']);?>" /><br /> </tr>
<?=gettext("Hint: This is only the number of log entries displayed in the GUI. It does not affect how many entries are contained in the actual log files.") ?></td> <tr>
</tr> <td><a id="help_for_reverse" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext('Reverse Display') ?></td>
<tr> <td>
<td width="22%" valign="top" class="vtable"><?=gettext('Log File Size (Bytes)') ?></td> <input name="reverse" type="checkbox" id="reverse" value="yes" <?=!empty($pconfig['reverse']) ? "checked=\"checked\"" : ""; ?> />
<td width="78%" class="vtable"> <div class="hidden" for="help_for_reverse">
<input name="logfilesize" id="logfilesize" type="text" class="formfld unknown" size="8" value="<?=htmlspecialchars($pconfig['logfilesize']);?>" /><br /> <?=gettext("Show log entries in reverse order (newest entries on top)");?>
<?=gettext("Logs are held in constant-size circular log files. This field controls how large each log file is, and thus how many entries may exist inside the log. By default this is approximately 500KB per log file, and there are nearly 20 such log files.") ?> </div>
<br /><br /> </td>
<?=gettext("NOTE: Log sizes are changed the next time a log file is cleared or deleted. To immediately increase the size of the log files, you must first save the options to set the size, then clear all logs using the \"Reset Log Files\" option farther down this page. "); ?> </tr>
<?=gettext("Be aware that increasing this value increases every log file size, so disk usage will increase significantly."); ?> <tr>
<?=gettext("Disk space currently used by log files: ") ?><?= exec("/usr/bin/du -sh /var/log | /usr/bin/awk '{print $1;}'"); ?>. <td><a id="help_for_nentries" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext('GUI Log Entries to Display') ?></td>
<?=gettext("Remaining disk space for log files: ") ?><?= exec("/bin/df -h /var/log | /usr/bin/awk '{print $4;}'"); ?>. <td>
</td> <input name="nentries" type="text" value="<?=$pconfig['nentries'];?>" /><br />
</tr> <div class="hidden" for="help_for_nentries">
<tr> <?=gettext("Hint: This is only the number of log entries displayed in the GUI. It does not affect how many entries are contained in the actual log files.") ?>
<td valign="top" class="vtable"><?=gettext('Log Firewall Default Blocks') ?></td> </div>
<td class="vtable"> </td>
<input name="logdefaultblock" type="checkbox" id="logdefaultblock" value="yes" <?php if ($pconfig['logdefaultblock']) echo "checked=\"checked\""; ?> /> </tr>
<strong><?=gettext("Log packets matched from the default block rules put in the ruleset");?></strong><br /> <tr>
<?=gettext("Hint: packets that are blocked by the implicit default block rule will not be logged if you uncheck this option. Per-rule logging options are still respected.");?> <td><a id="help_for_logfilesize" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext('Log File Size (Bytes)') ?></td>
<br /> <td>
<input name="logdefaultpass" type="checkbox" id="logdefaultpass" value="yes" <?php if ($pconfig['logdefaultpass']) echo "checked=\"checked\""; ?> /> <input name="logfilesize" type="text" value="<?=$pconfig['logfilesize'];?>" />
<strong><?=gettext("Log packets matched from the default pass rules put in the ruleset");?></strong><br /> <div class="hidden" for="help_for_logfilesize">
<?=gettext("Hint: packets that are allowed by the implicit default pass rule will be logged if you check this option. Per-rule logging options are still respected.");?> <?=gettext("Logs are held in constant-size circular log files. This field controls how large each log file is, and thus how many entries may exist inside the log. By default this is approximately 500KB per log file, and there are nearly 20 such log files.") ?>
<br /> <br /><br />
<input name="logbogons" type="checkbox" id="logbogons" value="yes" <?php if ($pconfig['logbogons']) echo "checked=\"checked\""; ?> /> <?=gettext("NOTE: Log sizes are changed the next time a log file is cleared or deleted. To immediately increase the size of the log files, you must first save the options to set the size, then clear all logs using the \"Reset Log Files\" option farther down this page. "); ?>
<strong><?=gettext("Log packets blocked by 'Block Bogon Networks' rules");?></strong><br /> <?=gettext("Be aware that increasing this value increases every log file size, so disk usage will increase significantly."); ?>
<br /> <?=gettext("Disk space currently used by log files: ") ?><?= exec("/usr/bin/du -sh /var/log | /usr/bin/awk '{print $1;}'"); ?>.
<input name="logprivatenets" type="checkbox" id="logprivatenets" value="yes" <?php if ($pconfig['logprivatenets']) echo "checked=\"checked\""; ?> /> <?=gettext("Remaining disk space for log files: ") ?><?= exec("/bin/df -h /var/log | /usr/bin/awk '{print $4;}'"); ?>.
<strong><?=gettext("Log packets blocked by 'Block Private Networks' rules");?></strong><br /> </div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td valign="top" class="vtable"><?=gettext('Web Server Log') ?></td> <td><a id="help_for_logdefaultblock" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext('Log Firewall Default Blocks') ?></td>
<td class="vtable"> <input name="loglighttpd" type="checkbox" id="loglighttpd" value="yes" <?php if ($pconfig['loglighttpd']) echo "checked=\"checked\""; ?> /> <td>
<strong><?=gettext("Log errors from the web server process.");?></strong><br /> <input name="logdefaultblock" type="checkbox" value="yes" <?=!empty($pconfig['logdefaultblock']) ? "checked=\"checked\"" : ""; ?> />
<?=gettext("Hint: If this is checked, errors from the lighttpd web server process for the GUI or Captive Portal will appear in the main system log.");?></td> <strong><?=gettext("Log packets matched from the default block rules put in the ruleset");?></strong><br />
</tr> <div class="hidden" for="help_for_logdefaultblock">
<tr> <?=gettext("Hint: packets that are blocked by the implicit default block rule will not be logged if you uncheck this option. Per-rule logging options are still respected.");?>
<td valign="top" class="vtable"><?=gettext('Filter descriptions') ?></td> </div>
<td class="vtable"> <input name="logdefaultpass" type="checkbox" id="logdefaultpass" value="yes" <?=!empty($pconfig['logdefaultpass']) ? "checked=\"checked\"" :""; ?> />
<select name="filterdescriptions" id="filterdescriptions" class="form-control"> <strong><?=gettext("Log packets matched from the default pass rules put in the ruleset");?></strong><br />
<option value="0"<?=!isset($pconfig['filterdescriptions'])?" selected=\"selected\"":""?>><?=gettext('Omit descriptions') ?></option> <div class="hidden" for="help_for_logdefaultblock">
<option value="1"<?=($pconfig['filterdescriptions'])==="1"?" selected=\"selected\"":""?>><?=gettext('Display as column') ?></option> <?=gettext("Hint: packets that are allowed by the implicit default pass rule will be logged if you check this option. Per-rule logging options are still respected.");?>
<option value="2"<?=($pconfig['filterdescriptions'])==="2"?" selected=\"selected\"":""?>><?=gettext('Display as second row') ?></option> </div>
</select> <input name="logbogons" type="checkbox" id="logbogons" value="yes" <?=!empty($pconfig['logbogons']) ? "checked=\"checked\"" : ""; ?> />
<strong><?=gettext("Show the applied rule description below or in the firewall log rows.");?></strong> <strong><?=gettext("Log packets blocked by 'Block Bogon Networks' rules");?></strong><br />
<br /> <input name="logprivatenets" type="checkbox" id="logprivatenets" value="yes" <?php if ($pconfig['logprivatenets']) echo "checked=\"checked\""; ?> />
<?=gettext("Displaying rule descriptions for all lines in the log might affect performance with large rule sets.");?> <strong><?=gettext("Log packets blocked by 'Block Private Networks' rules");?></strong><br />
</td> </td>
</tr> </tr>
<tr> <tr>
<td width="22%" valign="top" class="vtable"><?=gettext('Local Logging') ?></td> <td><a id="help_for_loglighttpd" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext('Web Server Log') ?></td>
<td width="78%" class="vtable"> <input name="disablelocallogging" type="checkbox" id="disablelocallogging" value="yes" <?php if ($pconfig['disablelocallogging']) echo "checked=\"checked\""; ?> onclick="enable_change(false)" /> <td>
<strong><?=gettext("Disable writing log files to the local disk");?></strong></td> <input name="loglighttpd" type="checkbox" id="loglighttpd" value="yes" <?=!empty($pconfig['loglighttpd']) ? "checked=\"checked\"" :""; ?> />
</tr> <strong><?=gettext("Log errors from the web server process.");?></strong><br />
<tr> <div class="hidden" for="help_for_loglighttpd">
<td width="22%" valign="top"><?=gettext('Reset Logs') ?></td> <?=gettext("Hint: If this is checked, errors from the lighttpd web server process for the GUI or Captive Portal will appear in the main system log.");?></td>
<td width="78%"> </div>
<input name="resetlogs" type="submit" class="btn btn-default" value="<?=gettext("Reset Log Files"); ?>" onclick="return confirm('<?=gettext('Do you really want to reset the log files? This will erase all local log data.');?>')" /> </tr>
<br/><br/> <tr>
<?= gettext("Note: Clears all local log files and reinitializes them as empty logs. This also restarts the DHCP daemon. Use the Save button first if you have made any setting changes."); ?> <td><a id="help_for_filterdescriptions" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext('Filter descriptions') ?></td>
</td> <td>
</tr> <select name="filterdescriptions" id="filterdescriptions" class="form-control">
</table> <option value="0"<?=!isset($pconfig['filterdescriptions'])?" selected=\"selected\"":""?>><?=gettext('Omit descriptions') ?></option>
</div> <option value="1"<?=($pconfig['filterdescriptions'])==="1"?" selected=\"selected\"":""?>><?=gettext('Display as column') ?></option>
</div> <option value="2"<?=($pconfig['filterdescriptions'])==="2"?" selected=\"selected\"":""?>><?=gettext('Display as second row') ?></option>
</select>
<div class="tab-content content-box col-xs-12 __mb"> <div class="hidden" for="help_for_filterdescriptions">
<div class="table-responsive"> <strong><?=gettext("Show the applied rule description below or in the firewall log rows.");?></strong>
<table class="table table-striped"> <br />
<tr> <?=gettext("Displaying rule descriptions for all lines in the log might affect performance with large rule sets.");?>
<td colspan="2" valign="top" class="listtopic"><strong><?=gettext("Remote Logging Options");?></strong></td> </div>
</tr> </td>
<tr> </tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Source Address"); ?></td> <tr>
<td width="78%" class="vtable"> <td><i class="fa fa-info-circle text-muted"></i> <?=gettext('Local Logging') ?></td>
<select name="sourceip" class="form-control"> <td> <input name="disablelocallogging" type="checkbox" id="disablelocallogging" value="yes" <?=!empty($pconfig['disablelocallogging']) ? "checked=\"checked\"" :""; ?> onclick="enable_change(false)" />
<option value=""><?=gettext('Default (any)') ?></option> <strong><?=gettext("Disable writing log files to the local disk");?></strong></td>
<?php $sourceips = get_possible_traffic_source_addresses(false); </tr>
foreach ($sourceips as $sip): <tr>
$selected = ""; <td><a id="help_for_resetlogs" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext('Reset Logs') ?></td>
if (!link_interface_to_bridge($sip['value']) && ($sip['value'] == $pconfig['sourceip'])) <td>
$selected = 'selected="selected"'; <input name="resetlogs" id="resetlogs" type="submit" class="btn btn-default" value="<?=gettext("Reset Log Files"); ?>"/>
?> <div class="hidden" for="help_for_resetlogs">
<option value="<?=$sip['value'];?>" <?=$selected;?>> <?= gettext("Note: Clears all local log files and reinitializes them as empty logs. This also restarts the DHCP daemon. Use the Save button first if you have made any setting changes."); ?>
<?=htmlspecialchars($sip['name']);?> </div>
</option> </td>
<?php endforeach; ?> </tr>
</select> </table>
<br /> </div>
<?= gettext("This option will allow the logging daemon to bind to a single IP address, rather than all IP addresses."); ?> </div>
<?= gettext("If you pick a single IP, remote syslog severs must all be of that IP type. If you wish to mix IPv4 and IPv6 remote syslog servers, you must bind to all interfaces."); ?>
<br /><br /> <div class="tab-content content-box col-xs-12 __mb">
<?= gettext("NOTE: If an IP address cannot be located on the chosen interface, the daemon will bind to all addresses."); ?> <div class="table-responsive">
</td> <table class="table table-striped">
</tr> <tr>
<tr> <td width="22%"><strong><?=gettext("Remote Logging Options");?></strong></td>
<td width="22%" valign="top" class="vncell"><?=gettext("IP Protocol"); ?></td> <td width="78%" align="right">
<td width="78%" class="vtable"> <small><?=gettext("full help"); ?> </small>
<select name="ipproto" class="form-control"> <i class="fa fa-toggle-off text-danger" style="cursor: pointer;" id="show_all_help_page" type="button"></i></a>
<option value="ipv4" <?php if ($ipproto == "ipv4") echo 'selected="selected"' ?>>IPv4</option> </td>
<option value="ipv6" <?php if ($ipproto == "ipv6") echo 'selected="selected"' ?>>IPv6</option> </tr>
</select> <tr>
<br /> <td><a id="help_for_sourceip" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Source Address"); ?></td>
<?= gettext("This option is only used when a non-default address is chosen as the source above. This option only expresses a preference; If an IP address of the selected type is not found on the chosen interface, the other type will be tried."); ?> <td>
</td> <select name="sourceip" class="form-control">
</tr> <option value=""><?=gettext('Default (any)') ?></option>
<tr> <?php
<td width="22%" valign="top" class="vncell"><?=gettext("Enable Remote Logging");?></td> foreach (get_possible_traffic_source_addresses(false) as $sip):?>
<td width="78%" class="vtable"> <input name="enable" type="checkbox" id="enable" value="yes" <?php if ($pconfig['enable']) echo "checked=\"checked\""; ?> onclick="enable_change(false)" /> <option value="<?=$sip['value'];?>" <?=!link_interface_to_bridge($sip['value']) && ($sip['value'] == $pconfig['sourceip']) ? "selected=\"selected\"" : "";?>>
<strong><?=gettext("Send log messages to remote syslog server");?></strong></td> <?=htmlspecialchars($sip['name']);?>
</tr> </option>
<tr> <?php
<td width="22%" valign="top" class="vncell"><?=gettext("Remote Syslog Servers");?></td> endforeach; ?>
<td width="78%" class="vtable"> </select>
<table summary="remtote syslog servers"> <div class="hidden" for="help_for_sourceip">
<tr> <?= gettext("This option will allow the logging daemon to bind to a single IP address, rather than all IP addresses."); ?>
<td><?=gettext("Server") . " 1";?></td> <?= gettext("If you pick a single IP, remote syslog severs must all be of that IP type. If you wish to mix IPv4 and IPv6 remote syslog servers, you must bind to all interfaces."); ?>
<td><input name="remoteserver" id="remoteserver" type="text" class="form-control host" size="20" value="<?=htmlspecialchars($pconfig['remoteserver']);?>" /></td> <br /><br />
</tr> <?= gettext("NOTE: If an IP address cannot be located on the chosen interface, the daemon will bind to all addresses."); ?>
<tr> </div>
<td><?=gettext("Server") . " 2";?></td> </td>
<td><input name="remoteserver2" id="remoteserver2" type="text" class="form-control host" size="20" value="<?=htmlspecialchars($pconfig['remoteserver2']);?>" /></td> </tr>
</tr> <tr>
<tr> <td><a id="help_for_ipproto" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("IP Protocol"); ?></td>
<td><?=gettext("Server") . " 3";?></td> <td>
<td><input name="remoteserver3" id="remoteserver3" type="text" class="form-control host" size="20" value="<?=htmlspecialchars($pconfig['remoteserver3']);?>" /></td> <select name="ipproto" class="form-control">
</tr> <option value="ipv4" <?=$ipproto == "ipv4" ? 'selected="selected"' : "";?>><?=gettext("IPv4");?></option>
<tr> <option value="ipv6" <?=$ipproto == "ipv6" ? 'selected="selected"' : "";?>><?=gettext("IPv6");?></option>
<td>&nbsp;</td> </select>
<td><?=gettext("IP addresses of remote syslog servers, or an IP:port.");?></td> <div class="hidden" for="help_for_ipproto">
</tr> <?= gettext("This option is only used when a non-default address is chosen as the source above. This option only expresses a preference; If an IP address of the selected type is not found on the chosen interface, the other type will be tried."); ?>
</table> </div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Remote Syslog Contents");?></td> <td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Enable Remote Logging");?></td>
<td width="78%" class="vtable"> <td>
<input name="logall" id="logall" type="checkbox" value="yes" <?php if ($pconfig['logall']) echo "checked=\"checked\""; ?> onclick="check_everything();" /> <input name="enable" type="checkbox" id="enable" value="yes" <?= !empty($pconfig['enable']) ? "checked=\"checked\"" :""; ?> onclick="enable_change(false)" />
<?=gettext("Everything");?><br /><br /> <strong><?=gettext("Send log messages to remote syslog server");?></strong>
<input name="system" id="system" type="checkbox" value="yes" onclick="enable_change(false)" <?php if ($pconfig['system']) echo "checked=\"checked\""; ?> /> </td>
<?=gettext("System events");?><br /> </tr>
<input name="filter" id="filter" type="checkbox" value="yes" <?php if ($pconfig['filter']) echo "checked=\"checked\""; ?> /> <tr>
<?=gettext("Firewall events");?><br /> <td><a id="help_for_remoteserver" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Remote Syslog Servers");?></td>
<input name="dhcp" id="dhcp" type="checkbox" value="yes" <?php if ($pconfig['dhcp']) echo "checked=\"checked\""; ?> /> <td>
<?=gettext("DHCP service events");?><br /> <table class="table table-condensed">
<input name="portalauth" id="portalauth" type="checkbox" value="yes" <?php if ($pconfig['portalauth']) echo "checked=\"checked\""; ?> /> <tr>
<?=gettext("Portal Auth events");?><br /> <td><?=gettext("Server") . " 1";?></td>
<input name="vpn" id="vpn" type="checkbox" value="yes" <?php if ($pconfig['vpn']) echo "checked=\"checked\""; ?> /> <td><input name="remoteserver" id="remoteserver" type="text" class="form-control host" size="20" value="<?=htmlspecialchars($pconfig['remoteserver']);?>" /></td>
<?=gettext("VPN (PPTP, IPsec, OpenVPN) events");?><br /> </tr>
<input name="apinger" id="apinger" type="checkbox" value="yes" <?php if ($pconfig['apinger']) echo "checked=\"checked\""; ?> /> <tr>
<?=gettext("Gateway Monitor events");?><br /> <td><?=gettext("Server") . " 2";?></td>
<input name="relayd" id="relayd" type="checkbox" value="yes" <?php if ($pconfig['relayd']) echo "checked=\"checked\""; ?> /> <td><input name="remoteserver2" id="remoteserver2" type="text" class="form-control host" size="20" value="<?=htmlspecialchars($pconfig['remoteserver2']);?>" /></td>
<?=gettext("Server Load Balancer events");?><br /> </tr>
<input name="hostapd" id="hostapd" type="checkbox" value="yes" <?php if ($pconfig['hostapd']) echo "checked=\"checked\""; ?> /> <tr>
<?=gettext("Wireless events");?><br /> <td><?=gettext("Server") . " 3";?></td>
</td> <td><input name="remoteserver3" id="remoteserver3" type="text" class="form-control host" size="20" value="<?=htmlspecialchars($pconfig['remoteserver3']);?>" /></td>
</tr> </tr>
<tr> </table>
<td width="22%" valign="top">&nbsp;</td> <div class="hidden" for="help_for_remoteserver">
<td width="78%"> <input name="Submit" type="submit" class="btn btn-primary" value="<?=gettext("Save"); ?>" onclick="enable_change(true)" /> <?=gettext("IP addresses of remote syslog servers, or an IP:port.");?>
</td> </div>
</tr> </td>
<tr> </tr>
<td width="22%" height="53" valign="top">&nbsp;</td> <tr>
<td width="78%"><strong><span class="red"><?=gettext("Note:")?></span></strong><br /> <td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Remote Syslog Contents");?></td>
<?=gettext("syslog sends UDP datagrams to port 514 on the specified " . <td>
"remote syslog server, unless another port is specified. Be sure to set syslogd on the " . <input name="logall" id="logall" type="checkbox" value="yes" <?=!empty($pconfig['logall']) ? "checked=\"checked\"" : ""; ?> onclick="check_everything();" />
"remote server to accept syslog messages from");?> <?=$g['product_name']?>. <?=gettext("Everything");?><br /><br />
</td> <input name="system" id="system" type="checkbox" value="yes" onclick="enable_change(false)" <?=!empty($pconfig['system']) ? "checked=\"checked\"" : ""; ?> />
</tr> <?=gettext("System events");?><br />
</table> <input name="filter" id="filter" type="checkbox" value="yes" <?=!empty($pconfig['filter']) ? "checked=\"checked\"" : ""; ?> />
</div> <?=gettext("Firewall events");?><br />
</div> <input name="dhcp" id="dhcp" type="checkbox" value="yes" <?=!empty($pconfig['dhcp']) ? "checked=\"checked\"" : ""; ?> />
</form> <?=gettext("DHCP service events");?><br />
</section> <input name="portalauth" id="portalauth" type="checkbox" value="yes" <?=!empty($pconfig['portalauth']) ? "checked=\"checked\"" : ""; ?> />
</div> <?=gettext("Portal Auth events");?><br />
</div> <input name="vpn" id="vpn" type="checkbox" value="yes" <?=!empty($pconfig['vpn']) ? "checked=\"checked\"" : ""; ?> />
</section> <?=gettext("VPN (PPTP, IPsec, OpenVPN) events");?><br />
<script type="text/javascript"> <input name="apinger" id="apinger" type="checkbox" value="yes" <?=!empty($pconfig['apinger']) ? "checked=\"checked\"" : ""; ?> />
//<![CDATA[ <?=gettext("Gateway Monitor events");?><br />
enable_change(false); <input name="relayd" id="relayd" type="checkbox" value="yes" <?=!empty($pconfig['relayd']) ? "checked=\"checked\"" : ""; ?> />
//]]> <?=gettext("Server Load Balancer events");?><br />
</script> <input name="hostapd" id="hostapd" type="checkbox" value="yes" <?=!empty($pconfig['hostapd']) ? "checked=\"checked\"" : ""; ?> />
<?=gettext("Wireless events");?><br />
</td>
</tr>
<tr>
<td></td>
<td> <input name="Submit" type="submit" class="btn btn-primary" value="<?=gettext("Save"); ?>" onclick="enable_change(true)" />
</td>
</tr>
<tr>
<td colspan="2"><strong><span class="text-danger"><?=gettext("Note:")?></span></strong><br />
<?=gettext("syslog sends UDP datagrams to port 514 on the specified " .
"remote syslog server, unless another port is specified. Be sure to set syslogd on the " .
"remote server to accept syslog messages from");?> <?=$g['product_name']?>.
</td>
</tr>
</table>
</div>
</div>
</form>
</section>
</div>
</div>
</section>
<?php include("foot.inc"); ?> <?php include("foot.inc"); ?>
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