bind replication

pyh at mail.nsbeta.info pyh at mail.nsbeta.info
Sat Jan 1 05:59:44 UTC 2011


> 
> Not a how-to, but it is covered in the BIND FAQ on the ISC website.. 
> 
>   http://www.isc.org/software/bind/faq 
> 
> Then look at the entry for: 
> 
>   My slave server for both an internal and an external view has both
>   views transferred from the same master view - how to resolve? 
> 

Thanks. 

If I have two views,the names are "tel" and "edu" (means telecom and edu 
networks), and I want both nsupdate and zone-transfer, is the config looks 
as below right? Thanks in advance. 

acl "TEL" {
58.32.0.0/11;
58.208.0.0/12;
59.32.0.0/11;
59.80.0.0/14;
...
}; 

view "tel" {
      match-clients {
          key "telkey";
          TEL;
      };
      allow-update {key "telkey";};
      #others...
}; 

view "edu" {
      match-clients {
          key "edukey";
          any;
      };
      allow-update {key "edukey";};
      # others
}; 

key "telkey" {
      algorithm hmac-md5;
      secret "******";
}; 

key "edukey" {
      algorithm hmac-md5;
      secret "******";
};



More information about the bind-users mailing list