Thank you. That works!
I only used TSIG like this:
view "v1" {
server 1.1.1.1 key {...};
zone "z1" { ; masters {1.1.1.1}; ... }
}
.
2013/3/6 Mark Andrews
>
> Use TSIG to select the right instances
>
> MASTER:
> key "transfer.key.v1" {
>
> };
> key "trans
Use TSIG to select the right instances
MASTER:
key "transfer.key.v1" {
};
key "transfer.key.v2" {
};
acl all-transfer-keys {
key transfer.key.v1; keyy transfer.key.v2;
};
view "v1" {
match-clients { key transfer.key.v1; !all-transfer-keys; };
Hi
You can not really share a zone(=file) between views. Both views will
believe they have full rights to the file and one view will see this as
someone (the other view) will change the file behind its back.
What might work is to use a key to allow you to access the views needed.
You should inclu
Hi,all
I want to transfer multiple views from master to slave. The zones are in
different views in master, and in single view in slave.
Ex:
MASTER:
view "v1"{
zone "z11" {...} //need transfer
zone "z12" {...}
zone "z13" {...}
}
view "v2" {
zone "z21" {...} //need transfer
z
4 matches
Mail list logo