aboutsummaryrefslogtreecommitdiffstats
path: root/packages/tinydns
diff options
context:
space:
mode:
authorGoffredo Andreone <gandreone@pfsense.org>2007-02-23 03:09:23 +0000
committerGoffredo Andreone <gandreone@pfsense.org>2007-02-23 03:09:23 +0000
commit1c91dfa91331efdb69886985ada7a8b6afecd39c (patch)
tree51e5e57d3ca7832b47b9f885dd0111e447de59e2 /packages/tinydns
parentcc4c02699d69544dc8aa8b6bc5067e0ea8406f39 (diff)
downloadpfsense-packages-1c91dfa91331efdb69886985ada7a8b6afecd39c.tar.gz
pfsense-packages-1c91dfa91331efdb69886985ada7a8b6afecd39c.tar.bz2
pfsense-packages-1c91dfa91331efdb69886985ada7a8b6afecd39c.zip
CHange the Binding of tinyDNS so that Carp IP is no longer required.
Diffstat (limited to 'packages/tinydns')
-rw-r--r--packages/tinydns/tinydns.inc23
-rw-r--r--packages/tinydns/tinydns.xml2
2 files changed, 13 insertions, 12 deletions
diff --git a/packages/tinydns/tinydns.inc b/packages/tinydns/tinydns.inc
index 8b5fc086..302f76f5 100644
--- a/packages/tinydns/tinydns.inc
+++ b/packages/tinydns/tinydns.inc
@@ -142,6 +142,8 @@ function tinydns_custom_php_changeip_command() {
$dnsuserip = $arr[0];
}
$dnsserverip = $config['installedpackages']['tinydns']['config'][0]['ipaddress'];
+ if($config['installedpackages']['tinydns']['config'][0]['enableforwarding'])
+ $dnsserverip = "127.0.0.1";
$updatecron = $config['installedpackages']['tinydns']['config'][0]['updatecron'];
/* setup daemon tools service area */
@@ -155,8 +157,9 @@ function tinydns_custom_php_changeip_command() {
exec("echo {$dnsserverip} > /etc/tinydns/env/IP");
exec("/usr/bin/killall -9 tinydns");
- if($config['installedpackages']['tinydns']['config'][0]['enableforwarding']) {
- if(!is_dir("/service/dnscache")) {
+ if($config['installedpackages']['tinydns']['config'][0]['enableforwarding'])
+ {
+ if(!is_dir("/service/dnscache")){
exec("/usr/sbin/pw useradd Gdnscache");
exec("/usr/local/bin/dnscache-conf Gdnscache Gdnslog /etc/dnscache {$dnscacheip}");
exec("/bin/ln -s /etc/dnscache /service/");
@@ -171,13 +174,12 @@ function tinydns_custom_php_changeip_command() {
exec("echo domain {$config['system']['domain']} > /var/etc/resolv.conf");
exec("echo nameserver {$dnscacheip} >> /var/etc/resolv.conf");
exec("/usr/bin/killall -9 dnscache");
- } else {
- if(file_exists("/var/etc/resolv.conf.original"))
- exec("/bin/cp /var/etc/resolv.conf.original /var/etc/resolv.conf");
- if(is_dir("/etc/dnscache")) {
- exec("echo > /etc/dnscache/env/IP");
- exec("/usr/bin/killall -9 dnscache");
- }
+ }
+ else
+ {
+ exec("/bin/cp /var/etc/resolv.conf.original /var/etc/resolv.conf");
+ exec("echo > /etc/dnscache/env/IP");
+ exec("/usr/bin/killall -9 dnscache");
}
conf_mount_ro();
filter_configure();
@@ -689,7 +691,6 @@ function tinydns_dnscache_forwarding_servers() {
fclose($fr);
}
-/* This rouine creates the files required by DNScache to send DNS requests to the Forwarders and TinyDNS Server*/
function tinydns_create_soa_domain_list($dnsserverip){
if(file_exists("/service/tinydns/root/data"))
$tinydns_data = file_get_contents("/service/tinydns/root/data");
@@ -719,7 +720,7 @@ function tinydns_create_soa_domain_list($dnsserverip){
}
}
-/* This function will be replaced by an auto detect DNS cache servers routine */
+/* This function is not called */
/* At the moment ther is no tagging of DNSroute to a WAN port. It needs to be added */
function tinydns_register_forwarding_servers() {
$fr = fopen("/var/etc/resolv.conf", "r");
diff --git a/packages/tinydns/tinydns.xml b/packages/tinydns/tinydns.xml
index dbd6d20d..cfe3524e 100644
--- a/packages/tinydns/tinydns.xml
+++ b/packages/tinydns/tinydns.xml
@@ -140,7 +140,7 @@
<field>
<fieldname>ipaddress</fieldname>
<fielddescr>IP Address</fielddescr>
- <description>Bind TinyDNS to this IP address. Create a Virtual Carp IP on the LAN segment when Enable DNS Forwarders is set.</description>
+ <description>Bind TinyDNS to this IP address. Enable DNS Forwarders bind it to the LAN IP.</description>
<type>input</type>
</field>
<field>