Copyright (C) 2013-2015 Electric Sheep Fencing, LP 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. */ require("guiconfig.inc"); require("unbound.inc"); if (isset($_POST['referer'])) { $referer = $_POST['referer']; } else { $referer = (isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '/services_unbound_acls.php'); } if (!is_array($config['unbound']['acls'])) { $config['unbound']['acls'] = array(); } $a_acls = &$config['unbound']['acls']; $id = $_GET['id']; if (isset($_POST['aclid'])) { $id = $_POST['aclid']; } if (!empty($id) && !is_numeric($id)) { pfSenseHeader("services_unbound_acls.php"); exit; } $act = $_GET['act']; if (isset($_POST['act'])) { $act = $_POST['act']; } if ($act == "del") { if (!$a_acls[$id]) { pfSenseHeader("services_unbound_acls.php"); exit; } unset($a_acls[$id]); write_config(); mark_subsystem_dirty('unbound'); } if ($act == "new") { $id = unbound_get_next_id(); } if ($act == "edit") { if (isset($id) && $a_acls[$id]) { $pconfig = $a_acls[$id]; $networkacl = $a_acls[$id]['row']; } } if ($_POST) { unset($input_errors); $pconfig = $_POST; if ($_POST['apply']) { $retval = services_unbound_configure(); $savemsg = get_std_save_message($retval); if ($retval == 0) { clear_subsystem_dirty('unbound'); } } else { // input validation - only allow 50 entries in a single ACL for ($x = 0; $x < 50; $x++) { if (isset($pconfig["acl_network{$x}"])) { $networkacl[$x] = array(); $networkacl[$x]['acl_network'] = $pconfig["acl_network{$x}"]; $networkacl[$x]['mask'] = $pconfig["mask{$x}"]; $networkacl[$x]['description'] = $pconfig["description{$x}"]; if (!is_ipaddr($networkacl[$x]['acl_network'])) { $input_errors[] = gettext("You must enter a valid IP address for each row under Networks."); } if (is_ipaddr($networkacl[$x]['acl_network'])) { if (!is_subnet($networkacl[$x]['acl_network']."/".$networkacl[$x]['mask'])) { $input_errors[] = gettext("You must enter a valid IPv4 netmask for each IPv4 row under Networks."); } } else if (function_exists("is_ipaddrv6")) { if (!is_ipaddrv6($networkacl[$x]['acl_network'])) { $input_errors[] = gettext("You must enter a valid IPv6 address for {$networkacl[$x]['acl_network']}."); } else if (!is_subnetv6($networkacl[$x]['acl_network']."/".$networkacl[$x]['mask'])) { $input_errors[] = gettext("You must enter a valid IPv6 netmask for each IPv6 row under Networks."); } } else { $input_errors[] = gettext("You must enter a valid IP address for each row under Networks."); } } else if (isset($networkacl[$x])) { unset($networkacl[$x]); } } if (!$input_errors) { if ($pconfig['Submit'] == gettext("Save")) { $acl_entry = array(); $acl_entry['aclid'] = $pconfig['aclid']; $acl_entry['aclname'] = $pconfig['aclname']; $acl_entry['aclaction'] = $pconfig['aclaction']; $acl_entry['description'] = $pconfig['description']; $acl_entry['aclid'] = $pconfig['aclid']; $acl_entry['row'] = array(); foreach ($networkacl as $acl) { $acl_entry['row'][] = $acl; } if (isset($id) && $a_acls[$id]) { $a_acls[$id] = $acl_entry; } else { $a_acls[] = $acl_entry; } mark_subsystem_dirty("unbound"); write_config(); pfSenseHeader("/services_unbound_acls.php"); exit; } } } } $closehead = false; $pgtitle = "Services: DNS Resolver: Access Lists"; $shortcut_section = "resolver"; include("head.inc"); ?>

" . gettext("You must apply the changes in order for them to take effect."));?>



Deny: This action stops queries from hosts within the netblock defined below.");?>
Refuse: This action also stops queries from hosts within the netblock defined below, but sends a DNS rcode REFUSED error message back to the client.");?>
Allow: This action allows queries from hosts within the netblock defined below.");?>
Allow Snoop: This action allows recursive and nonrecursive access from hosts within the netblock defined below. Used for cache snooping and ideally should only be configured for your administrative host.");?>
delete
" />

 
   
  " /> " onclick="window.location.href=''" />
 
 
  " border="0" alt="add" />

" width="17" height="17" border="0" alt="edit" /> ')"> " width="17" height="17" border="0" alt="delete" />