These two tests were failing basically because in order for prefetching to happen, the TTL for a given DNS record must be greater than or equal to the prefetch config value + 9. The previous TTL for both records was 10, while prefetch value in configuration was 3, thus making only records with TTL >= 12 elligible for prefetching. TTL value for both records was adjusted to the value 13, and prefetch value was set to 4 (inc by 1), so records with TTL (4 + 9) >= 13 are elligible for prefetching. Adjusting prefetch value to 4 gives the test 1 second more to avoid time problems when sharing resources on a heavy loaded PC. Also prefetch value in settings is now read by the script and used by it to corrrectly calculate the amount of time needed to delay before sending a request to trigger prefetch, adding a bit of flexibility to fine tune the test in the future.
52 lines
963 B
Plaintext
52 lines
963 B
Plaintext
/*
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
* information regarding copyright ownership.
|
|
*/
|
|
|
|
// NS5
|
|
|
|
options {
|
|
query-source address 10.53.0.5 dscp 7;
|
|
notify-source 10.53.0.5 dscp 8;
|
|
transfer-source 10.53.0.5 dscp 9;
|
|
port @PORT@;
|
|
pid-file "named.pid";
|
|
listen-on { 10.53.0.5; };
|
|
listen-on-v6 { none; };
|
|
recursion yes;
|
|
dnssec-validation yes;
|
|
querylog yes;
|
|
prefetch 4 10;
|
|
};
|
|
|
|
server 10.53.0.7 {
|
|
edns-version 0;
|
|
};
|
|
|
|
zone "." {
|
|
type hint;
|
|
file "root.hint";
|
|
};
|
|
|
|
zone "moves" {
|
|
type master;
|
|
file "moves.db";
|
|
};
|
|
|
|
zone "child.server" {
|
|
type master;
|
|
file "child.server.db";
|
|
};
|
|
|
|
zone "delegation-only" {
|
|
type delegation-only;
|
|
};
|
|
|
|
include "trusted.conf";
|