1; Copyright (C) Internet Systems Consortium, Inc. ("ISC")
2;
3; SPDX-License-Identifier: MPL-2.0
4;
5; This Source Code Form is subject to the terms of the Mozilla Public
6; License, v. 2.0.  If a copy of the MPL was not distributed with this
7; file, you can obtain one at https://mozilla.org/MPL/2.0/.
8;
9; See the COPYRIGHT file distributed with this work for additional
10; information regarding copyright ownership.
11
12; Test $INCLUDE current domain name and origin semantics
13
14$TTL 300
15@			IN SOA	ns hostmaster (
16				1        ; serial
17				3600
18				1800
19				1814400
20				3600
21				)
22			NS	ns
23
24ns			A	127.0.0.1
25
26a			A	10.0.0.1
27$INCLUDE sub.db a
28; use the current domain name
29			A	10.0.0.99
30b			A	10.0.0.2
31$ORIGIN b
32$INCLUDE sub.db
33; use the current domain name
34;			A	10.0.0.99
35c			A	10.0.0.3
36