mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-26 11:32:01 -05:00
Speed up the catz system test
Do not delay sending NOFIFY messages, and allow catalog zones to update every second instead of every 5 seconds.
This commit is contained in:
parent
2ae81024df
commit
cdfe8f23c2
4 changed files with 13 additions and 0 deletions
|
|
@ -28,6 +28,7 @@ options {
|
|||
listen-on port @EXTRAPORT1@ { 10.53.0.1; };
|
||||
listen-on-v6 { none; };
|
||||
notify no;
|
||||
notify-delay 0;
|
||||
recursion no;
|
||||
allow-transfer { any; };
|
||||
};
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@ options {
|
|||
listen-on { 10.53.0.2; };
|
||||
listen-on-v6 { fd92:7065:b8e:ffff::2; };
|
||||
notify no;
|
||||
notify-delay 0;
|
||||
recursion no;
|
||||
serial-query-rate 100;
|
||||
};
|
||||
|
|
@ -41,29 +42,38 @@ view "default" {
|
|||
catalog-zones {
|
||||
zone "catalog1.example"
|
||||
default-masters { 10.53.0.1; }
|
||||
min-update-interval 1s
|
||||
in-memory no
|
||||
zone-directory "zonedir";
|
||||
zone "catalog2.example"
|
||||
default-primaries { 10.53.0.1 port @EXTRAPORT1@; }
|
||||
min-update-interval 1s
|
||||
in-memory yes;
|
||||
zone "catalog3.example"
|
||||
default-masters { 10.53.0.1; }
|
||||
min-update-interval 1s
|
||||
zone-directory "nonexistent";
|
||||
#T1 zone "catalog4.example"
|
||||
#T1 min-update-interval 1s
|
||||
#T1 default-masters { 10.53.0.1; };
|
||||
#T2 zone "catalog5.example"
|
||||
#T2 min-update-interval 1s
|
||||
#T2 default-primaries { 10.53.0.1; };
|
||||
zone "catalog-bad1.example"
|
||||
default-masters { 10.53.0.1; }
|
||||
min-update-interval 1s
|
||||
in-memory yes;
|
||||
zone "catalog-bad2.example"
|
||||
default-masters { 10.53.0.1; }
|
||||
min-update-interval 1s
|
||||
in-memory yes;
|
||||
zone "catalog-bad3.example"
|
||||
default-masters { 10.53.0.1; }
|
||||
min-update-interval 1s
|
||||
in-memory yes;
|
||||
zone "catalog-bad4.example"
|
||||
default-masters { 10.53.0.1; }
|
||||
min-update-interval 1s
|
||||
in-memory yes;
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@ options {
|
|||
listen-on { 10.53.0.2; };
|
||||
listen-on-v6 { fd92:7065:b8e:ffff::2; };
|
||||
notify no;
|
||||
notify-delay 0;
|
||||
recursion no;
|
||||
serial-query-rate 100;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@ options {
|
|||
listen-on { 10.53.0.3; };
|
||||
listen-on-v6 { fd92:7065:b8e:ffff::3; };
|
||||
notify no;
|
||||
notify-delay 0;
|
||||
recursion no;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue