mirror of
https://github.com/VinylDNS/vinyldns
synced 2025-08-31 06:15:49 +00:00
Updates
- Move away from using multiple images for "quickstart" and instead use a single "integration" image which provides all of the dependencies - Update `docker-up-vinyldns.sh` to support the new `integration` image - Update `remove-vinyl-containers.sh` to more cleanly.. clean up - Update `verify.sh` to more reliably run `sbt` targets - Update `build/docker/api/application.conf` to allow for overrides and default to the `vinyldns-integration` image - Update `build/docker/portal/application.conf` to allow overrides and use `vinyldns-integration` image - Update `build/docker/portal/Dockerfile` to use `vinyldns/build:base-build-portal` to reduce need to download dependencies over and over - Update `api/assembly` sbt target to output to `assembly` rather than some deeply nested folder in `**/target` - Update documentation to reflect changes - Move `docker/` directory to `quickstart/` to reduce confusion with the `build/docker` directory - Move `bin/` to `utils/` since the files are binaries - Add `.dockerignore` to root
This commit is contained in:
17
quickstart/.env
Normal file
17
quickstart/.env
Normal file
@@ -0,0 +1,17 @@
|
||||
REST_PORT=9000
|
||||
|
||||
# portal settings
|
||||
PORTAL_PORT=9001
|
||||
PLAY_HTTP_SECRET_KEY=change-this-for-prod
|
||||
VINYLDNS_BACKEND_URL=http://vinyldns-integration:9000
|
||||
|
||||
SQS_ENDPOINT=http://vinyldns-integration:19003
|
||||
MYSQL_ENDPOINT=vinyldns-integration:19002
|
||||
TEST_LOGIN=true
|
||||
|
||||
JDBC_DRIVER=org.mariadb.jdbc.Driver
|
||||
JDBC_URL=jdbc:mariadb://vinyldns-integration:19002/vinyldns?user=root&password=pass
|
||||
JDBC_MIGRATION_URL=jdbc:mariadb://vinyldns-integration:19002/?user=root&password=pass
|
||||
JDBC_USER=root
|
||||
JDBC_PASSWORD=pass
|
||||
DEFAULT_DNS_ADDRESS=127.0.0.1:19001
|
22
quickstart/bind9/README.md
Normal file
22
quickstart/bind9/README.md
Normal file
@@ -0,0 +1,22 @@
|
||||
## Bind Test Configuration
|
||||
|
||||
This folder contains test configuration for BIND zones. The zones are partitioned into four distinct partitions to allow
|
||||
for four parallel testing threads that won't interfere with one another.
|
||||
|
||||
### Layout
|
||||
|
||||
| Directory | Detail |
|
||||
|:---|:---|
|
||||
| `etc/` | Contains zone configurations separated by partition |
|
||||
| `etc/_template` | Contains the template file for creating the partitioned `conf` files. Currently this is just a find and replace operation - finding `{placeholder}` and replacing it with the desired placeholder. |
|
||||
| `zones/` | Contains zone definitions separated by partition |
|
||||
| `zones/_template` |Contains the template file for creating the partitioned zone files. Currently this is just a find and replace operation - finding `{placeholder}` and replacing it with the desired placeholder. |
|
||||
|
||||
### Target Directories
|
||||
|
||||
When used in a container, or to run `named`, the files in this directory should be copied to the following directories:
|
||||
|
||||
| Directory | Target |
|
||||
|:---|:---|
|
||||
| `etc/named.conf.*` | `/etc/bind/` |
|
||||
| `zones/` | `/var/bind/` |
|
186
quickstart/bind9/etc/_template/named.partition.conf
Normal file
186
quickstart/bind9/etc/_template/named.partition.conf
Normal file
@@ -0,0 +1,186 @@
|
||||
zone "vinyldns{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/vinyldns.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "old-vinyldns2{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/old-vinyldns2.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "old-vinyldns3{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/old-vinyldns3.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "dummy{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/dummy.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "ok{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/ok.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "shared{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/shared.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "non.test.shared{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/non.test.shared.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "system-test{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/system-test.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "system-test-history{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/system-test-history.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "{partition}.10.in-addr.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/10.10.in-addr.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "{partition}.0.192.in-addr.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/2.0.192.in-addr.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "192/30.{partition}.0.192.in-addr.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/192^30.2.0.192.in-addr.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "{partition}.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/1.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "0.0.0.1.{partition}.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/0.0.0.1.1.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "one-time{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/one-time.hosts";
|
||||
allow-update { key "vinyldns."; key "vinyldns-sha1."; key "vinyldns-sha224."; key "vinyldns-sha256."; key "vinyldns-sha384."; key "vinyldns-sha512."; };
|
||||
};
|
||||
|
||||
zone "sync-test{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/sync-test.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "invalid-zone{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/invalid-zone.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-searched-1{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/list-zones-test-searched-1.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-searched-2{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/list-zones-test-searched-2.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-searched-3{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/list-zones-test-searched-3.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-unfiltered-1{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/list-zones-test-unfiltered-1.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-unfiltered-2{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/list-zones-test-unfiltered-2.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "one-time-shared{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/one-time-shared.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "parent.com{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/parent.com.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "child.parent.com{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/child.parent.com.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "example.com{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/example.com.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "dskey.example.com{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/dskey.example.com.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "not.loaded{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/not.loaded.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "zone.requires.review{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/zone.requires.review.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-records{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/list-records.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "open{partition}" {
|
||||
type master;
|
||||
file "/var/bind/partition{partition}/open.hosts";
|
||||
allow-update { any; };
|
||||
allow-transfer { any; };
|
||||
};
|
35
quickstart/bind9/etc/named.conf.local
Normal file
35
quickstart/bind9/etc/named.conf.local
Normal file
@@ -0,0 +1,35 @@
|
||||
|
||||
key "vinyldns." {
|
||||
algorithm hmac-md5;
|
||||
secret "nzisn+4G2ldMn0q1CV3vsg==";
|
||||
};
|
||||
|
||||
key "vinyldns-sha1." {
|
||||
algorithm hmac-sha1;
|
||||
secret "0nIhR1zS/nHUg2n0AIIUyJwXUyQ=";
|
||||
};
|
||||
|
||||
key "vinyldns-sha224." {
|
||||
algorithm hmac-sha224;
|
||||
secret "yud/F666YjcnfqPSulHaYXrNObNnS1Jv+rX61A==";
|
||||
};
|
||||
|
||||
key "vinyldns-sha256." {
|
||||
algorithm hmac-sha256;
|
||||
secret "wzLsDGgPRxFaC6z/9Bc0n1W4KrnmaUdFCgCn2+7zbPU=";
|
||||
};
|
||||
|
||||
key "vinyldns-sha384." {
|
||||
algorithm hmac-sha384;
|
||||
secret "ne9jSUJ7PBGveM37aOX+ZmBXQgz1EqkbYBO1s5l/LNpjEno4OfYvGo1Lv1rnw3pE";
|
||||
};
|
||||
|
||||
key "vinyldns-sha512." {
|
||||
algorithm hmac-sha512;
|
||||
secret "xfKA0DYb88tiUGND+cWddwUg3/SugYSsdvCfBOJ1jr8MEdgbVRyrlVDEXLsfTUGorQ3ShENdymw2yw+rTr+lwA==";
|
||||
};
|
||||
|
||||
include "/etc/bind/named.conf.partition1";
|
||||
include "/etc/bind/named.conf.partition2";
|
||||
include "/etc/bind/named.conf.partition3";
|
||||
include "/etc/bind/named.conf.partition4";
|
186
quickstart/bind9/etc/named.conf.partition1
Normal file
186
quickstart/bind9/etc/named.conf.partition1
Normal file
@@ -0,0 +1,186 @@
|
||||
zone "vinyldns1" {
|
||||
type master;
|
||||
file "/var/bind/partition1/vinyldns.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "old-vinyldns21" {
|
||||
type master;
|
||||
file "/var/bind/partition1/old-vinyldns2.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "old-vinyldns31" {
|
||||
type master;
|
||||
file "/var/bind/partition1/old-vinyldns3.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "dummy1" {
|
||||
type master;
|
||||
file "/var/bind/partition1/dummy.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "ok1" {
|
||||
type master;
|
||||
file "/var/bind/partition1/ok.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "shared1" {
|
||||
type master;
|
||||
file "/var/bind/partition1/shared.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "non.test.shared1" {
|
||||
type master;
|
||||
file "/var/bind/partition1/non.test.shared.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "system-test1" {
|
||||
type master;
|
||||
file "/var/bind/partition1/system-test.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "system-test-history1" {
|
||||
type master;
|
||||
file "/var/bind/partition1/system-test-history.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "1.10.in-addr.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition1/10.10.in-addr.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "1.0.192.in-addr.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition1/2.0.192.in-addr.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "192/30.1.0.192.in-addr.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition1/192^30.2.0.192.in-addr.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "1.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition1/1.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "0.0.0.1.1.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition1/0.0.0.1.1.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "one-time1" {
|
||||
type master;
|
||||
file "/var/bind/partition1/one-time.hosts";
|
||||
allow-update { key "vinyldns."; key "vinyldns-sha1."; key "vinyldns-sha224."; key "vinyldns-sha256."; key "vinyldns-sha384."; key "vinyldns-sha512."; };
|
||||
};
|
||||
|
||||
zone "sync-test1" {
|
||||
type master;
|
||||
file "/var/bind/partition1/sync-test.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "invalid-zone1" {
|
||||
type master;
|
||||
file "/var/bind/partition1/invalid-zone.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-searched-11" {
|
||||
type master;
|
||||
file "/var/bind/partition1/list-zones-test-searched-1.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-searched-21" {
|
||||
type master;
|
||||
file "/var/bind/partition1/list-zones-test-searched-2.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-searched-31" {
|
||||
type master;
|
||||
file "/var/bind/partition1/list-zones-test-searched-3.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-unfiltered-11" {
|
||||
type master;
|
||||
file "/var/bind/partition1/list-zones-test-unfiltered-1.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-unfiltered-21" {
|
||||
type master;
|
||||
file "/var/bind/partition1/list-zones-test-unfiltered-2.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "one-time-shared1" {
|
||||
type master;
|
||||
file "/var/bind/partition1/one-time-shared.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "parent.com1" {
|
||||
type master;
|
||||
file "/var/bind/partition1/parent.com.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "child.parent.com1" {
|
||||
type master;
|
||||
file "/var/bind/partition1/child.parent.com.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "example.com1" {
|
||||
type master;
|
||||
file "/var/bind/partition1/example.com.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "dskey.example.com1" {
|
||||
type master;
|
||||
file "/var/bind/partition1/dskey.example.com.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "not.loaded1" {
|
||||
type master;
|
||||
file "/var/bind/partition1/not.loaded.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "zone.requires.review1" {
|
||||
type master;
|
||||
file "/var/bind/partition1/zone.requires.review.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-records1" {
|
||||
type master;
|
||||
file "/var/bind/partition1/list-records.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "open1" {
|
||||
type master;
|
||||
file "/var/bind/partition1/open.hosts";
|
||||
allow-update { any; };
|
||||
allow-transfer { any; };
|
||||
};
|
186
quickstart/bind9/etc/named.conf.partition2
Normal file
186
quickstart/bind9/etc/named.conf.partition2
Normal file
@@ -0,0 +1,186 @@
|
||||
zone "vinyldns2" {
|
||||
type master;
|
||||
file "/var/bind/partition2/vinyldns.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "old-vinyldns22" {
|
||||
type master;
|
||||
file "/var/bind/partition2/old-vinyldns2.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "old-vinyldns32" {
|
||||
type master;
|
||||
file "/var/bind/partition2/old-vinyldns3.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "dummy2" {
|
||||
type master;
|
||||
file "/var/bind/partition2/dummy.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "ok2" {
|
||||
type master;
|
||||
file "/var/bind/partition2/ok.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "shared2" {
|
||||
type master;
|
||||
file "/var/bind/partition2/shared.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "non.test.shared2" {
|
||||
type master;
|
||||
file "/var/bind/partition2/non.test.shared.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "system-test2" {
|
||||
type master;
|
||||
file "/var/bind/partition2/system-test.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "system-test-history2" {
|
||||
type master;
|
||||
file "/var/bind/partition2/system-test-history.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "2.10.in-addr.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition2/10.10.in-addr.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "2.0.192.in-addr.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition2/2.0.192.in-addr.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "192/30.2.0.192.in-addr.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition2/192^30.2.0.192.in-addr.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "2.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition2/1.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "0.0.0.1.2.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition2/0.0.0.1.1.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "one-time2" {
|
||||
type master;
|
||||
file "/var/bind/partition2/one-time.hosts";
|
||||
allow-update { key "vinyldns."; key "vinyldns-sha1."; key "vinyldns-sha224."; key "vinyldns-sha256."; key "vinyldns-sha384."; key "vinyldns-sha512."; };
|
||||
};
|
||||
|
||||
zone "sync-test2" {
|
||||
type master;
|
||||
file "/var/bind/partition2/sync-test.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "invalid-zone2" {
|
||||
type master;
|
||||
file "/var/bind/partition2/invalid-zone.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-searched-12" {
|
||||
type master;
|
||||
file "/var/bind/partition2/list-zones-test-searched-1.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-searched-22" {
|
||||
type master;
|
||||
file "/var/bind/partition2/list-zones-test-searched-2.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-searched-32" {
|
||||
type master;
|
||||
file "/var/bind/partition2/list-zones-test-searched-3.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-unfiltered-12" {
|
||||
type master;
|
||||
file "/var/bind/partition2/list-zones-test-unfiltered-1.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-unfiltered-22" {
|
||||
type master;
|
||||
file "/var/bind/partition2/list-zones-test-unfiltered-2.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "one-time-shared2" {
|
||||
type master;
|
||||
file "/var/bind/partition2/one-time-shared.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "parent.com2" {
|
||||
type master;
|
||||
file "/var/bind/partition2/parent.com.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "child.parent.com2" {
|
||||
type master;
|
||||
file "/var/bind/partition2/child.parent.com.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "example.com2" {
|
||||
type master;
|
||||
file "/var/bind/partition2/example.com.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "dskey.example.com2" {
|
||||
type master;
|
||||
file "/var/bind/partition2/dskey.example.com.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "not.loaded2" {
|
||||
type master;
|
||||
file "/var/bind/partition2/not.loaded.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "zone.requires.review2" {
|
||||
type master;
|
||||
file "/var/bind/partition2/zone.requires.review.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-records2" {
|
||||
type master;
|
||||
file "/var/bind/partition2/list-records.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "open2" {
|
||||
type master;
|
||||
file "/var/bind/partition2/open.hosts";
|
||||
allow-update { any; };
|
||||
allow-transfer { any; };
|
||||
};
|
186
quickstart/bind9/etc/named.conf.partition3
Normal file
186
quickstart/bind9/etc/named.conf.partition3
Normal file
@@ -0,0 +1,186 @@
|
||||
zone "vinyldns3" {
|
||||
type master;
|
||||
file "/var/bind/partition3/vinyldns.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "old-vinyldns23" {
|
||||
type master;
|
||||
file "/var/bind/partition3/old-vinyldns2.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "old-vinyldns33" {
|
||||
type master;
|
||||
file "/var/bind/partition3/old-vinyldns3.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "dummy3" {
|
||||
type master;
|
||||
file "/var/bind/partition3/dummy.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "ok3" {
|
||||
type master;
|
||||
file "/var/bind/partition3/ok.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "shared3" {
|
||||
type master;
|
||||
file "/var/bind/partition3/shared.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "non.test.shared3" {
|
||||
type master;
|
||||
file "/var/bind/partition3/non.test.shared.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "system-test3" {
|
||||
type master;
|
||||
file "/var/bind/partition3/system-test.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "system-test-history3" {
|
||||
type master;
|
||||
file "/var/bind/partition3/system-test-history.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "3.10.in-addr.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition3/10.10.in-addr.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "3.0.192.in-addr.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition3/2.0.192.in-addr.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "192/30.3.0.192.in-addr.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition3/192^30.2.0.192.in-addr.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "3.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition3/1.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "0.0.0.1.3.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition3/0.0.0.1.1.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "one-time3" {
|
||||
type master;
|
||||
file "/var/bind/partition3/one-time.hosts";
|
||||
allow-update { key "vinyldns."; key "vinyldns-sha1."; key "vinyldns-sha224."; key "vinyldns-sha256."; key "vinyldns-sha384."; key "vinyldns-sha512."; };
|
||||
};
|
||||
|
||||
zone "sync-test3" {
|
||||
type master;
|
||||
file "/var/bind/partition3/sync-test.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "invalid-zone3" {
|
||||
type master;
|
||||
file "/var/bind/partition3/invalid-zone.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-searched-13" {
|
||||
type master;
|
||||
file "/var/bind/partition3/list-zones-test-searched-1.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-searched-23" {
|
||||
type master;
|
||||
file "/var/bind/partition3/list-zones-test-searched-2.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-searched-33" {
|
||||
type master;
|
||||
file "/var/bind/partition3/list-zones-test-searched-3.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-unfiltered-13" {
|
||||
type master;
|
||||
file "/var/bind/partition3/list-zones-test-unfiltered-1.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-unfiltered-23" {
|
||||
type master;
|
||||
file "/var/bind/partition3/list-zones-test-unfiltered-2.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "one-time-shared3" {
|
||||
type master;
|
||||
file "/var/bind/partition3/one-time-shared.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "parent.com3" {
|
||||
type master;
|
||||
file "/var/bind/partition3/parent.com.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "child.parent.com3" {
|
||||
type master;
|
||||
file "/var/bind/partition3/child.parent.com.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "example.com3" {
|
||||
type master;
|
||||
file "/var/bind/partition3/example.com.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "dskey.example.com3" {
|
||||
type master;
|
||||
file "/var/bind/partition3/dskey.example.com.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "not.loaded3" {
|
||||
type master;
|
||||
file "/var/bind/partition3/not.loaded.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "zone.requires.review3" {
|
||||
type master;
|
||||
file "/var/bind/partition3/zone.requires.review.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-records3" {
|
||||
type master;
|
||||
file "/var/bind/partition3/list-records.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "open3" {
|
||||
type master;
|
||||
file "/var/bind/partition3/open.hosts";
|
||||
allow-update { any; };
|
||||
allow-transfer { any; };
|
||||
};
|
186
quickstart/bind9/etc/named.conf.partition4
Normal file
186
quickstart/bind9/etc/named.conf.partition4
Normal file
@@ -0,0 +1,186 @@
|
||||
zone "vinyldns4" {
|
||||
type master;
|
||||
file "/var/bind/partition4/vinyldns.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "old-vinyldns24" {
|
||||
type master;
|
||||
file "/var/bind/partition4/old-vinyldns2.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "old-vinyldns34" {
|
||||
type master;
|
||||
file "/var/bind/partition4/old-vinyldns3.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "dummy4" {
|
||||
type master;
|
||||
file "/var/bind/partition4/dummy.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "ok4" {
|
||||
type master;
|
||||
file "/var/bind/partition4/ok.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "shared4" {
|
||||
type master;
|
||||
file "/var/bind/partition4/shared.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "non.test.shared4" {
|
||||
type master;
|
||||
file "/var/bind/partition4/non.test.shared.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "system-test4" {
|
||||
type master;
|
||||
file "/var/bind/partition4/system-test.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "system-test-history4" {
|
||||
type master;
|
||||
file "/var/bind/partition4/system-test-history.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "4.10.in-addr.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition4/10.10.in-addr.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "4.0.192.in-addr.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition4/2.0.192.in-addr.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "192/30.4.0.192.in-addr.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition4/192^30.2.0.192.in-addr.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "4.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition4/1.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "0.0.0.1.4.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa" {
|
||||
type master;
|
||||
file "/var/bind/partition4/0.0.0.1.1.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "one-time4" {
|
||||
type master;
|
||||
file "/var/bind/partition4/one-time.hosts";
|
||||
allow-update { key "vinyldns."; key "vinyldns-sha1."; key "vinyldns-sha224."; key "vinyldns-sha256."; key "vinyldns-sha384."; key "vinyldns-sha512."; };
|
||||
};
|
||||
|
||||
zone "sync-test4" {
|
||||
type master;
|
||||
file "/var/bind/partition4/sync-test.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "invalid-zone4" {
|
||||
type master;
|
||||
file "/var/bind/partition4/invalid-zone.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-searched-14" {
|
||||
type master;
|
||||
file "/var/bind/partition4/list-zones-test-searched-1.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-searched-24" {
|
||||
type master;
|
||||
file "/var/bind/partition4/list-zones-test-searched-2.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-searched-34" {
|
||||
type master;
|
||||
file "/var/bind/partition4/list-zones-test-searched-3.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-unfiltered-14" {
|
||||
type master;
|
||||
file "/var/bind/partition4/list-zones-test-unfiltered-1.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-zones-test-unfiltered-24" {
|
||||
type master;
|
||||
file "/var/bind/partition4/list-zones-test-unfiltered-2.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "one-time-shared4" {
|
||||
type master;
|
||||
file "/var/bind/partition4/one-time-shared.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "parent.com4" {
|
||||
type master;
|
||||
file "/var/bind/partition4/parent.com.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "child.parent.com4" {
|
||||
type master;
|
||||
file "/var/bind/partition4/child.parent.com.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "example.com4" {
|
||||
type master;
|
||||
file "/var/bind/partition4/example.com.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "dskey.example.com4" {
|
||||
type master;
|
||||
file "/var/bind/partition4/dskey.example.com.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "not.loaded4" {
|
||||
type master;
|
||||
file "/var/bind/partition4/not.loaded.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "zone.requires.review4" {
|
||||
type master;
|
||||
file "/var/bind/partition4/zone.requires.review.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "list-records4" {
|
||||
type master;
|
||||
file "/var/bind/partition4/list-records.hosts";
|
||||
allow-update { key "vinyldns."; };
|
||||
};
|
||||
|
||||
zone "open4" {
|
||||
type master;
|
||||
file "/var/bind/partition4/open.hosts";
|
||||
allow-update { any; };
|
||||
allow-transfer { any; };
|
||||
};
|
@@ -0,0 +1,12 @@
|
||||
$ttl 38400
|
||||
0.0.0.1.{partition}.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa. IN SOA 172.17.42.1. admin.vinyldns.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
0.0.0.1.{partition}.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa. IN NS 172.17.42.1.
|
||||
4.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR www.vinyldns.
|
||||
5.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR mail.vinyldns.
|
||||
0.0.0.0.f.f.f.f.0.0.0.0.0.0.0.0 IN PTR high.value.domain.ip6.
|
||||
2.0.0.0.f.f.f.f.0.0.0.0.0.0.0.0 IN PTR needs.review.domain.ip6.
|
@@ -0,0 +1,13 @@
|
||||
$ttl 38400
|
||||
{partition}.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa. IN SOA 172.17.42.1. admin.vinyldns.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
{partition}.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa. IN NS 172.17.42.1.
|
||||
0.0.0.1 IN NS 172.17.42.1.
|
||||
4.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR www.vinyldns.
|
||||
5.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR mail.vinyldns.
|
||||
0.0.0.0.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR high.value.domain.ip6.
|
||||
2.0.0.0.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR needs.review.domain.ip6.
|
10
quickstart/bind9/zones/_template/10.10.in-addr.arpa
Normal file
10
quickstart/bind9/zones/_template/10.10.in-addr.arpa
Normal file
@@ -0,0 +1,10 @@
|
||||
$ttl 38400
|
||||
{partition}.10.in-addr.arpa. IN SOA 172.17.42.1. admin.vinyldns.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
{partition}.10.in-addr.arpa. IN NS 172.17.42.1.
|
||||
24.0 IN PTR www.vinyl.
|
||||
25.0 IN PTR mail.vinyl.
|
11
quickstart/bind9/zones/_template/192^30.2.0.192.in-addr.arpa
Normal file
11
quickstart/bind9/zones/_template/192^30.2.0.192.in-addr.arpa
Normal file
@@ -0,0 +1,11 @@
|
||||
$ttl 38400
|
||||
192/30.{partition}.0.192.in-addr.arpa. IN SOA 172.17.42.1. admin.vinyldns.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
192/30.{partition}.0.192.in-addr.arpa. IN NS 172.17.42.1.
|
||||
192 IN PTR portal.vinyldns.
|
||||
194 IN PTR mail.vinyldns.
|
||||
195 IN PTR test.vinyldns.
|
15
quickstart/bind9/zones/_template/2.0.192.in-addr.arpa
Normal file
15
quickstart/bind9/zones/_template/2.0.192.in-addr.arpa
Normal file
@@ -0,0 +1,15 @@
|
||||
$ttl 38400
|
||||
{partition}.0.192.in-addr.arpa. IN SOA 172.17.42.1. admin.vinyldns.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
{partition}.0.192.in-addr.arpa. IN NS 172.17.42.1.
|
||||
192/30 IN NS 172.17.42.1.
|
||||
192 IN CNAME 192.192/30.2.0.192.in-addr.arpa.
|
||||
193 IN CNAME 193.192/30.2.0.192.in-addr.arpa.
|
||||
194 IN CNAME 194.192/30.2.0.192.in-addr.arpa.
|
||||
195 IN CNAME 195.192/30.2.0.192.in-addr.arpa.
|
||||
253 IN PTR high.value.domain.ip4.
|
||||
255 IN PTR needs.review.domain.ip4
|
9
quickstart/bind9/zones/_template/child.parent.com.hosts
Normal file
9
quickstart/bind9/zones/_template/child.parent.com.hosts
Normal file
@@ -0,0 +1,9 @@
|
||||
$ttl 38400
|
||||
$ORIGIN child.parent.com{partition}.
|
||||
@ IN SOA ns1.parent.com{partition}. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
@ IN NS ns1.parent.com{partition}.
|
9
quickstart/bind9/zones/_template/dskey.example.com.hosts
Normal file
9
quickstart/bind9/zones/_template/dskey.example.com.hosts
Normal file
@@ -0,0 +1,9 @@
|
||||
$TTL 1h
|
||||
$ORIGIN dskey.example.com{partition}.
|
||||
@ IN SOA ns1.parent.com{partition}. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
dskey.example.com{partition}. IN NS 172.17.42.1.
|
15
quickstart/bind9/zones/_template/dummy.hosts
Normal file
15
quickstart/bind9/zones/_template/dummy.hosts
Normal file
@@ -0,0 +1,15 @@
|
||||
$ttl 38400
|
||||
dummy{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
dummy{partition}. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
||||
non-approved-delegation IN NS 7.7.7.7
|
10
quickstart/bind9/zones/_template/example.com.hosts
Normal file
10
quickstart/bind9/zones/_template/example.com.hosts
Normal file
@@ -0,0 +1,10 @@
|
||||
$TTL 1h
|
||||
$ORIGIN example.com{partition}.
|
||||
@ IN SOA ns1.parent.com{partition}. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
example.com{partition}. IN NS 172.17.42.1.
|
||||
dskey IN NS 172.17.42.1.
|
17
quickstart/bind9/zones/_template/invalid-zone.hosts
Normal file
17
quickstart/bind9/zones/_template/invalid-zone.hosts
Normal file
@@ -0,0 +1,17 @@
|
||||
$ttl 38400
|
||||
invalid-zone{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
invalid-zone{partition}. IN NS 172.17.42.1.
|
||||
invalid-zone{partition}. IN NS not-approved.thing.com.
|
||||
invalid.child.invalid-zone{partition}. IN NS 172.17.42.1.
|
||||
dotted.host.invalid-zone{partition}. IN A 1.2.3.4
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
38
quickstart/bind9/zones/_template/list-records.hosts
Normal file
38
quickstart/bind9/zones/_template/list-records.hosts
Normal file
@@ -0,0 +1,38 @@
|
||||
$ttl 38400
|
||||
list-records{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
list-records{partition}. IN NS 172.17.42.1.
|
||||
00-test-list-recordsets-0-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-0-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-0-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-1-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-1-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-1-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-2-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-2-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-2-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-3-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-3-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-3-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-4-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-4-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-4-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-5-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-5-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-5-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-6-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-6-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-6-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-7-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-7-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-7-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-8-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-8-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-8-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-9-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-9-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-9-CNAME IN CNAME cname1.
|
@@ -0,0 +1,8 @@
|
||||
$ttl 38400
|
||||
list-zones-test-searched-1{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
list-zones-test-searched-1{partition}. IN NS 172.17.42.1.
|
@@ -0,0 +1,8 @@
|
||||
$ttl 38400
|
||||
list-zones-test-searched-2{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
list-zones-test-searched-2{partition}. IN NS 172.17.42.1.
|
@@ -0,0 +1,8 @@
|
||||
$ttl 38400
|
||||
list-zones-test-searched-3{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
list-zones-test-searched-3{partition}. IN NS 172.17.42.1.
|
@@ -0,0 +1,8 @@
|
||||
$ttl 38400
|
||||
list-zones-test-unfiltered-1{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
list-zones-test-unfiltered-1{partition}. IN NS 172.17.42.1.
|
@@ -0,0 +1,8 @@
|
||||
$ttl 38400
|
||||
list-zones-test-unfiltered-2{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
list-zones-test-unfiltered-2{partition}. IN NS 172.17.42.1.
|
13
quickstart/bind9/zones/_template/non.test.shared.hosts
Normal file
13
quickstart/bind9/zones/_template/non.test.shared.hosts
Normal file
@@ -0,0 +1,13 @@
|
||||
$ttl 38400
|
||||
non.test.shared{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
non.test.shared{partition}. IN NS 172.17.42.1.
|
||||
@ IN A 1.1.1.1
|
||||
delete-test-batch IN A 2.2.2.2
|
||||
update-test-batch IN A 3.3.3.3
|
||||
delete-test IN A 4.4.4.4
|
||||
update-test IN A 5.5.5.5
|
9
quickstart/bind9/zones/_template/not.loaded.hosts
Normal file
9
quickstart/bind9/zones/_template/not.loaded.hosts
Normal file
@@ -0,0 +1,9 @@
|
||||
$ttl 38400
|
||||
not.loaded{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
not.loaded{partition}. IN NS 172.17.42.1.
|
||||
foo IN A 1.1.1.1
|
16
quickstart/bind9/zones/_template/ok.hosts
Normal file
16
quickstart/bind9/zones/_template/ok.hosts
Normal file
@@ -0,0 +1,16 @@
|
||||
$ttl 38400
|
||||
ok{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
ok{partition}. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
||||
dotted.a IN A 7.7.7.7
|
||||
dottedc.name IN CNAME test.example.com
|
14
quickstart/bind9/zones/_template/old-shared.hosts
Normal file
14
quickstart/bind9/zones/_template/old-shared.hosts
Normal file
@@ -0,0 +1,14 @@
|
||||
$ttl 38400
|
||||
old-shared{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
old-shared{partition}. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
14
quickstart/bind9/zones/_template/old-vinyldns2.hosts
Normal file
14
quickstart/bind9/zones/_template/old-vinyldns2.hosts
Normal file
@@ -0,0 +1,14 @@
|
||||
$ttl 38400
|
||||
old-vinyldns2{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
old-vinyldns2{partition}. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
14
quickstart/bind9/zones/_template/old-vinyldns3.hosts
Normal file
14
quickstart/bind9/zones/_template/old-vinyldns3.hosts
Normal file
@@ -0,0 +1,14 @@
|
||||
$ttl 38400
|
||||
old-vinyldns3{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
old-vinyldns3{partition}. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
8
quickstart/bind9/zones/_template/one-time-shared.hosts
Normal file
8
quickstart/bind9/zones/_template/one-time-shared.hosts
Normal file
@@ -0,0 +1,8 @@
|
||||
$ttl 38400
|
||||
one-time-shared{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
one-time-shared{partition}. IN NS 172.17.42.1.
|
14
quickstart/bind9/zones/_template/one-time.hosts
Normal file
14
quickstart/bind9/zones/_template/one-time.hosts
Normal file
@@ -0,0 +1,14 @@
|
||||
$ttl 38400
|
||||
one-time{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
one-time{partition}. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
8
quickstart/bind9/zones/_template/open.hosts
Normal file
8
quickstart/bind9/zones/_template/open.hosts
Normal file
@@ -0,0 +1,8 @@
|
||||
$ttl 38400
|
||||
open{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
open{partition}. IN NS 172.17.42.1.
|
15
quickstart/bind9/zones/_template/parent.com.hosts
Normal file
15
quickstart/bind9/zones/_template/parent.com.hosts
Normal file
@@ -0,0 +1,15 @@
|
||||
$ttl 38400
|
||||
$ORIGIN parent.com{partition}.
|
||||
@ IN SOA ns1.parent.com{partition}. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
parent.com{partition}. IN NS ns1.parent.com{partition}.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
already-exists IN A 6.6.6.6
|
||||
ns1 IN A 172.17.42.1
|
16
quickstart/bind9/zones/_template/shared.hosts
Normal file
16
quickstart/bind9/zones/_template/shared.hosts
Normal file
@@ -0,0 +1,16 @@
|
||||
$ttl 38400
|
||||
shared{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
shared{partition}. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
||||
delete-test-batch IN A 2.2.2.2
|
||||
update-test-batch IN A 3.3.3.3
|
17
quickstart/bind9/zones/_template/sync-test.hosts
Normal file
17
quickstart/bind9/zones/_template/sync-test.hosts
Normal file
@@ -0,0 +1,17 @@
|
||||
$ttl 38400
|
||||
sync-test{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
sync-test{partition}. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
||||
fqdn.sync-test{partition}. IN A 7.7.7.7
|
||||
_sip._tcp IN SRV 10 60 5060 foo.sync-test.
|
||||
existing.dotted IN A 9.9.9.9
|
14
quickstart/bind9/zones/_template/system-test-history.hosts
Normal file
14
quickstart/bind9/zones/_template/system-test-history.hosts
Normal file
@@ -0,0 +1,14 @@
|
||||
$ttl 38400
|
||||
system-test-history{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
system-test-history{partition}. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
16
quickstart/bind9/zones/_template/system-test.hosts
Normal file
16
quickstart/bind9/zones/_template/system-test.hosts
Normal file
@@ -0,0 +1,16 @@
|
||||
$ttl 38400
|
||||
system-test{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
system-test{partition}. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
||||
high-value-domain IN A 1.1.1.1
|
||||
high-VALUE-domain-UPPER-CASE IN A 1.1.1.1
|
14
quickstart/bind9/zones/_template/vinyldns.hosts
Normal file
14
quickstart/bind9/zones/_template/vinyldns.hosts
Normal file
@@ -0,0 +1,14 @@
|
||||
$ttl 38400
|
||||
vinyldns{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
vinyldns{partition}. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
11
quickstart/bind9/zones/_template/zone.requires.review.hosts
Normal file
11
quickstart/bind9/zones/_template/zone.requires.review.hosts
Normal file
@@ -0,0 +1,11 @@
|
||||
$ttl 38400
|
||||
zone.requires.review{partition}. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
zone.requires.review{partition}. IN NS 172.17.42.1.
|
||||
@ IN A 1.1.1.1
|
||||
delete-test-batch IN A 2.2.2.2
|
||||
update-test-batch IN A 3.3.3.3
|
@@ -0,0 +1,12 @@
|
||||
$ttl 38400
|
||||
0.0.0.1.1.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa. IN SOA 172.17.42.1. admin.vinyldns.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
0.0.0.1.1.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa. IN NS 172.17.42.1.
|
||||
4.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR www.vinyldns.
|
||||
5.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR mail.vinyldns.
|
||||
0.0.0.0.f.f.f.f.0.0.0.0.0.0.0.0 IN PTR high.value.domain.ip6.
|
||||
2.0.0.0.f.f.f.f.0.0.0.0.0.0.0.0 IN PTR needs.review.domain.ip6.
|
@@ -0,0 +1,13 @@
|
||||
$ttl 38400
|
||||
1.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa. IN SOA 172.17.42.1. admin.vinyldns.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
1.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa. IN NS 172.17.42.1.
|
||||
0.0.0.1 IN NS 172.17.42.1.
|
||||
4.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR www.vinyldns.
|
||||
5.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR mail.vinyldns.
|
||||
0.0.0.0.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR high.value.domain.ip6.
|
||||
2.0.0.0.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR needs.review.domain.ip6.
|
10
quickstart/bind9/zones/partition1/10.10.in-addr.arpa
Normal file
10
quickstart/bind9/zones/partition1/10.10.in-addr.arpa
Normal file
@@ -0,0 +1,10 @@
|
||||
$ttl 38400
|
||||
1.10.in-addr.arpa. IN SOA 172.17.42.1. admin.vinyldns.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
1.10.in-addr.arpa. IN NS 172.17.42.1.
|
||||
24.0 IN PTR www.vinyl.
|
||||
25.0 IN PTR mail.vinyl.
|
@@ -0,0 +1,11 @@
|
||||
$ttl 38400
|
||||
192/30.1.0.192.in-addr.arpa. IN SOA 172.17.42.1. admin.vinyldns.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
192/30.1.0.192.in-addr.arpa. IN NS 172.17.42.1.
|
||||
192 IN PTR portal.vinyldns.
|
||||
194 IN PTR mail.vinyldns.
|
||||
195 IN PTR test.vinyldns.
|
15
quickstart/bind9/zones/partition1/2.0.192.in-addr.arpa
Normal file
15
quickstart/bind9/zones/partition1/2.0.192.in-addr.arpa
Normal file
@@ -0,0 +1,15 @@
|
||||
$ttl 38400
|
||||
1.0.192.in-addr.arpa. IN SOA 172.17.42.1. admin.vinyldns.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
1.0.192.in-addr.arpa. IN NS 172.17.42.1.
|
||||
192/30 IN NS 172.17.42.1.
|
||||
192 IN CNAME 192.192/30.2.0.192.in-addr.arpa.
|
||||
193 IN CNAME 193.192/30.2.0.192.in-addr.arpa.
|
||||
194 IN CNAME 194.192/30.2.0.192.in-addr.arpa.
|
||||
195 IN CNAME 195.192/30.2.0.192.in-addr.arpa.
|
||||
253 IN PTR high.value.domain.ip4.
|
||||
255 IN PTR needs.review.domain.ip4
|
9
quickstart/bind9/zones/partition1/child.parent.com.hosts
Normal file
9
quickstart/bind9/zones/partition1/child.parent.com.hosts
Normal file
@@ -0,0 +1,9 @@
|
||||
$ttl 38400
|
||||
$ORIGIN child.parent.com1.
|
||||
@ IN SOA ns1.parent.com1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
@ IN NS ns1.parent.com1.
|
@@ -0,0 +1,9 @@
|
||||
$TTL 1h
|
||||
$ORIGIN dskey.example.com1.
|
||||
@ IN SOA ns1.parent.com1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
dskey.example.com1. IN NS 172.17.42.1.
|
15
quickstart/bind9/zones/partition1/dummy.hosts
Normal file
15
quickstart/bind9/zones/partition1/dummy.hosts
Normal file
@@ -0,0 +1,15 @@
|
||||
$ttl 38400
|
||||
dummy1. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
dummy1. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
||||
non-approved-delegation IN NS 7.7.7.7
|
10
quickstart/bind9/zones/partition1/example.com.hosts
Normal file
10
quickstart/bind9/zones/partition1/example.com.hosts
Normal file
@@ -0,0 +1,10 @@
|
||||
$TTL 1h
|
||||
$ORIGIN example.com1.
|
||||
@ IN SOA ns1.parent.com1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
example.com1. IN NS 172.17.42.1.
|
||||
dskey IN NS 172.17.42.1.
|
17
quickstart/bind9/zones/partition1/invalid-zone.hosts
Normal file
17
quickstart/bind9/zones/partition1/invalid-zone.hosts
Normal file
@@ -0,0 +1,17 @@
|
||||
$ttl 38400
|
||||
invalid-zone1. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
invalid-zone1. IN NS 172.17.42.1.
|
||||
invalid-zone1. IN NS not-approved.thing.com.
|
||||
invalid.child.invalid-zone1. IN NS 172.17.42.1.
|
||||
dotted.host.invalid-zone1. IN A 1.2.3.4
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
38
quickstart/bind9/zones/partition1/list-records.hosts
Normal file
38
quickstart/bind9/zones/partition1/list-records.hosts
Normal file
@@ -0,0 +1,38 @@
|
||||
$ttl 38400
|
||||
list-records1. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
list-records1. IN NS 172.17.42.1.
|
||||
00-test-list-recordsets-0-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-0-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-0-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-1-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-1-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-1-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-2-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-2-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-2-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-3-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-3-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-3-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-4-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-4-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-4-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-5-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-5-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-5-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-6-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-6-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-6-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-7-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-7-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-7-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-8-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-8-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-8-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-9-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-9-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-9-CNAME IN CNAME cname1.
|
@@ -0,0 +1,8 @@
|
||||
$ttl 38400
|
||||
list-zones-test-searched-11. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
list-zones-test-searched-11. IN NS 172.17.42.1.
|
@@ -0,0 +1,8 @@
|
||||
$ttl 38400
|
||||
list-zones-test-searched-21. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
list-zones-test-searched-21. IN NS 172.17.42.1.
|
@@ -0,0 +1,8 @@
|
||||
$ttl 38400
|
||||
list-zones-test-searched-31. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
list-zones-test-searched-31. IN NS 172.17.42.1.
|
@@ -0,0 +1,8 @@
|
||||
$ttl 38400
|
||||
list-zones-test-unfiltered-11. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
list-zones-test-unfiltered-11. IN NS 172.17.42.1.
|
@@ -0,0 +1,8 @@
|
||||
$ttl 38400
|
||||
list-zones-test-unfiltered-21. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
list-zones-test-unfiltered-21. IN NS 172.17.42.1.
|
13
quickstart/bind9/zones/partition1/non.test.shared.hosts
Normal file
13
quickstart/bind9/zones/partition1/non.test.shared.hosts
Normal file
@@ -0,0 +1,13 @@
|
||||
$ttl 38400
|
||||
non.test.shared1. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
non.test.shared1. IN NS 172.17.42.1.
|
||||
@ IN A 1.1.1.1
|
||||
delete-test-batch IN A 2.2.2.2
|
||||
update-test-batch IN A 3.3.3.3
|
||||
delete-test IN A 4.4.4.4
|
||||
update-test IN A 5.5.5.5
|
9
quickstart/bind9/zones/partition1/not.loaded.hosts
Normal file
9
quickstart/bind9/zones/partition1/not.loaded.hosts
Normal file
@@ -0,0 +1,9 @@
|
||||
$ttl 38400
|
||||
not.loaded1. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
not.loaded1. IN NS 172.17.42.1.
|
||||
foo IN A 1.1.1.1
|
16
quickstart/bind9/zones/partition1/ok.hosts
Normal file
16
quickstart/bind9/zones/partition1/ok.hosts
Normal file
@@ -0,0 +1,16 @@
|
||||
$ttl 38400
|
||||
ok1. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
ok1. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
||||
dotted.a IN A 7.7.7.7
|
||||
dottedc.name IN CNAME test.example.com
|
14
quickstart/bind9/zones/partition1/old-shared.hosts
Normal file
14
quickstart/bind9/zones/partition1/old-shared.hosts
Normal file
@@ -0,0 +1,14 @@
|
||||
$ttl 38400
|
||||
old-shared1. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
old-shared1. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
14
quickstart/bind9/zones/partition1/old-vinyldns2.hosts
Normal file
14
quickstart/bind9/zones/partition1/old-vinyldns2.hosts
Normal file
@@ -0,0 +1,14 @@
|
||||
$ttl 38400
|
||||
old-vinyldns21. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
old-vinyldns21. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
14
quickstart/bind9/zones/partition1/old-vinyldns3.hosts
Normal file
14
quickstart/bind9/zones/partition1/old-vinyldns3.hosts
Normal file
@@ -0,0 +1,14 @@
|
||||
$ttl 38400
|
||||
old-vinyldns31. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
old-vinyldns31. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
8
quickstart/bind9/zones/partition1/one-time-shared.hosts
Normal file
8
quickstart/bind9/zones/partition1/one-time-shared.hosts
Normal file
@@ -0,0 +1,8 @@
|
||||
$ttl 38400
|
||||
one-time-shared1. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
one-time-shared1. IN NS 172.17.42.1.
|
14
quickstart/bind9/zones/partition1/one-time.hosts
Normal file
14
quickstart/bind9/zones/partition1/one-time.hosts
Normal file
@@ -0,0 +1,14 @@
|
||||
$ttl 38400
|
||||
one-time1. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
one-time1. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
8
quickstart/bind9/zones/partition1/open.hosts
Normal file
8
quickstart/bind9/zones/partition1/open.hosts
Normal file
@@ -0,0 +1,8 @@
|
||||
$ttl 38400
|
||||
open1. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
open1. IN NS 172.17.42.1.
|
15
quickstart/bind9/zones/partition1/parent.com.hosts
Normal file
15
quickstart/bind9/zones/partition1/parent.com.hosts
Normal file
@@ -0,0 +1,15 @@
|
||||
$ttl 38400
|
||||
$ORIGIN parent.com1.
|
||||
@ IN SOA ns1.parent.com1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
parent.com1. IN NS ns1.parent.com1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
already-exists IN A 6.6.6.6
|
||||
ns1 IN A 172.17.42.1
|
16
quickstart/bind9/zones/partition1/shared.hosts
Normal file
16
quickstart/bind9/zones/partition1/shared.hosts
Normal file
@@ -0,0 +1,16 @@
|
||||
$ttl 38400
|
||||
shared1. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
shared1. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
||||
delete-test-batch IN A 2.2.2.2
|
||||
update-test-batch IN A 3.3.3.3
|
17
quickstart/bind9/zones/partition1/sync-test.hosts
Normal file
17
quickstart/bind9/zones/partition1/sync-test.hosts
Normal file
@@ -0,0 +1,17 @@
|
||||
$ttl 38400
|
||||
sync-test1. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
sync-test1. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
||||
fqdn.sync-test1. IN A 7.7.7.7
|
||||
_sip._tcp IN SRV 10 60 5060 foo.sync-test.
|
||||
existing.dotted IN A 9.9.9.9
|
14
quickstart/bind9/zones/partition1/system-test-history.hosts
Normal file
14
quickstart/bind9/zones/partition1/system-test-history.hosts
Normal file
@@ -0,0 +1,14 @@
|
||||
$ttl 38400
|
||||
system-test-history1. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
system-test-history1. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
16
quickstart/bind9/zones/partition1/system-test.hosts
Normal file
16
quickstart/bind9/zones/partition1/system-test.hosts
Normal file
@@ -0,0 +1,16 @@
|
||||
$ttl 38400
|
||||
system-test1. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
system-test1. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
||||
high-value-domain IN A 1.1.1.1
|
||||
high-VALUE-domain-UPPER-CASE IN A 1.1.1.1
|
14
quickstart/bind9/zones/partition1/vinyldns.hosts
Normal file
14
quickstart/bind9/zones/partition1/vinyldns.hosts
Normal file
@@ -0,0 +1,14 @@
|
||||
$ttl 38400
|
||||
vinyldns1. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
vinyldns1. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
11
quickstart/bind9/zones/partition1/zone.requires.review.hosts
Normal file
11
quickstart/bind9/zones/partition1/zone.requires.review.hosts
Normal file
@@ -0,0 +1,11 @@
|
||||
$ttl 38400
|
||||
zone.requires.review1. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
zone.requires.review1. IN NS 172.17.42.1.
|
||||
@ IN A 1.1.1.1
|
||||
delete-test-batch IN A 2.2.2.2
|
||||
update-test-batch IN A 3.3.3.3
|
@@ -0,0 +1,12 @@
|
||||
$ttl 38400
|
||||
0.0.0.1.2.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa. IN SOA 172.17.42.1. admin.vinyldns.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
0.0.0.1.2.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa. IN NS 172.17.42.1.
|
||||
4.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR www.vinyldns.
|
||||
5.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR mail.vinyldns.
|
||||
0.0.0.0.f.f.f.f.0.0.0.0.0.0.0.0 IN PTR high.value.domain.ip6.
|
||||
2.0.0.0.f.f.f.f.0.0.0.0.0.0.0.0 IN PTR needs.review.domain.ip6.
|
@@ -0,0 +1,13 @@
|
||||
$ttl 38400
|
||||
2.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa. IN SOA 172.17.42.1. admin.vinyldns.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
2.9.e.f.c.c.7.2.9.6.d.f.ip6.arpa. IN NS 172.17.42.1.
|
||||
0.0.0.1 IN NS 172.17.42.1.
|
||||
4.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR www.vinyldns.
|
||||
5.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR mail.vinyldns.
|
||||
0.0.0.0.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR high.value.domain.ip6.
|
||||
2.0.0.0.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR needs.review.domain.ip6.
|
10
quickstart/bind9/zones/partition2/10.10.in-addr.arpa
Normal file
10
quickstart/bind9/zones/partition2/10.10.in-addr.arpa
Normal file
@@ -0,0 +1,10 @@
|
||||
$ttl 38400
|
||||
2.10.in-addr.arpa. IN SOA 172.17.42.1. admin.vinyldns.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
2.10.in-addr.arpa. IN NS 172.17.42.1.
|
||||
24.0 IN PTR www.vinyl.
|
||||
25.0 IN PTR mail.vinyl.
|
@@ -0,0 +1,11 @@
|
||||
$ttl 38400
|
||||
192/30.2.0.192.in-addr.arpa. IN SOA 172.17.42.1. admin.vinyldns.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
192/30.2.0.192.in-addr.arpa. IN NS 172.17.42.1.
|
||||
192 IN PTR portal.vinyldns.
|
||||
194 IN PTR mail.vinyldns.
|
||||
195 IN PTR test.vinyldns.
|
15
quickstart/bind9/zones/partition2/2.0.192.in-addr.arpa
Normal file
15
quickstart/bind9/zones/partition2/2.0.192.in-addr.arpa
Normal file
@@ -0,0 +1,15 @@
|
||||
$ttl 38400
|
||||
2.0.192.in-addr.arpa. IN SOA 172.17.42.1. admin.vinyldns.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
2.0.192.in-addr.arpa. IN NS 172.17.42.1.
|
||||
192/30 IN NS 172.17.42.1.
|
||||
192 IN CNAME 192.192/30.2.0.192.in-addr.arpa.
|
||||
193 IN CNAME 193.192/30.2.0.192.in-addr.arpa.
|
||||
194 IN CNAME 194.192/30.2.0.192.in-addr.arpa.
|
||||
195 IN CNAME 195.192/30.2.0.192.in-addr.arpa.
|
||||
253 IN PTR high.value.domain.ip4.
|
||||
255 IN PTR needs.review.domain.ip4
|
9
quickstart/bind9/zones/partition2/child.parent.com.hosts
Normal file
9
quickstart/bind9/zones/partition2/child.parent.com.hosts
Normal file
@@ -0,0 +1,9 @@
|
||||
$ttl 38400
|
||||
$ORIGIN child.parent.com2.
|
||||
@ IN SOA ns1.parent.com2. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
@ IN NS ns1.parent.com2.
|
@@ -0,0 +1,9 @@
|
||||
$TTL 1h
|
||||
$ORIGIN dskey.example.com2.
|
||||
@ IN SOA ns1.parent.com2. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
dskey.example.com2. IN NS 172.17.42.1.
|
15
quickstart/bind9/zones/partition2/dummy.hosts
Normal file
15
quickstart/bind9/zones/partition2/dummy.hosts
Normal file
@@ -0,0 +1,15 @@
|
||||
$ttl 38400
|
||||
dummy2. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
dummy2. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
||||
non-approved-delegation IN NS 7.7.7.7
|
10
quickstart/bind9/zones/partition2/example.com.hosts
Normal file
10
quickstart/bind9/zones/partition2/example.com.hosts
Normal file
@@ -0,0 +1,10 @@
|
||||
$TTL 1h
|
||||
$ORIGIN example.com2.
|
||||
@ IN SOA ns1.parent.com2. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
example.com2. IN NS 172.17.42.1.
|
||||
dskey IN NS 172.17.42.1.
|
17
quickstart/bind9/zones/partition2/invalid-zone.hosts
Normal file
17
quickstart/bind9/zones/partition2/invalid-zone.hosts
Normal file
@@ -0,0 +1,17 @@
|
||||
$ttl 38400
|
||||
invalid-zone2. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
invalid-zone2. IN NS 172.17.42.1.
|
||||
invalid-zone2. IN NS not-approved.thing.com.
|
||||
invalid.child.invalid-zone2. IN NS 172.17.42.1.
|
||||
dotted.host.invalid-zone2. IN A 1.2.3.4
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
38
quickstart/bind9/zones/partition2/list-records.hosts
Normal file
38
quickstart/bind9/zones/partition2/list-records.hosts
Normal file
@@ -0,0 +1,38 @@
|
||||
$ttl 38400
|
||||
list-records2. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
list-records2. IN NS 172.17.42.1.
|
||||
00-test-list-recordsets-0-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-0-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-0-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-1-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-1-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-1-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-2-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-2-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-2-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-3-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-3-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-3-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-4-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-4-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-4-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-5-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-5-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-5-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-6-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-6-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-6-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-7-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-7-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-7-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-8-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-8-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-8-CNAME IN CNAME cname1.
|
||||
00-test-list-recordsets-9-A IN A 10.1.1.1
|
||||
00-test-list-recordsets-9-A IN A 10.2.2.2
|
||||
00-test-list-recordsets-9-CNAME IN CNAME cname1.
|
@@ -0,0 +1,8 @@
|
||||
$ttl 38400
|
||||
list-zones-test-searched-12. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
list-zones-test-searched-12. IN NS 172.17.42.1.
|
@@ -0,0 +1,8 @@
|
||||
$ttl 38400
|
||||
list-zones-test-searched-22. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
list-zones-test-searched-22. IN NS 172.17.42.1.
|
@@ -0,0 +1,8 @@
|
||||
$ttl 38400
|
||||
list-zones-test-searched-32. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
list-zones-test-searched-32. IN NS 172.17.42.1.
|
@@ -0,0 +1,8 @@
|
||||
$ttl 38400
|
||||
list-zones-test-unfiltered-12. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
list-zones-test-unfiltered-12. IN NS 172.17.42.1.
|
@@ -0,0 +1,8 @@
|
||||
$ttl 38400
|
||||
list-zones-test-unfiltered-22. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
list-zones-test-unfiltered-22. IN NS 172.17.42.1.
|
13
quickstart/bind9/zones/partition2/non.test.shared.hosts
Normal file
13
quickstart/bind9/zones/partition2/non.test.shared.hosts
Normal file
@@ -0,0 +1,13 @@
|
||||
$ttl 38400
|
||||
non.test.shared2. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
non.test.shared2. IN NS 172.17.42.1.
|
||||
@ IN A 1.1.1.1
|
||||
delete-test-batch IN A 2.2.2.2
|
||||
update-test-batch IN A 3.3.3.3
|
||||
delete-test IN A 4.4.4.4
|
||||
update-test IN A 5.5.5.5
|
9
quickstart/bind9/zones/partition2/not.loaded.hosts
Normal file
9
quickstart/bind9/zones/partition2/not.loaded.hosts
Normal file
@@ -0,0 +1,9 @@
|
||||
$ttl 38400
|
||||
not.loaded2. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
not.loaded2. IN NS 172.17.42.1.
|
||||
foo IN A 1.1.1.1
|
16
quickstart/bind9/zones/partition2/ok.hosts
Normal file
16
quickstart/bind9/zones/partition2/ok.hosts
Normal file
@@ -0,0 +1,16 @@
|
||||
$ttl 38400
|
||||
ok2. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
ok2. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
||||
dotted.a IN A 7.7.7.7
|
||||
dottedc.name IN CNAME test.example.com
|
14
quickstart/bind9/zones/partition2/old-shared.hosts
Normal file
14
quickstart/bind9/zones/partition2/old-shared.hosts
Normal file
@@ -0,0 +1,14 @@
|
||||
$ttl 38400
|
||||
old-shared2. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
old-shared2. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
14
quickstart/bind9/zones/partition2/old-vinyldns2.hosts
Normal file
14
quickstart/bind9/zones/partition2/old-vinyldns2.hosts
Normal file
@@ -0,0 +1,14 @@
|
||||
$ttl 38400
|
||||
old-vinyldns22. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
old-vinyldns22. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
14
quickstart/bind9/zones/partition2/old-vinyldns3.hosts
Normal file
14
quickstart/bind9/zones/partition2/old-vinyldns3.hosts
Normal file
@@ -0,0 +1,14 @@
|
||||
$ttl 38400
|
||||
old-vinyldns32. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
old-vinyldns32. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
8
quickstart/bind9/zones/partition2/one-time-shared.hosts
Normal file
8
quickstart/bind9/zones/partition2/one-time-shared.hosts
Normal file
@@ -0,0 +1,8 @@
|
||||
$ttl 38400
|
||||
one-time-shared2. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
one-time-shared2. IN NS 172.17.42.1.
|
14
quickstart/bind9/zones/partition2/one-time.hosts
Normal file
14
quickstart/bind9/zones/partition2/one-time.hosts
Normal file
@@ -0,0 +1,14 @@
|
||||
$ttl 38400
|
||||
one-time2. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
one-time2. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
8
quickstart/bind9/zones/partition2/open.hosts
Normal file
8
quickstart/bind9/zones/partition2/open.hosts
Normal file
@@ -0,0 +1,8 @@
|
||||
$ttl 38400
|
||||
open2. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
open2. IN NS 172.17.42.1.
|
15
quickstart/bind9/zones/partition2/parent.com.hosts
Normal file
15
quickstart/bind9/zones/partition2/parent.com.hosts
Normal file
@@ -0,0 +1,15 @@
|
||||
$ttl 38400
|
||||
$ORIGIN parent.com2.
|
||||
@ IN SOA ns1.parent.com2. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
parent.com2. IN NS ns1.parent.com2.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
already-exists IN A 6.6.6.6
|
||||
ns1 IN A 172.17.42.1
|
16
quickstart/bind9/zones/partition2/shared.hosts
Normal file
16
quickstart/bind9/zones/partition2/shared.hosts
Normal file
@@ -0,0 +1,16 @@
|
||||
$ttl 38400
|
||||
shared2. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
shared2. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
||||
delete-test-batch IN A 2.2.2.2
|
||||
update-test-batch IN A 3.3.3.3
|
17
quickstart/bind9/zones/partition2/sync-test.hosts
Normal file
17
quickstart/bind9/zones/partition2/sync-test.hosts
Normal file
@@ -0,0 +1,17 @@
|
||||
$ttl 38400
|
||||
sync-test2. IN SOA 172.17.42.1. admin.test.com. (
|
||||
1439234395
|
||||
10800
|
||||
3600
|
||||
604800
|
||||
38400 )
|
||||
sync-test2. IN NS 172.17.42.1.
|
||||
jenkins IN A 10.1.1.1
|
||||
foo IN A 2.2.2.2
|
||||
test IN A 3.3.3.3
|
||||
test IN A 4.4.4.4
|
||||
@ IN A 5.5.5.5
|
||||
already-exists IN A 6.6.6.6
|
||||
fqdn.sync-test2. IN A 7.7.7.7
|
||||
_sip._tcp IN SRV 10 60 5060 foo.sync-test.
|
||||
existing.dotted IN A 9.9.9.9
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user