1 /* 2 * Copyright (C) Internet Systems Consortium, Inc. ("ISC") 3 * 4 * SPDX-License-Identifier: MPL-2.0 5 * 6 * This Source Code Form is subject to the terms of the Mozilla Public 7 * License, v. 2.0. If a copy of the MPL was not distributed with this 8 * file, you can obtain one at https://mozilla.org/MPL/2.0/. 9 * 10 * See the COPYRIGHT file distributed with this work for additional 11 * information regarding copyright ownership. 12 */ 13 14 zone "example1" { 15 type primary; 16 file "example1.db"; 17 allow-transfer port 44344 transport tls { any; }; 18 }; 19 20 zone "example2" { 21 type primary; 22 file "example2.db"; 23 allow-transfer port 44344 transport tcp { any; }; 24 }; 25 26 zone "example3" { 27 type primary; 28 file "example3.db"; 29 allow-transfer transport tls { any; }; 30 }; 31 32 zone "example4" { 33 type primary; 34 file "example4.db"; 35 allow-transfer transport tcp { any; }; 36 }; 37 38 39 zone "example5" { 40 type primary; 41 file "example5.db"; 42 allow-transfer port 53 { any; }; 43 }; 44 45 zone "example6" { 46 type primary; 47 file "example6.db"; 48 allow-transfer { any; }; 49 }; 50