<div dir="ltr"><div>I forgot to mention, this is actually the case<br><br></div>The proxy has a different IP on each network.<br></div><div class="gmail_extra"><br><div class="gmail_quote">2015-01-04 13:00 GMT+01:00 <span dir="ltr"><<a href="mailto:bind-users-request@lists.isc.org" target="_blank">bind-users-request@lists.isc.org</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Send bind-users mailing list submissions to<br>
<a href="mailto:bind-users@lists.isc.org">bind-users@lists.isc.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
<a href="https://lists.isc.org/mailman/listinfo/bind-users" target="_blank">https://lists.isc.org/mailman/listinfo/bind-users</a><br>
or, via email, send a message with subject or body 'help' to<br>
<a href="mailto:bind-users-request@lists.isc.org">bind-users-request@lists.isc.org</a><br>
<br>
You can reach the person managing the list at<br>
<a href="mailto:bind-users-owner@lists.isc.org">bind-users-owner@lists.isc.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than "Re: Contents of bind-users digest..."<br>
<br>
<br>
Today's Topics:<br>
<br>
1. Re: BIND9 Return different IP address based on subnet<br>
(Christian Kette)<br>
2. Re: BIND9 Return different IP address based on subnet<br>
(Matus UHLAR - fantomas)<br>
3. RE: can't-resolve (Mohammed Ejaz)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Sat, 3 Jan 2015 19:24:47 +0100<br>
From: Christian Kette <<a href="mailto:chriswaeldchen@outlook.de">chriswaeldchen@outlook.de</a>><br>
To: "Jeremy C. Reed" <<a href="mailto:jreed@isc.org">jreed@isc.org</a>>, <a href="mailto:bind-users@lists.isc.org">bind-users@lists.isc.org</a><br>
Subject: Re: BIND9 Return different IP address based on subnet<br>
Message-ID: <BLU437-SMTP59E4422D3E2444EAC7B263A45A0@phx.gbl><br>
Content-Type: text/plain; charset="utf-8"<br>
<br>
I have found a workaround.<br>
I defined a different zone for every network<br>
<br>
My config files are now<br>
<br>
/tec/bind/named.conf<br>
<br>
include "/etc/bind/named.conf.options";<br>
include "/etc/bind/named.conf.local";<br>
<br>
/etc/bind/named.conf.local<br>
<br>
view "local" {<br>
match-clients { localhost; };<br>
zone "home.lan" IN {<br>
type master;<br>
file "/etc/bind/db.home.lan";<br>
};<br>
};<br>
view "ext" {<br>
match-clients { <a href="http://192.168.2.0/24;" target="_blank">192.168.2.0/24;</a>};<br>
zone "home2.lan" IN {<br>
type master;<br>
file "/etc/bind/db.rev.2.168.192.in-addr.arpa";<br>
};<br>
};<br>
view "wlan0" {<br>
match-clients { <a href="http://192.168.3.0/24;" target="_blank">192.168.3.0/24;</a>};<br>
zone "home3.lan" IN {<br>
type master;<br>
file "/etc/bind/db.rev.3.168.192.in-addr.arpa";<br>
};<br>
};<br>
view "wlan00" {<br>
match-clients {<a href="http://192.168.4.0/24;" target="_blank">192.168.4.0/24;</a>};<br>
zone "home4.lan" IN {<br>
type master;<br>
file "/etc/bind/db.rev.4.168.192.in-addr.arpa";<br>
};<br>
};<br>
view "wlan01" {<br>
match-clients {<a href="http://192.168.5.0/24;" target="_blank">192.168.5.0/24;</a>};<br>
zone "home5.lan" IN {<br>
type master;<br>
file "/etc/bind/db.rev.5.168.192.in-addr.arpa";<br>
};<br>
};<br>
view "int" {<br>
match-clients {<a href="http://192.168.10.0/24;" target="_blank">192.168.10.0/24;</a>};<br>
zone "home10.lan" IN {<br>
type master;<br>
file "/etc/bind/db.rev.10.168.192.in-addr.arpa";<br>
};<br>
};<br>
<br>
/etc/bind/db.rev.10.168.192.in-addr.arpa<br>
<br>
; IP Address-to-Host DNS Pointers for the 192.168.10 subnet<br>
home10.lan. IN SOA DEV.home10.lan. hostmaster.home10.lan. (<br>
2013120101 ; serial<br>
8H ; refresh<br>
4H ; retry<br>
4W ; expire<br>
1D ; minimum<br>
)<br>
; define the authoritative name server<br>
home10.lan. IN NS DEV.home10.lan.<br>
home10.lan. IN MX 10 DEV.home10.lan.<br>
<br>
localhost IN A 127.0.0.1<br>
DEV IN A 192.168.10.1<br>
router IN A 192.168.10.1<br>
proxy IN CNAME DEV.home10.lan.<br>
wpad IN A 192.168.10.1<br>
<br>
<br>
<br>
2014-12-28 19:59 GMT+01:00 <<a href="mailto:chriswaeldchen@outlook.de">chriswaeldchen@outlook.de</a>>:<br>
<br>
> Thank you for the helpful answer.<br>
> I changed the file /etc/bind/named.conf.local to<br>
><br>
> view "local" {<br>
> match-clients { 127.0.0.1; };<br>
> zone "home.lan" IN {<br>
> type master;<br>
> file "/etc/bind/db.home.lan";<br>
> };<br>
> };<br>
> view "ext" {<br>
> match-clients { <a href="http://192.168.2.0/24;" target="_blank">192.168.2.0/24;</a>};<br>
> zone "2.168.192.in-addr.arpa" {<br>
> type master;<br>
> file "/etc/bind/db.rev.2.168.192.in-addr.arpa";<br>
> };<br>
> };<br>
> view "wlan0" {<br>
> match-clients { <a href="http://192.168.3.0/24;" target="_blank">192.168.3.0/24;</a>};<br>
> zone "3.168.192.in-addr.arpa" {<br>
> type master;<br>
> file "/etc/bind/db.rev.3.168.192.in-addr.arpa";<br>
> };<br>
> };<br>
> view "wlan00" {<br>
> match-clients {<a href="http://192.168.4.0/24;" target="_blank">192.168.4.0/24;</a>};<br>
> zone "4.168.192.in-addr.arpa" {<br>
> type master;<br>
> file "/etc/bind/db.rev.4.168.192.in-addr.arpa";<br>
> };<br>
> };<br>
> view "wlan01" {<br>
> match-clients {<a href="http://192.168.5.0/24;" target="_blank">192.168.5.0/24;</a>};<br>
> zone "5.168.192.in-addr.arpa" {<br>
> type master;<br>
> file "/etc/bind/db.rev.5.168.192.in-addr.arpa";<br>
> };<br>
> };<br>
> view "int" {<br>
> match-clients {<a href="http://192.168.10.0/24;" target="_blank">192.168.10.0/24;</a>};<br>
> zone "10.168.192.in-addr.arpa" {<br>
> type master;<br>
> file "/etc/bind/db.rev.10.168.192.in-addr.arpa";<br>
> };<br>
> };<br>
><br>
><br>
> But now I get Non-existent domain error (on the raspberry machine) for<br>
> - nslookup localhost<br>
> - nslookup DEV.home.lan<br>
><br>
> I don't understand why it can't find neither the localhost nor the<br>
> DEV.home.lan entry in /etc/bind/db.home.lan<br>
><br>
><br>
><br>
> 2014-12-27 22:57 GMT+01:00 Jeremy C. Reed <<a href="mailto:jreed@isc.org">jreed@isc.org</a>>:<br>
><br>
>> On Sat, 27 Dec 2014, Christian Kette wrote:<br>
>><br>
>> > I have some questions. Q1: Why do I get the IP address "192.168.2.100"<br>
>> for<br>
>> > "DEV.home.lan" from both the <a href="http://192.168.2.0/24" target="_blank">192.168.2.0/24</a> and the <a href="http://192.168.10.0/24" target="_blank">192.168.10.0/24</a><br>
>> network?<br>
>><br>
>> The view that matches first is used.<br>
>><br>
>> > #include "/etc/bind/named.conf.default-zones";<br>
>> ...<br>
>> > Q2: What exactly are these zones in the file for? Do I need them?<br>
>><br>
>> You didn't include the file in the email. But I found a copy via google<br>
>> which may be the same. You probably don't need it. (For example, the<br>
>> priming hints are builtin to named.)<br>
>><br>
>><br>
><br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <<a href="https://lists.isc.org/pipermail/bind-users/attachments/20150103/08b102ce/attachment-0001.html" target="_blank">https://lists.isc.org/pipermail/bind-users/attachments/20150103/08b102ce/attachment-0001.html</a>><br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Sat, 3 Jan 2015 23:53:23 +0100<br>
From: Matus UHLAR - fantomas <<a href="mailto:uhlar@fantomas.sk">uhlar@fantomas.sk</a>><br>
To: <a href="mailto:bind-users@lists.isc.org">bind-users@lists.isc.org</a><br>
Subject: Re: BIND9 Return different IP address based on subnet<br>
Message-ID: <<a href="mailto:20150103225323.GA32310@fantomas.sk">20150103225323.GA32310@fantomas.sk</a>><br>
Content-Type: text/plain; charset=us-ascii; format=flowed<br>
<br>
On 03.01.15 19:24, Christian Kette wrote:<br>
>I have found a workaround.<br>
>I defined a different zone for every network<br>
<br>
I repeat: you don't need views when having different zones.<br>
<br>
You would need views if you had the same zone with different content.<br>
<br>
--<br>
Matus UHLAR - fantomas, <a href="mailto:uhlar@fantomas.sk">uhlar@fantomas.sk</a> ; <a href="http://www.fantomas.sk/" target="_blank">http://www.fantomas.sk/</a><br>
Warning: I wish NOT to receive e-mail advertising to this address.<br>
Varovanie: na tuto adresu chcem NEDOSTAVAT akukolvek reklamnu postu.<br>
The early bird may get the worm, but the second mouse gets the cheese.<br>
<br>
<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Sun, 4 Jan 2015 08:43:30 +0300<br>
From: "Mohammed Ejaz" <<a href="mailto:mejaz@cyberia.net.sa">mejaz@cyberia.net.sa</a>><br>
To: "'Warren Kumari'" <<a href="mailto:warren@kumari.net">warren@kumari.net</a>>, "'Barry Margolin'"<br>
<<a href="mailto:barmar@alum.mit.edu">barmar@alum.mit.edu</a>><br>
Cc: <a href="mailto:comp-protocols-dns-bind@isc.org">comp-protocols-dns-bind@isc.org</a><br>
Subject: RE: can't-resolve<br>
Message-ID: <0e0701d027e1$611d4f20$2357ed60$@<a href="http://cyberia.net.sa" target="_blank">cyberia.net.sa</a>><br>
Content-Type: text/plain; charset="us-ascii"<br>
<br>
<br>
Hello, all.<br>
<br>
now everything is fine once the port > 1024 opened from the network<br>
firewall. so it means not only 53 port requires to be open.<br>
<br>
<br>
<br>
-----Original Message-----<br>
From: <a href="mailto:bind-users-bounces@lists.isc.org">bind-users-bounces@lists.isc.org</a><br>
[mailto:<a href="mailto:bind-users-bounces@lists.isc.org">bind-users-bounces@lists.isc.org</a>] On Behalf Of Ejaz<br>
Sent: Sunday, December 28, 2014 11:10 AM<br>
To: 'Warren Kumari'; 'Barry Margolin'<br>
Cc: <a href="mailto:comp-protocols-dns-bind@isc.org">comp-protocols-dns-bind@isc.org</a><br>
Subject: RE: can't-resolve<br>
<br>
Thanks for the suggestion<br>
<br>
I am sure No firewall at all. Also See I now I have reassigned the my<br>
previous IP which is 212.119.64.12, after that everything is fine. It<br>
wouldn't have worked with this IP if there is firewall on the box??<br>
<br>
Regards,<br>
Mohammed Ejaz<br>
CYBERIAR SAUDI ARABIA<br>
P.O.Box 301079, Riyadh 11372, Saudi Arabia<br>
Tel: <a href="tel:%2B966%2011%20464%207114%20Ext.%20140" value="+966114647114">+966 11 464 7114 Ext. 140</a><br>
Fax: <a href="tel:%2B966%2011%20465%204735" value="+966114654735">+966 11 465 4735</a><br>
<br>
-----Original Message-----<br>
From: <a href="mailto:bind-users-bounces@lists.isc.org">bind-users-bounces@lists.isc.org</a><br>
[mailto:<a href="mailto:bind-users-bounces@lists.isc.org">bind-users-bounces@lists.isc.org</a>] On Behalf Of Warren Kumari<br>
Sent: Saturday, December 27, 2014 2:27 AM<br>
To: Barry Margolin<br>
Cc: <a href="mailto:comp-protocols-dns-bind@isc.org">comp-protocols-dns-bind@isc.org</a><br>
Subject: Re: can't-resolve<br>
<br>
Also, from querying from the outside (with TCP):<br>
<br>
~# dig +tcp <a href="http://www.auth-servers.net" target="_blank">www.auth-servers.net</a> @<a href="http://212.119.64.228" target="_blank">212.119.64.228</a><br>
; <<>> DiG 9.10.1-P1 <<>> +tcp <a href="http://www.auth-servers.net" target="_blank">www.auth-servers.net</a> @<a href="http://212.119.64.228" target="_blank">212.119.64.228</a> ;;<br>
global options: +cmd ;; Got answer:<br>
;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 20716 ;; flags: qr rd<br>
ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 1<br>
<br>
;; OPT PSEUDOSECTION:<br>
; EDNS: version: 0, flags:; udp: 4096<br>
;; QUESTION SECTION:<br>
;<a href="http://www.auth-servers.net" target="_blank">www.auth-servers.net</a>. IN A<br>
<br>
;; Query time: 8260 msec<br>
;; SERVER: 212.119.64.228#53(212.119.64.228) ;; WHEN: Fri Dec 26 18:18:30<br>
EST 2014 ;; MSG SIZE rcvd: 49<br>
<br>
Then trying the same query a few seconds later:<br>
dig +tcp <a href="http://www.auth-servers.net" target="_blank">www.auth-servers.net</a> @<a href="http://212.119.64.228" target="_blank">212.119.64.228</a><br>
<br>
; <<>> DiG 9.10.1-P1 <<>> +tcp <a href="http://www.auth-servers.net" target="_blank">www.auth-servers.net</a> @<a href="http://212.119.64.228" target="_blank">212.119.64.228</a> ;;<br>
global options: +cmd ;; connection timed out; no servers could be reached<br>
<br>
This really looks like a firewall -- perhaps there is some firewall software<br>
on the box itself?<br>
<br>
W<br>
<br>
<br>
On Fri, Dec 26, 2014 at 6:17 PM, Warren Kumari <<a href="mailto:warren@kumari.net">warren@kumari.net</a>> wrote:<br>
> What OS is this machine running?<br>
><br>
> Interestingly enough, it is unpingable, and a quick nmap fingerprints<br>
> it<br>
as:<br>
> Running: Sun Solaris 8<br>
> OS CPE: cpe:/o:sun:sunos:5.8<br>
> OS details: Sun Solaris 8 (SPARC)<br>
><br>
> nmap could only find one open port (TCP 53 :-)) and so its<br>
> fingerprinting is unreliable, but it *does* look like you are behind a<br>
> firewall type devices.<br>
> It is unusual for machines themselves to not respond to pings.<br>
><br>
> fpdns says:<br>
> fingerprint (212.119.64.228, 212.119.64.228): ISC BIND 9.2.3rc1 --<br>
> 9.6.1-P1 [recursion enabled]<br>
><br>
><br>
><br>
> On Fri, Dec 26, 2014 at 5:55 PM, Barry Margolin <<a href="mailto:barmar@alum.mit.edu">barmar@alum.mit.edu</a>><br>
wrote:<br>
>> In article <<a href="mailto:mailman.1330.1419633581.26362.bind-users@lists.isc.org">mailman.1330.1419633581.26362.bind-users@lists.isc.org</a>>,<br>
>> "Ejaz" <<a href="mailto:mejaz@cyberia.net.sa">mejaz@cyberia.net.sa</a>> wrote:<br>
>><br>
>>> I am sure sir there is no firewall on in the server you can make<br>
>>> sure by telnet to the port 53 of this IP 212.119.64.228<br>
>><br>
>> That doesn't mean anything. The firewall may be blocking OUTGOING<br>
>> packets to port 53, or they're blocking the returning replies (which<br>
>> go to an ephemeral port).<br>
>><br>
>>><br>
>>><br>
>>> Regards,<br>
>>> Mohammed Ejaz<br>
>>> CYBERIAR SAUDI ARABIA<br>
>>> P.O.Box 301079, Riyadh 11372, Saudi Arabia<br>
>>> Tel: <a href="tel:%2B966%2011%20464%207114%20Ext.%20140" value="+966114647114">+966 11 464 7114 Ext. 140</a><br>
>>> Fax: <a href="tel:%2B966%2011%20465%204735" value="+966114654735">+966 11 465 4735</a><br>
>>><br>
>>> -----Original Message-----<br>
>>> From: <a href="mailto:bind-users-bounces@lists.isc.org">bind-users-bounces@lists.isc.org</a><br>
>>> [mailto:<a href="mailto:bind-users-bounces@lists.isc.org">bind-users-bounces@lists.isc.org</a>] On Behalf Of Matus UHLAR -<br>
>>> fantomas<br>
>>> Sent: Friday, December 26, 2014 7:35 PM<br>
>>> To: <a href="mailto:bind-users@lists.isc.org">bind-users@lists.isc.org</a><br>
>>> Subject: Re: can't-resolve<br>
>>><br>
>>> On 26.12.14 19:21, Ejaz wrote:<br>
>>> >When run "dig a <a href="http://yahoo.com" target="_blank">yahoo.com</a> @<a href="http://212.119.64.228" target="_blank">212.119.64.228</a> below is the ouput.<br>
>>> ><br>
>>> ><a href="http://yahoo.com" target="_blank">yahoo.com</a>. (38)<br>
>>> >17:39:41.363532 IP 212.119.64.228.37891 > 212.119.64.228.domain: 34168+<br>
>>> >[1au] A? <a href="http://yahoo.com" target="_blank">yahoo.com</a>. (38)<br>
>>> >17:39:42.246993 IP 212.119.64.228.53702 > 192.5.5.241.domain: 58238<br>
>>> >[1au]<br>
>>> A?<br>
>>> >yah <a href="http://oo.com" target="_blank">oo.com</a>. (38)<br>
>>> >17:39:42.247012 IP 212.119.64.228.45701 > 192.5.5.241.domain: 13223<br>
[1au]<br>
>>> >NS? . (28)<br>
>>> >17:39:43.047148 IP 212.119.64.228.43795 > 128.63.2.53.domain: 1539 A?<br>
>>> ><a href="http://yahoo.com" target="_blank">yahoo.com</a>. (27)<br>
>>> >17:39:43.047154 IP 212.119.64.228.55178 > 128.63.2.53.domain: 56002 NS?<br>
.<br>
>>> >(17)<br>
>>> >17:39:43.847447 IP 212.119.64.228.61664 > 192.58.128.30.domain: 165 A?<br>
>>> ><a href="http://yahoo.com" target="_blank">yahoo.com</a> . (27)<br>
>>> >17:39:43.847542 IP 212.119.64.228.30239 > 192.58.128.30.domain:<br>
>>> >11435<br>
NS? .<br>
>>> >(17)<br>
>>> >17:39:44.995096 IP 212.119.64.228.24477 > 199.7.83.42.domain: 25645<br>
>>> >[1au]<br>
>>> A?<br>
>>> ><a href="http://yahoo.com" target="_blank">yahoo.com</a>. (38)<br>
>>> >17:39:44.995162 IP 212.119.64.228.22170 > 199.7.83.42.domain: 44767<br>
>>> >[1au] NS? . (28)<br>
>>> >17:39:45.897226 IP 212.119.64.228.35574 > 199.7.91.13.domain: 29284 A?<br>
>>> ><a href="http://yahoo.com" target="_blank">yahoo.com</a>. (27)<br>
>>> >17:39:45.897233 IP 212.119.64.228.36946 > 199.7.91.13.domain: 17626 NS?<br>
.<br>
>>> >(17)<br>
>>> >17:39:46.363642 IP 212.119.64.228.37891 > 212.119.64.228.domain:<br>
>>> >34168+ [1au] A? <a href="http://yahoo.com" target="_blank">yahoo.com</a>. (38)<br>
>>> >17:39:46.370282 IP 212.119.64.228.domain > 212.119.64.228.37891:<br>
>>> >34168 ServFail 0/0/1 (38)<br>
>>><br>
>>> these are just outgoing DNS requests , no replies coming back.<br>
>>> Are you sure there is no firewall, or "security" gateway between<br>
>>> your server and the world?<br>
>>><br>
>>><br>
>>> --<br>
>>> Matus UHLAR - fantomas, <a href="mailto:uhlar@fantomas.sk">uhlar@fantomas.sk</a> ; <a href="http://www.fantomas.sk/" target="_blank">http://www.fantomas.sk/</a><br>
>>> Warning: I wish NOT to receive e-mail advertising to this address.<br>
>>> Varovanie: na tuto adresu chcem NEDOSTAVAT akukolvek reklamnu postu.<br>
>>> 42.7 percent of all statistics are made up on the spot.<br>
>>> _______________________________________________<br>
>>> Please visit <a href="https://lists.isc.org/mailman/listinfo/bind-users" target="_blank">https://lists.isc.org/mailman/listinfo/bind-users</a> to<br>
>>> unsubscribe from this list<br>
>>><br>
>>> bind-users mailing list<br>
>>> <a href="mailto:bind-users@lists.isc.org">bind-users@lists.isc.org</a><br>
>>> <a href="https://lists.isc.org/mailman/listinfo/bind-users" target="_blank">https://lists.isc.org/mailman/listinfo/bind-users</a><br>
>><br>
>> --<br>
>> Barry Margolin<br>
>> Arlington, MA<br>
>> _______________________________________________<br>
>> Please visit <a href="https://lists.isc.org/mailman/listinfo/bind-users" target="_blank">https://lists.isc.org/mailman/listinfo/bind-users</a> to<br>
>> unsubscribe from this list<br>
>><br>
>> bind-users mailing list<br>
>> <a href="mailto:bind-users@lists.isc.org">bind-users@lists.isc.org</a><br>
>> <a href="https://lists.isc.org/mailman/listinfo/bind-users" target="_blank">https://lists.isc.org/mailman/listinfo/bind-users</a><br>
><br>
><br>
><br>
> --<br>
> I don't think the execution is relevant when it was obviously a bad<br>
> idea in the first place.<br>
> This is like putting rabid weasels in your pants, and later expressing<br>
> regret at having chosen those particular rabid weasels and that pair<br>
> of pants.<br>
> ---maf<br>
<br>
<br>
<br>
--<br>
I don't think the execution is relevant when it was obviously a bad idea in<br>
the first place.<br>
This is like putting rabid weasels in your pants, and later expressing<br>
regret at having chosen those particular rabid weasels and that pair of<br>
pants.<br>
---maf<br>
_______________________________________________<br>
Please visit <a href="https://lists.isc.org/mailman/listinfo/bind-users" target="_blank">https://lists.isc.org/mailman/listinfo/bind-users</a> to<br>
unsubscribe from this list<br>
<br>
bind-users mailing list<br>
<a href="mailto:bind-users@lists.isc.org">bind-users@lists.isc.org</a><br>
<a href="https://lists.isc.org/mailman/listinfo/bind-users" target="_blank">https://lists.isc.org/mailman/listinfo/bind-users</a><br>
<br>
--<br>
<br>
_______________________________________________<br>
Please visit <a href="https://lists.isc.org/mailman/listinfo/bind-users" target="_blank">https://lists.isc.org/mailman/listinfo/bind-users</a> to<br>
unsubscribe from this list<br>
<br>
bind-users mailing list<br>
<a href="mailto:bind-users@lists.isc.org">bind-users@lists.isc.org</a><br>
<a href="https://lists.isc.org/mailman/listinfo/bind-users" target="_blank">https://lists.isc.org/mailman/listinfo/bind-users</a><br>
<br>
--<br>
<br>
<br>
<br>
<br>
------------------------------<br>
<br>
_______________________________________________<br>
bind-users mailing list<br>
<a href="mailto:bind-users@lists.isc.org">bind-users@lists.isc.org</a><br>
<a href="https://lists.isc.org/mailman/listinfo/bind-users" target="_blank">https://lists.isc.org/mailman/listinfo/bind-users</a><br>
<br>
End of bind-users Digest, Vol 2011, Issue 1<br>
*******************************************<br>
<br>
</blockquote></div><br></div>