aboutsummaryrefslogtreecommitdiffstats
path: root/config/unbound
diff options
context:
space:
mode:
authorWarren Baker <warren@decoy.co.za>2013-08-27 14:20:33 +0200
committerWarren Baker <warren@decoy.co.za>2013-08-27 14:20:33 +0200
commitf560df8e347ddfef3345517fd3c3cc2fbb7b40f5 (patch)
tree5da731d7df841919751eecb5263d950d18db8c83 /config/unbound
parenta149c50a363002aedd8878a1467fade4009fb73e (diff)
downloadpfsense-packages-f560df8e347ddfef3345517fd3c3cc2fbb7b40f5.tar.gz
pfsense-packages-f560df8e347ddfef3345517fd3c3cc2fbb7b40f5.tar.bz2
pfsense-packages-f560df8e347ddfef3345517fd3c3cc2fbb7b40f5.zip
Make sure reverse entries are correctly added so that DNS Rebinding does not block reverse DNS records
Diffstat (limited to 'config/unbound')
-rw-r--r--config/unbound/unbound.inc18
1 files changed, 10 insertions, 8 deletions
diff --git a/config/unbound/unbound.inc b/config/unbound/unbound.inc
index e53168eb..e9528881 100644
--- a/config/unbound/unbound.inc
+++ b/config/unbound/unbound.inc
@@ -1,6 +1,6 @@
<?php
/* unbound.inc
- (C)2010 Warren Baker (warren@decoy.co.za)
+ (C)2013 Warren Baker (warren@decoy.co.za)
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
@@ -987,23 +987,25 @@ function unbound_add_domain_overrides($pvt=false) {
$result = array();
foreach($sorted_domains as $domain) {
$domain_key = current($domain);
- if(!isset($result[$domain_key])) {
+ if (!isset($result[$domain_key]))
$result[$domain_key] = array();
- }
$result[$domain_key][] = $domain['ip'];
}
$domain_entries = "";
foreach($result as $domain=>$ips) {
- if($pvt == true) {
- $domain_entries .= "private-domain: \"$domain\"\n";
- $domain_entries .= "domain-insecure: \"$domain\"\n";
+ if ($pvt == true) {
+ if (strpos($domain, "in-addr.arpa") !== false)
+ $domain_entries .= "local-zone: \"$domain\" nodefault\n";
+ else
+ $domain_entries .= "private-domain: \"$domain\"\n";
+ if (isset($config['installedpackages']['unbound']['config'][0]['dnssec_status']))
+ $domain_entries .= "domain-insecure: \"$domain\"\n";
} else {
$domain_entries .= "stub-zone:\n";
$domain_entries .= "\tname: \"$domain\"\n";
- foreach($ips as $ip) {
+ foreach($ips as $ip)
$domain_entries .= "\tstub-addr: $ip\n";
- }
$domain_entries .= "\tstub-prime: no\n";
}
}