loosecannon
Senior Member
- Joined
- Jul 27, 2004
- Messages
- 731
i have always run my own DNS server on my gateway mostly to be able to fiddle DNS as i wish now our friends at sentech and there useless international bandwidth cause me dns errors on regular basis [this morning i was down till +/-12]....
what i have done is in ip-up got it to load sentechs DNS servers [ala usepeerdns] as forwarders in my named.conf this has eliminated some problems already but is it a good thing to do ... are there servers good caches ... im worried that if they dont know how to set up a netcache [with web interface] can they run DNS ??
here is the snipet out of ip-up for those intrested
if [ "$USEPEERDNS" == "1" ] && [ "$DNS1" ];then
if [ "$DNS2" ];then
FWD="${DNS1};${DNS2}";
else
FWD=${DNS1}
fi;
sed -e "s/^#FWD/ forwarders \{$FWD;\};/" /etc/named.conf.orig > /etc/named.conf
fi;
rndc reload
what i have done is in ip-up got it to load sentechs DNS servers [ala usepeerdns] as forwarders in my named.conf this has eliminated some problems already but is it a good thing to do ... are there servers good caches ... im worried that if they dont know how to set up a netcache [with web interface] can they run DNS ??
here is the snipet out of ip-up for those intrested
if [ "$USEPEERDNS" == "1" ] && [ "$DNS1" ];then
if [ "$DNS2" ];then
FWD="${DNS1};${DNS2}";
else
FWD=${DNS1}
fi;
sed -e "s/^#FWD/ forwarders \{$FWD;\};/" /etc/named.conf.orig > /etc/named.conf
fi;
rndc reload