1 1.1 christos /* 2 1.1 christos * Copyright (C) Internet Systems Consortium, Inc. ("ISC") 3 1.1 christos * 4 1.1 christos * SPDX-License-Identifier: MPL-2.0 5 1.1 christos * 6 1.1 christos * This Source Code Form is subject to the terms of the Mozilla Public 7 1.1 christos * License, v. 2.0. If a copy of the MPL was not distributed with this 8 1.1 christos * file, you can obtain one at https://mozilla.org/MPL/2.0/. 9 1.1 christos * 10 1.1 christos * See the COPYRIGHT file distributed with this work for additional 11 1.1 christos * information regarding copyright ownership. 12 1.1 christos */ 13 1.1 christos 14 1.1 christos key example { 15 1.1 christos algorithm hmac-sha256; 16 1.1 christos secret "aaaaaaaaaaaaaaaaaaaaaaaa"; 17 1.1 christos }; 18 1.1 christos 19 1.1 christos server 0.0.0.0 { 20 1.1 christos bogus no; 21 1.1 christos edns no; 22 1.1 christos edns-udp-size 512; 23 1.1 christos edns-version 0; 24 1.1 christos keys example; 25 1.1 christos max-udp-size 512; 26 1.1 christos notify-source 0.0.0.0; 27 1.1 christos padding 512; 28 1.1 christos provide-ixfr no; 29 1.1 christos query-source 0.0.0.0; 30 1.1 christos request-expire no; 31 1.1 christos request-ixfr no; 32 1.1 christos request-nsid no; 33 1.1 christos require-cookie no; 34 1.1 christos send-cookie no; 35 1.1 christos tcp-keepalive no; 36 1.1 christos tcp-only no; 37 1.1 christos transfer-format one-answer; 38 1.1 christos transfer-source 0.0.0.0; 39 1.1 christos transfers 1; 40 1.1 christos }; 41 1.1 christos 42 1.1 christos server :: { 43 1.1 christos bogus no; 44 1.1 christos edns no; 45 1.1 christos edns-udp-size 512; 46 1.1 christos edns-version 0; 47 1.1 christos keys example; 48 1.1 christos max-udp-size 512; 49 1.1 christos notify-source-v6 ::; 50 1.1 christos padding 512; 51 1.1 christos provide-ixfr no; 52 1.1 christos query-source-v6 ::; 53 1.1 christos request-expire no; 54 1.1 christos request-ixfr no; 55 1.1 christos request-nsid no; 56 1.1 christos require-cookie no; 57 1.1 christos send-cookie no; 58 1.1 christos tcp-keepalive no; 59 1.1 christos tcp-only no; 60 1.1 christos transfer-format one-answer; 61 1.1 christos transfer-source-v6 ::; 62 1.1 christos transfers 1; 63 1.1 christos }; 64