#!/usr/local/bin/php . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ $pgtitle = array("Diagnostics", "Logs"); require("guiconfig.inc"); $pconfig['reverse'] = isset($config['syslog']['reverse']); $pconfig['nentries'] = $config['syslog']['nentries']; $pconfig['remoteserver'] = $config['syslog']['remoteserver']; $pconfig['remoteport'] = $config['syslog']['remoteport']; $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['system'] = isset($config['syslog']['system']); $pconfig['enable'] = isset($config['syslog']['enable']); $pconfig['logdefaultblock'] = !isset($config['syslog']['nologdefaultblock']); $pconfig['rawfilter'] = isset($config['syslog']['rawfilter']); $pconfig['resolve'] = isset($config['syslog']['resolve']); if (!$pconfig['nentries']) $pconfig['nentries'] = 50; if ($_POST) { unset($input_errors); $pconfig = $_POST; /* input validation */ if ($_POST['enable'] && !is_ipaddr($_POST['remoteserver'])) { $input_errors[] = "A valid IP address must be specified."; } if ($_POST['remoteport'] && !is_port($_POST['remoteport'])) { $input_errors[] = "A valid port number must be specified."; } if (($_POST['nentries'] < 5) || ($_POST['nentries'] > 1000)) { $input_errors[] = "Number of log entries to show must be between 5 and 1000."; } if (!$input_errors) { $config['syslog']['reverse'] = $_POST['reverse'] ? true : false; $config['syslog']['nentries'] = (int)$_POST['nentries']; $config['syslog']['remoteserver'] = $_POST['remoteserver']; $config['syslog']['remoteport'] = $_POST['remoteport']; $config['syslog']['filter'] = $_POST['filter'] ? true : false; $config['syslog']['dhcp'] = $_POST['dhcp'] ? true : false; $config['syslog']['portalauth'] = $_POST['portalauth'] ? true : false; $config['syslog']['vpn'] = $_POST['vpn'] ? true : false; $config['syslog']['system'] = $_POST['system'] ? true : false; $config['syslog']['enable'] = $_POST['enable'] ? true : false; $oldnologdefaultblock = isset($config['syslog']['nologdefaultblock']); $config['syslog']['nologdefaultblock'] = $_POST['logdefaultblock'] ? false : true; $config['syslog']['rawfilter'] = $_POST['rawfilter'] ? true : false; $config['syslog']['resolve'] = $_POST['resolve'] ? true : false; write_config(); $retval = 0; if (!file_exists($d_sysrebootreqd_path)) { config_lock(); $retval = system_syslogd_start(); if ($oldnologdefaultblock !== isset($config['syslog']['nologdefaultblock'])) $retval |= filter_configure(); config_unlock(); } $savemsg = get_std_save_message($retval); } } ?>
    'diag_logs.php', 'Firewall' => 'diag_logs_filter.php', 'DHCP' => 'diag_logs_dhcp.php', 'Captive portal' => 'diag_logs_portal.php', 'PPTP VPN' => 'diag_logs_vpn.php', 'Settings' => 'diag_logs_settings.php'); dynamic_tab_menu($tabs); ?>
  > Show log entries in reverse order (newest entries on top)
  Number of log entries to show:
  > Log packets blocked by the default rule
Hint: packets that are blocked by the implicit default block rule will not be logged anymore if you uncheck this option. Per-rule logging options are not affected.
  > Show raw filter logs
Hint: If this is checked, filter logs are shown as generated by the packet filter, without any formatting. This will reveal more detailed information.
  > Resolve IP addresses to hostnames
Hint: If this is checked, IP addresses in firewall logs are resolved to real hostnames where possible.
Warning: This can cause a huge delay in loading the firewall log page!
  onClick="enable_change(false)"> Enable syslog'ing to remote syslog server
Remote syslog server
IP address:  
Port:   (optional; default = 514)
> system events
> firewall events
> DHCP service events
> Captive portal
> PPTP VPN events
 
  Note:
syslog sends UDP datagrams to port 514 on the specified remote syslog server. Be sure to set syslogd on the remote server to accept syslog messages from m0n0wall.