coredns: docker compose stack with Vultr zone import
- Auto plugin loads zones-prepared/*.zone (regex zone-name extraction) - scripts/prepare-zones.sh transforms raw Vultr exports: * synthesizes SOA (omitted by Vultr; CoreDNS requires it) * prepends @ to leading-TAB apex lines to disambiguate owner inheritance * dot-terminates NS/MX/CNAME rdata so $ORIGIN doesn't double-suffix - DNS_PORT defaults to 1053 (5353=avahi, 53=libvirt dnsmasq on this host) - Forwards non-authoritative queries to 1.1.1.1/1.0.0.1/9.9.9.9 - Makefile targets: prep, up, down, reload, test, logs - 91 zones loaded
This commit is contained in:
commit
10867ee319
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
# Prepared zones are generated from zones/ by scripts/prepare-zones.sh
|
||||
zones-prepared/*.zone
|
||||
|
||||
# Local-only env overrides
|
||||
.env.local
|
||||
25
Corefile
Normal file
25
Corefile
Normal file
@ -0,0 +1,25 @@
|
||||
. {
|
||||
# Authoritative: load every <zone>.zone in /zones via the auto plugin.
|
||||
# Filename pattern (.*)\.zone yields the zone name from the first group.
|
||||
# CoreDNS reloads modified files every 30s.
|
||||
auto {
|
||||
directory /zones (.*)\.zone {1}
|
||||
reload 30s
|
||||
}
|
||||
|
||||
# Anything not authoritative falls through to upstream resolvers.
|
||||
forward . 1.1.1.1 1.0.0.1 9.9.9.9 {
|
||||
max_concurrent 1000
|
||||
}
|
||||
|
||||
# In-memory cache (TTL clamp 30s for both pos/neg).
|
||||
cache 30
|
||||
|
||||
# Operational plugins
|
||||
health :8080
|
||||
prometheus :9153
|
||||
errors
|
||||
log
|
||||
loop
|
||||
reload 10s
|
||||
}
|
||||
39
Makefile
Normal file
39
Makefile
Normal file
@ -0,0 +1,39 @@
|
||||
.DEFAULT_GOAL := help
|
||||
SHELL := /usr/bin/env bash
|
||||
COMPOSE := docker compose
|
||||
|
||||
.PHONY: help prep up down restart logs ps test reload clean
|
||||
|
||||
help: ## Show this help
|
||||
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf " \033[36m%-12s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
|
||||
|
||||
prep: ## Re-inject SOA records into all zones (writes zones-prepared/)
|
||||
@./scripts/prepare-zones.sh
|
||||
|
||||
up: prep ## Start CoreDNS (prepares zones first)
|
||||
$(COMPOSE) up -d
|
||||
@sleep 2 && $(COMPOSE) logs --tail=20 coredns
|
||||
|
||||
down: ## Stop & remove the container
|
||||
$(COMPOSE) down
|
||||
|
||||
restart: ## Restart CoreDNS (does not re-prep zones)
|
||||
$(COMPOSE) restart coredns
|
||||
|
||||
reload: prep ## Re-prep zones; CoreDNS auto-plugin will pick changes up
|
||||
@echo "Zones re-prepared. CoreDNS reloads files every 30s (auto plugin)."
|
||||
|
||||
logs: ## Tail CoreDNS logs
|
||||
$(COMPOSE) logs -f coredns
|
||||
|
||||
ps: ## Show container status
|
||||
$(COMPOSE) ps
|
||||
|
||||
test: ## Smoke-test against a known zone (uses DNS_PORT from .env)
|
||||
@. ./.env && echo "Querying acrazy.org @ 127.0.0.1:$$DNS_PORT" && \
|
||||
dig @127.0.0.1 -p $$DNS_PORT acrazy.org SOA +short && \
|
||||
dig @127.0.0.1 -p $$DNS_PORT acrazy.org NS +short && \
|
||||
dig @127.0.0.1 -p $$DNS_PORT or.acrazy.org A +short
|
||||
|
||||
clean: down ## Remove containers + prepared zones
|
||||
rm -rf zones-prepared/*.zone
|
||||
20
docker-compose.yml
Normal file
20
docker-compose.yml
Normal file
@ -0,0 +1,20 @@
|
||||
services:
|
||||
coredns:
|
||||
image: ${COREDNS_IMAGE}
|
||||
container_name: coredns
|
||||
restart: unless-stopped
|
||||
command: ["-conf", "/etc/coredns/Corefile"]
|
||||
ports:
|
||||
- "${DNS_PORT}:53/udp"
|
||||
- "${DNS_PORT}:53/tcp"
|
||||
- "${METRICS_PORT}:9153/tcp"
|
||||
- "${HEALTH_PORT}:8080/tcp"
|
||||
volumes:
|
||||
- ./Corefile:/etc/coredns/Corefile:ro
|
||||
- ./zones-prepared:/zones:ro
|
||||
healthcheck:
|
||||
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:8080/health"]
|
||||
interval: 30s
|
||||
timeout: 5s
|
||||
retries: 3
|
||||
start_period: 10s
|
||||
85
scripts/prepare-zones.sh
Executable file
85
scripts/prepare-zones.sh
Executable file
@ -0,0 +1,85 @@
|
||||
#!/usr/bin/env bash
|
||||
# Injects an SOA record into each raw Vultr zone file and writes the result
|
||||
# to zones-prepared/. Source files in zones/ are never modified.
|
||||
#
|
||||
# Two corrections applied to each zone:
|
||||
# 1. Synthesize SOA — Vultr's export omits it, but CoreDNS rejects zones
|
||||
# without one. Serial is YYYYMMDD01 (override via SERIAL env var).
|
||||
# 2. Add trailing dots to NS/MX/CNAME rdata. Vultr exports unqualified
|
||||
# hostnames (e.g. "ns1.vultr.com") which $ORIGIN then incorrectly
|
||||
# suffixes with the zone name. We dot-terminate any rdata token that
|
||||
# contains a "." and doesn't already end in one.
|
||||
set -euo pipefail
|
||||
|
||||
SRC_DIR="${SRC_DIR:-zones}"
|
||||
DST_DIR="${DST_DIR:-zones-prepared}"
|
||||
SERIAL="${SERIAL:-$(date +%Y%m%d)01}"
|
||||
ADMIN_EMAIL="${ADMIN_EMAIL:-admin}" # becomes admin.<zone>.
|
||||
|
||||
mkdir -p "$DST_DIR"
|
||||
|
||||
count=0
|
||||
for src in "$SRC_DIR"/*.zone; do
|
||||
fname=$(basename "$src")
|
||||
zone="${fname%.zone}"
|
||||
dst="$DST_DIR/$fname"
|
||||
|
||||
{
|
||||
echo "; Auto-prepared by scripts/prepare-zones.sh on $(date -Iseconds)"
|
||||
echo "; Source: $src"
|
||||
echo "\$ORIGIN ${zone}."
|
||||
echo "\$TTL 3600"
|
||||
echo "@ 3600 IN SOA ns1.vultr.com. ${ADMIN_EMAIL}.${zone}. ("
|
||||
echo " ${SERIAL} ; serial"
|
||||
echo " 3600 ; refresh (1 hour)"
|
||||
echo " 1800 ; retry (30 minutes)"
|
||||
echo " 604800 ; expire (1 week)"
|
||||
echo " 300 ; minimum (5 minutes)"
|
||||
echo " )"
|
||||
echo ""
|
||||
|
||||
# Strip source's own $ORIGIN/$TTL/comments, then apply two fixes:
|
||||
#
|
||||
# (a) Apex disambiguation. Vultr uses leading-TAB-then-TTL to mean
|
||||
# "apex record", but RFC 1035 says lines starting with whitespace
|
||||
# inherit the *previous* owner. When a non-apex record precedes
|
||||
# a leading-TAB apex line, the apex line silently gets attached
|
||||
# to the wrong name. Prepend "@" to make apex explicit.
|
||||
#
|
||||
# (b) Dot-terminate NS/MX/CNAME rdata. Vultr exports unqualified
|
||||
# hostnames which $ORIGIN then incorrectly suffixes.
|
||||
#
|
||||
# We never re-emit via awk fields (preserves whitespace inside the
|
||||
# line for owner-inheritance correctness in any unfixed lines).
|
||||
grep -vE '^\$(ORIGIN|TTL)|^;' "$src" | awk '
|
||||
NF == 0 { print; next }
|
||||
{
|
||||
# (a) Detect Vultr-style apex line: leading whitespace, then TTL,
|
||||
# then "IN". Prepend "@" so the owner is explicit.
|
||||
if ($0 ~ /^[[:space:]]+[0-9]+[[:space:]]+IN[[:space:]]/) {
|
||||
sub(/^[[:space:]]+/, "@\t", $0)
|
||||
# awk has re-split $0 — re-parse for the next step.
|
||||
# (NF/$N references below are based on the modified $0.)
|
||||
}
|
||||
|
||||
# (b) Dot-terminate trailing hostname for NS/CNAME/MX rdata.
|
||||
type = ""
|
||||
for (i = 1; i <= NF; i++) {
|
||||
if ($i == "NS" || $i == "CNAME" || $i == "MX") { type = $i; break }
|
||||
}
|
||||
if (type != "") {
|
||||
target = $NF
|
||||
if (index(target, ".") > 0 && substr(target, length(target), 1) != ".") {
|
||||
sub(/[[:space:]]+$/, "", $0)
|
||||
print $0 "."
|
||||
next
|
||||
}
|
||||
}
|
||||
print
|
||||
}
|
||||
'
|
||||
} > "$dst"
|
||||
count=$((count + 1))
|
||||
done
|
||||
|
||||
echo "Prepared ${count} zone files in ${DST_DIR}/ (serial=${SERIAL})"
|
||||
41
zones/acrazy.org.zone
Normal file
41
zones/acrazy.org.zone
Normal file
@ -0,0 +1,41 @@
|
||||
; Zone file for acrazy.org
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN acrazy.org.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
or 300 IN A 74.91.22.233
|
||||
l 300 IN A 100.79.95.190
|
||||
*.l 300 IN A 100.79.95.190
|
||||
b 300 IN A 108.61.229.209
|
||||
dootie 300 IN A 108.61.229.209
|
||||
* 300 IN CNAME acrazy.org
|
||||
*.dootie 300 IN CNAME dootie.acrazy.org
|
||||
300 IN MX 10 acrazy.org
|
||||
_acme-challenge 300 IN TXT "eIA2Ii4EA7cfmjVcTUvOrM5nc4nFRRYpjvxtpEYzPG4"
|
||||
_acme-challenge 300 IN TXT "DQxkmE7D658WT3-MR5xa7x5NW85L0C8Xq80Iv9-ZF60"
|
||||
_acme-challenge 300 IN TXT "uOz583TEOpuME0AiJgaZYusECS8VDCP55yBuGw9WL58"
|
||||
_acme-challenge 300 IN TXT "0ZDa-kNYA-D5qM2c2_RwUJppwIVhbfV4kPw_urWCXzU"
|
||||
_acme-challenge 300 IN TXT "nMa6SYDLhc7zUxoj7HzF-eYj3kesGoG7JLH3WnIB6Os"
|
||||
_acme-challenge 300 IN TXT "rDK5pFvMHlH4NFc0L4q3g9DpLfBaO39LlXFg7UnFYBs"
|
||||
_acme-challenge 300 IN TXT "9TYcG6wfz4wuSE6OoYWDP6GeUs7zNaow0YfBHSmZUAM"
|
||||
_acme-challenge 300 IN TXT "Ogv1O_ccYh_NcA_GZ0c-rnBn1C-2HqBvywZL-GmkZi0"
|
||||
_acme-challenge 300 IN TXT "gs1ib1BZWPhJnl9P2cHg8DVp4exQzRlWuK5nsojkN8w"
|
||||
_acme-challenge 300 IN TXT "T1vpnm26TqUVmekX10TSuPkoVsh6Npn7Q3SLqfwsd9U"
|
||||
_acme-challenge 300 IN TXT "tSKgr-3mIycjPBkCH0biEL7bwSOmyLHosWaYBZlDD1I"
|
||||
_acme-challenge 300 IN TXT "pT2NA1Wy_7IsxvMhsB6RX8Q0v2-gI1asl6L_mWwTCCE"
|
||||
_acme-challenge 300 IN TXT "2898oFCfWYJEz6ftWLL7qEMh8-eT_uQleSWiVHalEmk"
|
||||
_acme-challenge 300 IN TXT "mg55APlmRSX2MhRXLsY7E4JjIlQ2rxV5n68dltG7gLs"
|
||||
_acme-challenge.mc.l 300 IN TXT "iluaJ10DaYv9nLYOtqLJ5QAfdfv9f7N2lGT1rVk7mZg"
|
||||
_acme-challenge.mc.l 300 IN TXT "BEecbLO_EBYf4F31Vbf_LTQSJuBLBbgcMglQRanJv6U"
|
||||
_acme-challenge.mc.l 300 IN TXT "vgjdoUmdabr6iWKuA7jGpCFfE9W03qCM0RVLn1nQRWQ"
|
||||
_acme-challenge.api.l 300 IN TXT "3kFf8Z9fM8dtjRbb-OFcjNfkzfu-DShkMm0hdzxRaOI"
|
||||
_acme-challenge.l 300 IN TXT "3wseUmaL1PND6qn3HzTnQF_uaegJ-VHI1voFGw5j4Fs"
|
||||
_acme-challenge.l 300 IN TXT "0HXwA0Ij6K5pVWO6Liv9j3nzvZyiH6HONcgREA2UDaA"
|
||||
_acme-challenge.l 300 IN TXT "WmE8LR03vR1ua26QK58PxCmfxQ-_369sXIezIr8cNoM"
|
||||
_acme-challenge.l 300 IN TXT "Ike1gqcB3VI7WwKoH3T8zqbpYSo2qRPrq0iqzB5wmFU"
|
||||
_acme-challenge.langfuse.dootie 300 IN TXT "1WJ-mHJ2SQuuC5CgxbYY6euwiMZm1dVicfIkeluovTY"
|
||||
_acme-challenge.dootie.l 300 IN TXT "uW30ozl6AKA_q9FWPlvaxuwbgBJ-TgTsXxA3JFtn0tg"
|
||||
_acme-challenge.langfuse.dootie.l 300 IN TXT "P6tOVfwB8OBbI6AqnIuHXKQc05FjuABhGihUHwzpMOs"
|
||||
17
zones/automaton.global.zone
Normal file
17
zones/automaton.global.zone
Normal file
@ -0,0 +1,17 @@
|
||||
; Zone file for automaton.global
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN automaton.global.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 144.202.93.19
|
||||
cloud 300 IN A 144.202.93.19
|
||||
join 300 IN A 108.61.194.241
|
||||
jump 900 IN A 134.215.239.30
|
||||
jump1 3600 IN A 134.215.239.30
|
||||
test 300 IN A 1.2.3.4
|
||||
* 300 IN CNAME automaton.global
|
||||
mail 300 IN CNAME mail.supported.systems
|
||||
300 IN MX 10 mail.supported.systems
|
||||
300 IN TXT "v=spf1 mx a:mail.supported.systems ~all"
|
||||
11
zones/automaton.host.zone
Normal file
11
zones/automaton.host.zone
Normal file
@ -0,0 +1,11 @@
|
||||
; Zone file for automaton.host
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN automaton.host.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 50.52.72.153
|
||||
krambu 300 IN A 134.215.239.30
|
||||
* 300 IN CNAME automaton.host
|
||||
300 IN MX 10 mail.supported.systems
|
||||
10
zones/blender.bet.zone
Normal file
10
zones/blender.bet.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for blender.bet
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN blender.bet.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME blender.bet
|
||||
300 IN MX 10 blender.bet
|
||||
10
zones/blender.cam.zone
Normal file
10
zones/blender.cam.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for blender.cam
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN blender.cam.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME blender.cam
|
||||
300 IN MX 10 blender.cam
|
||||
10
zones/blender.partners.zone
Normal file
10
zones/blender.partners.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for blender.partners
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN blender.partners.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME blender.partners
|
||||
300 IN MX 10 blender.partners
|
||||
10
zones/blender.quest.zone
Normal file
10
zones/blender.quest.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for blender.quest
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN blender.quest.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME blender.quest
|
||||
300 IN MX 10 blender.quest
|
||||
13
zones/blender.systems.zone
Normal file
13
zones/blender.systems.zone
Normal file
@ -0,0 +1,13 @@
|
||||
; Zone file for blender.systems
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN blender.systems.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
l 300 IN A 127.0.0.1
|
||||
* 300 IN CNAME blender.systems
|
||||
*.l 300 IN CNAME blender.systems
|
||||
300 IN MX 10 mail.supported.systems
|
||||
300 IN TXT "v=spf1 mx a:mail.supported.systems ~all"
|
||||
11
zones/cloud-dine.com.zone
Normal file
11
zones/cloud-dine.com.zone
Normal file
@ -0,0 +1,11 @@
|
||||
; Zone file for cloud-dine.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN cloud-dine.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 72.24.184.132
|
||||
* 300 IN CNAME cloud-dine.com
|
||||
300 IN MX 10 mail.supported.systems
|
||||
3600 IN TXT "v=spf1 mx a:mail.supported.systems ~all"
|
||||
32
zones/context.bet.zone
Normal file
32
zones/context.bet.zone
Normal file
@ -0,0 +1,32 @@
|
||||
; Zone file for context.bet
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN context.bet.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME context.bet
|
||||
300 IN MX 10 context.bet
|
||||
_acme-challenge.studio 300 IN TXT "Li380TywS7mThEIWuivl7P2Zkt3xM5Ug_dYEa-oN238"
|
||||
_acme-challenge.studio 300 IN TXT "KHzdoVgJnWS-pYx0MFaeqzMxkAKMIffHYBE-FgV_gz8"
|
||||
_acme-challenge 300 IN TXT "YvpqyCHZnlMxlA5I7PJu4FXLXRlObIdvTmd07P_Hctg"
|
||||
_acme-challenge 300 IN TXT "v69JehSdw3zzXbpMXt78_ehOwyK_lB95xazpar9QCUw"
|
||||
_acme-challenge.studio 300 IN TXT "-jLi-_E2LQeDcK-90-AsaMSmjIwVuqSpG_Ec6Caqy0k"
|
||||
_acme-challenge 300 IN TXT "8hQvvSl-TOe9-1zh-SX0MuqBdNLkcEA_-qreWrJfCCc"
|
||||
_acme-challenge 300 IN TXT "oidj3oOo-olO9H9lGoM4Nz4b9Uu5StG7N9Rl9sr23jA"
|
||||
_acme-challenge.studio 300 IN TXT "iDNJ2D5UE1OdScdVr_lP4uzZMxIqsdnM7a8aVqIT19k"
|
||||
_acme-challenge.studio 300 IN TXT "ycghCSKyjTMG4bvykVnTvQcphzWN5eYg00dUfnqVSFc"
|
||||
_acme-challenge 300 IN TXT "XyNd3vAko2O8Mkcyls7doan9uW5lG35SGPv-SmyxivQ"
|
||||
_acme-challenge 300 IN TXT "bzSz7HZ4JgWEroq1WfsIvQRR1zgjQy12BRjUhYqGFBw"
|
||||
_acme-challenge.studio 300 IN TXT "99qVcWYwN_XUWXC586zZppJi5cLPfQfivCeRhXXbRqw"
|
||||
_acme-challenge 300 IN TXT "p1ZqtSwtskcGdDNXB5q2s8tvKD2vm7vptvQNGjmXY1M"
|
||||
_acme-challenge 300 IN TXT "G2GOJARalsSvrMPBxNB8dHHK2hfSEvuZJ6BiH-n2uIs"
|
||||
_acme-challenge.studio 300 IN TXT "Td4SJyBCFrlG0A7fkzg7NXgxyK1ZJ6dzD2tb4UwcmcU"
|
||||
_acme-challenge.studio 300 IN TXT "nV2gUz5waLhkPJIyL_MC1wtPOjivETBxYQhVYehZIX0"
|
||||
_acme-challenge 300 IN TXT "uKLKmUQtvlP5ma77toyn8rtmM4dHdqUQdQIW5pSHHUU"
|
||||
_acme-challenge 300 IN TXT "8lJ4Ury26qHtSwLaABC9UB_ZdFja3ZmujmUg7-5Y4Bg"
|
||||
_acme-challenge 300 IN TXT "FSMb7Ru6xgzIIUvlzSzzVnOsGQD2Dgxm_qhx6hyymnE"
|
||||
_acme-challenge 300 IN TXT "yB9kMNkHqVDe5vMvkgN5SFxiXgDSlSyUgldfW971BXw"
|
||||
_acme-challenge 300 IN TXT "dpheXmHW0vH_NW5t8Ie_OWXiJkZT0l2U2Yu9w5n5uZg"
|
||||
_acme-challenge 300 IN TXT "K6DYSkbn2Fk_P0fA1fxbIZszce4NzjTtgodaUNxDS1w"
|
||||
24
zones/coopermalloy.com.zone
Normal file
24
zones/coopermalloy.com.zone
Normal file
@ -0,0 +1,24 @@
|
||||
; Zone file for coopermalloy.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN coopermalloy.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME coopermalloy.com
|
||||
mail 3600 IN CNAME mail.supported.systems
|
||||
300 IN MX 10 mail.supported.systems
|
||||
3600 IN TXT "v=spf1 mx a:mail.supported.systems ~all"
|
||||
_acme-challenge 300 IN TXT "EZLETkIGw-ztOqS8PxZ6ErG1wuFdbwUUo_hQ6Ouc1u0"
|
||||
_acme-challenge 300 IN TXT "YckMEs1aROXztwr7eHJksQ7VdR9GSKfMDujVL8BH25E"
|
||||
_acme-challenge 300 IN TXT "zSS6xNG4EIz1LLTRIcSmX2HBHTSRZVvy8kkgTYI2mSg"
|
||||
_acme-challenge 300 IN TXT "ejOaDU5rLWuvS9cju8j-kKOAJUg4_jWCyoWHLLwCrOE"
|
||||
_acme-challenge 300 IN TXT "brZAVXUnhz7mRM4PcwHh5c2ijry53dnWfG21-3h_xg8"
|
||||
_acme-challenge 300 IN TXT "q9dYWfE9JGJ3NrqvnnHPn0iK2MUKm_YeV04ApmLG7aw"
|
||||
_acme-challenge 300 IN TXT "y524GdfUDU6A1-bz9c2V9ikshLe-jHJdlY6ckd7bEWQ"
|
||||
_acme-challenge 300 IN TXT "SEIL9s7-r-rOHWnE-ZDeNPk_1f3iHfqGYjluAU6R4Xw"
|
||||
_acme-challenge 300 IN TXT "fZ9Wg4cJirtPEGr5JtR_aO4dSRZOtKLopug05hwJOU0"
|
||||
_acme-challenge 300 IN TXT "6LWS9nyupxDGygeRbBmWnkJyjZhMCxj-xZRZmRnzquw"
|
||||
_acme-challenge 300 IN TXT "JG5vKxfEqXH43AK3FEnPYwVc7TkADQ-PxgjdqfrpAgU"
|
||||
_acme-challenge 300 IN TXT "b9X8yKk78gcZ0mg8Wy-81_keh9ZetEBs08QNqUDuXr4"
|
||||
13
zones/copper-springs.online.zone
Normal file
13
zones/copper-springs.online.zone
Normal file
@ -0,0 +1,13 @@
|
||||
; Zone file for copper-springs.online
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN copper-springs.online.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
dev 300 IN A 100.79.95.190
|
||||
* 300 IN CNAME copper-springs.online
|
||||
*.dev 300 IN CNAME dev.copper-springs.online
|
||||
300 IN MX 10 copper-springs.online
|
||||
_acme-challenge.docs.butler.dev 300 IN TXT "JcIKn8HyUtQMwY_q0FNdj-XfacQS9Tn5SQiwTKB79VE"
|
||||
11
zones/cubeseptic.com.zone
Normal file
11
zones/cubeseptic.com.zone
Normal file
@ -0,0 +1,11 @@
|
||||
; Zone file for cubeseptic.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN cubeseptic.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 108.61.229.209
|
||||
* 300 IN CNAME qubeseptic.com
|
||||
300 IN MX 10 mail.supported.systems
|
||||
300 IN TXT "v=spf1 mx a:mail.supported.systems ~all"
|
||||
10
zones/cyberinsuranceapp.com.zone
Normal file
10
zones/cyberinsuranceapp.com.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for cyberinsuranceapp.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN cyberinsuranceapp.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 144.202.104.200
|
||||
* 300 IN CNAME cyberinsuranceapp.com
|
||||
300 IN MX 10 cyberinsuranceapp.com
|
||||
12
zones/demo-tube.com.zone
Normal file
12
zones/demo-tube.com.zone
Normal file
@ -0,0 +1,12 @@
|
||||
; Zone file for demo-tube.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN demo-tube.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME demo-tube.com
|
||||
300 IN MX 10 demo-tube.com
|
||||
_acme-challenge 300 IN TXT "-ucCFXSieY1TSGAAgfEnmNQY7C59R8d-VeCL7YWG80E"
|
||||
_acme-challenge 300 IN TXT "rl8mWufuTFr3fbO9Yq5XzLg8HvuU_SiwUdylOopo5Sk"
|
||||
11
zones/demostar.app.zone
Normal file
11
zones/demostar.app.zone
Normal file
@ -0,0 +1,11 @@
|
||||
; Zone file for demostar.app
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN demostar.app.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 72.24.184.132
|
||||
* 300 IN CNAME demostar.app
|
||||
300 IN MX 10 mail.supported.systems
|
||||
300 IN TXT "v=spf1 mx a:mail.supported.systems ~all"
|
||||
11
zones/demostar.click.zone
Normal file
11
zones/demostar.click.zone
Normal file
@ -0,0 +1,11 @@
|
||||
; Zone file for demostar.click
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN demostar.click.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 149.28.50.172
|
||||
analytics 300 IN A 144.202.93.19
|
||||
* 300 IN CNAME demostar.click
|
||||
300 IN MX 10 mail.supported.systems
|
||||
34
zones/demostar.io.zone
Normal file
34
zones/demostar.io.zone
Normal file
@ -0,0 +1,34 @@
|
||||
; Zone file for demostar.io
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN demostar.io.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.230
|
||||
ph 300 IN A 144.202.60.236
|
||||
or 300 IN A 74.91.22.233
|
||||
vdo 300 IN A 74.91.22.230
|
||||
dev 300 IN A 100.79.95.190
|
||||
* 300 IN CNAME demostar.io
|
||||
shynet 300 IN CNAME demostar.io
|
||||
oo-sandbox 300 IN CNAME oo.demostar.io
|
||||
oo 300 IN CNAME demostar.io
|
||||
cw 3600 IN CNAME demostar.io
|
||||
300 IN MX 10 mail.supported.systems
|
||||
3600 IN TXT "v=spf1 mx a:mail.supported.systems ~all"
|
||||
3600 IN TXT "google-site-verification=2O9jXz4H-nx0oRi2hVdFCWnPudISRlpT2nWE0xF-U14"
|
||||
_acme-challenge.meet 300 IN TXT "6ZSVw9yrMNjG2z-KqLP77_FW7w0I7embcfCLc9g6CRs"
|
||||
_acme-challenge.oo-sandbox 300 IN TXT "o8a0j9u2-CmTCkAPJ9audd0SSh2KFv90vXPgLOoib_c"
|
||||
_acme-challenge 300 IN TXT "xfcM1eMV0DRZMxHWzY5_l4v8sEHe064XmrJpBn7KZik"
|
||||
_acme-challenge.oo 300 IN TXT "gAOPbIejEwGN7ezOSIcRfcVK074atnfDvJbwtfzM97w"
|
||||
_acme-challenge.doom 300 IN TXT "MgsgpGJ5E5uWyoc8ajpVoIdtt_kPs1x9qwf6v83kEGU"
|
||||
_acme-challenge.oo 300 IN TXT "FT54HjF0ts_30oroEBuyKQa1hnzh_D6mpFpEFGMjBTo"
|
||||
_dmarc 3600 IN TXT "v=DMARC1; p=reject; rua=mailto:reports@demostar.io; adkim=s; aspf=s;"
|
||||
demostar.io._report._dmarc.mail 3600 IN TXT "v=DMARC1;"
|
||||
_acme-challenge.shynet 300 IN TXT "y3fyKhW2Uiq1Nu9Zcd9detto90IvEZ852h2TvAIQCsA"
|
||||
_acme-challenge.vdo 300 IN TXT "BlvVWIzjIj4o73qkYNfNdF_Q8MW13vxV6HTgO0-NzmM"
|
||||
_acme-challenge.vdo 300 IN TXT "slcvr2gvi6ahNucyzfzLvInL-l0L1P93I2p3vQ3ytrU"
|
||||
_acme-challenge.vdo 300 IN TXT "cGxfMICfHYD7QiQmsAuWuVN-hQQoZ38GcvDTigsioWQ"
|
||||
_acme-challenge.cw.cw 300 IN TXT "Y0ahdJHcKysWxYNQG8aXQuWr0uSp7WVlwxkdWYHcrIM"
|
||||
_acme-challenge.cw 300 IN TXT "e7IRkthq2cwpEJHEjbAsQwqkvQGHl831X6luH3ct6uc"
|
||||
12
zones/demostar.net.zone
Normal file
12
zones/demostar.net.zone
Normal file
@ -0,0 +1,12 @@
|
||||
; Zone file for demostar.net
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN demostar.net.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 140.82.13.104
|
||||
docker-zfs1.nj 300 IN A 140.82.13.104
|
||||
* 300 IN CNAME demostar.net
|
||||
300 IN MX 10 mail.supported.systems
|
||||
300 IN TXT "v=spf1 mx a:mail.supported.systems ~all"
|
||||
13
zones/dignity.ink.zone
Normal file
13
zones/dignity.ink.zone
Normal file
@ -0,0 +1,13 @@
|
||||
; Zone file for dignity.ink
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN dignity.ink.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 108.61.229.209
|
||||
l 300 IN A 10.20.0.38
|
||||
* 300 IN CNAME dignity.ink
|
||||
*.l 300 IN CNAME l.dignity.ink
|
||||
kayla 300 IN CNAME docker-2.supported.systems
|
||||
300 IN MX 10 dignity.ink
|
||||
11
zones/dope.team.zone
Normal file
11
zones/dope.team.zone
Normal file
@ -0,0 +1,11 @@
|
||||
; Zone file for dope.team
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN dope.team.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 108.61.229.209
|
||||
qube 300 IN A 108.61.229.209
|
||||
* 300 IN CNAME dope.team
|
||||
300 IN MX 10 dope.team
|
||||
10
zones/encom.cash.zone
Normal file
10
zones/encom.cash.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for encom.cash
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN encom.cash.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME encom.cash
|
||||
300 IN MX 10 encom.cash
|
||||
10
zones/encom.ink.zone
Normal file
10
zones/encom.ink.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for encom.ink
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN encom.ink.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME encom.ink
|
||||
300 IN MX 10 encom.ink
|
||||
10
zones/encom.website.zone
Normal file
10
zones/encom.website.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for encom.website
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN encom.website.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME encom.website
|
||||
300 IN MX 10 encom.website
|
||||
10
zones/encom.wtf.zone
Normal file
10
zones/encom.wtf.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for encom.wtf
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN encom.wtf.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME encom.wtf
|
||||
300 IN MX 10 encom.wtf
|
||||
12
zones/enls.us.zone
Normal file
12
zones/enls.us.zone
Normal file
@ -0,0 +1,12 @@
|
||||
; Zone file for enls.us
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN enls.us.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME enls.us
|
||||
300 IN MX 10 enls.us
|
||||
_acme-challenge 300 IN TXT "RpllERXufsL0PWSFs_5p980PX3twLnYM-JKt048e7iI"
|
||||
_acme-challenge 300 IN TXT "qGFOfoDwY0NHx-Xdo5aPQQ1z7wOQ3d4UJcbU17iL0WQ"
|
||||
10
zones/enls.video.zone
Normal file
10
zones/enls.video.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for enls.video
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN enls.video.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME enls.video
|
||||
300 IN MX 10 enls.video
|
||||
17
zones/flonhoney.com.zone
Normal file
17
zones/flonhoney.com.zone
Normal file
@ -0,0 +1,17 @@
|
||||
; Zone file for flonhoney.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN flonhoney.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 108.61.229.209
|
||||
l 300 IN A 100.79.95.190
|
||||
*.l 300 IN A 100.79.95.190
|
||||
* 300 IN CNAME flonhoney.com
|
||||
300 IN MX 10 mail.supported.systems
|
||||
300 IN TXT "v=spf1 mx a:mail.supported.systems ~all"
|
||||
_dmarc 3600 IN TXT "v=DMARC1; p=reject; rua=mailto:reports@supported.systems; adkim=s; aspf=s;"
|
||||
dkim._domainkey 3600 IN TXT "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvErmN9sKkddcCuClMyVZz9ymSciRI5G5G7hdH2BXy1m9ylwX1m6+feh84Qavet82vZGhoTDaCtzKzWUIRaZuY0EYpdZXY+iITNaXGY7Y5cwuePJI3kO8HbsHxrFyUxYXa70+QWxFsTTUp87PsdogqXL0z2apSgJiKCEFMf1vbq8fEZkSV3ZUzywJC1rE"
|
||||
_acme-challenge.meet.l 300 IN TXT "q8v3f-Aw1jos4lLXi6K7onc4KMhX-oaaHwpoYZnAaVI"
|
||||
_acme-challenge.research.l 300 IN TXT "vGtOnL5wb2xcuHqcpmKMTa3Re_H44eWLj6ZASZn0mEk"
|
||||
10
zones/freemyradicals.com.zone
Normal file
10
zones/freemyradicals.com.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for freemyradicals.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN freemyradicals.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME freemyradicals.com
|
||||
300 IN MX 10 freemyradicals.com
|
||||
10
zones/garage.ceo.zone
Normal file
10
zones/garage.ceo.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for garage.ceo
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN garage.ceo.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME garage.ceo
|
||||
300 IN MX 10 garage.ceo
|
||||
10
zones/garage.christmas.zone
Normal file
10
zones/garage.christmas.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for garage.christmas
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN garage.christmas.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME garage.christmas
|
||||
300 IN MX 10 garage.christmas
|
||||
10
zones/garage.doctor.zone
Normal file
10
zones/garage.doctor.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for garage.doctor
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN garage.doctor.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME garage.doctor
|
||||
300 IN MX 10 garage.doctor
|
||||
10
zones/garage.dog.zone
Normal file
10
zones/garage.dog.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for garage.dog
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN garage.dog.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME garage.dog
|
||||
300 IN MX 10 garage.dog
|
||||
10
zones/garage.engineering.zone
Normal file
10
zones/garage.engineering.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for garage.engineering
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN garage.engineering.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME garage.engineering
|
||||
300 IN MX 10 garage.engineering
|
||||
10
zones/garage.makeup.zone
Normal file
10
zones/garage.makeup.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for garage.makeup
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN garage.makeup.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME garage.makeup
|
||||
300 IN MX 10 garage.makeup
|
||||
10
zones/garage.rocks.zone
Normal file
10
zones/garage.rocks.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for garage.rocks
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN garage.rocks.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME garage.rocks
|
||||
300 IN MX 10 garage.rocks
|
||||
10
zones/garage.supply.zone
Normal file
10
zones/garage.supply.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for garage.supply
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN garage.supply.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME garage.supply
|
||||
300 IN MX 10 garage.supply
|
||||
10
zones/glennsferry.site.zone
Normal file
10
zones/glennsferry.site.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for glennsferry.site
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN glennsferry.site.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 108.61.229.209
|
||||
* 300 IN CNAME glennsferry.site
|
||||
300 IN MX 10 glennsferry.site
|
||||
10
zones/home-inspector.app.zone
Normal file
10
zones/home-inspector.app.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for home-inspector.app
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN home-inspector.app.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME home-inspector.app
|
||||
300 IN MX 10 home-inspector.app
|
||||
10
zones/home-inspector.pics.zone
Normal file
10
zones/home-inspector.pics.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for home-inspector.pics
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN home-inspector.pics.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME home-inspector.pics
|
||||
300 IN MX 10 home-inspector.pics
|
||||
10
zones/home-inspector.site.zone
Normal file
10
zones/home-inspector.site.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for home-inspector.site
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN home-inspector.site.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME home-inspector.site
|
||||
300 IN MX 10 home-inspector.site
|
||||
15
zones/home-inspector.store.zone
Normal file
15
zones/home-inspector.store.zone
Normal file
@ -0,0 +1,15 @@
|
||||
; Zone file for home-inspector.store
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN home-inspector.store.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME home-inspector.store
|
||||
300 IN MX 10 home-inspector.store
|
||||
_acme-challenge.dashboard 300 IN TXT "TLTjv7weswoJMxQ8K897MGeez7RJlTTay7sJ5_OQY-M"
|
||||
_acme-challenge 300 IN TXT "qtDNogktSbMLdjkIQNciTHAIIKIIO7CKaOhIvg2PY7U"
|
||||
_acme-challenge.dashboard 300 IN TXT "U3yUObG_I0bU4lEiBQz_saa-U9ysq0lSRCqJcBwJi2I"
|
||||
_acme-challenge.api 300 IN TXT "LwzNwdpFoJsKzXbGhaV7nenwRFj9vDyIAokNLdV4zwE"
|
||||
_acme-challenge.mailpit 300 IN TXT "ZAfKxXBLnghzsFKBTXOIdFvEzgfu4zOny_Kqv3cF3AM"
|
||||
10
zones/home-inspector.website.zone
Normal file
10
zones/home-inspector.website.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for home-inspector.website
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN home-inspector.website.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME home-inspector.website
|
||||
300 IN MX 10 home-inspector.website
|
||||
30
zones/homestar.ink.zone
Normal file
30
zones/homestar.ink.zone
Normal file
@ -0,0 +1,30 @@
|
||||
; Zone file for homestar.ink
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN homestar.ink.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 108.61.229.209
|
||||
l 300 IN A 100.79.95.190
|
||||
*.l 300 IN A 100.79.95.190
|
||||
* 300 IN CNAME homestar.ink
|
||||
300 IN MX 10 homestar.ink
|
||||
_acme-challenge.app.l 300 IN TXT "mvwfXPM6nlBHSQwHGqWRTXzvDEuSKLy8BibTPMSKXHA"
|
||||
_acme-challenge.app 300 IN TXT "SEAAW9v1r_gKgC9nyh4COloffktc-YjJKqt2NSkPU7Y"
|
||||
_acme-challenge.mcp 300 IN TXT "-TGB3voLmbRPvlVghG74Keb3Skqlq0mRqxSexA4umm4"
|
||||
_acme-challenge 300 IN TXT "RQRRqzGT26EMxmIyiuKC9Juqs8xxYdG74LFa4s3uEQE"
|
||||
_acme-challenge.help 300 IN TXT "rB33N6J2ABPhoI0XuRvx5lj8w63dtD-X3FnaRbGcE3M"
|
||||
_acme-challenge.auth 300 IN TXT "6mHETko0qO6uZZekoUK9bBg2un3Fno2OnMJQbEQtjrY"
|
||||
_acme-challenge.api 300 IN TXT "dvQzFEPr8cqlMNY3F6eUWJW8IGTsOFSDBGf3EghAZDY"
|
||||
_acme-challenge.rentcache 300 IN TXT "O8YhR8STEud3VMYYyKHHsWeAM8R_ItiPGkszENXZjhA"
|
||||
_acme-challenge.tiles 300 IN TXT "ULpBAoaA-CdzdQ0exqIuMTHRhVObQkMZaDWwiPRjAUE"
|
||||
_acme-challenge.mock-api 300 IN TXT "iEUGI0jQlHfVbX9ZshhQFzOGBY_wYydpFo7yOhV2BEk"
|
||||
_acme-challenge.tiles 300 IN TXT "Aep3fox_bdVRBKeHn2lfMwF3Dkl438qo4IJxPevdHbE"
|
||||
_acme-challenge.api 300 IN TXT "tLJ67fYE64lqZQQqG5qSRcZz8l2Lh5s9SXeCgYJhDfU"
|
||||
_acme-challenge.auth 300 IN TXT "wUPyjy7-kVwQy0vDPlS9OsKQQP4wgPLK0xnmp0zdnN4"
|
||||
_acme-challenge.mock-api 300 IN TXT "KehJ8tjPUUz5c43-Ewc8iBv_Exf3JJjSbaXrWEhiw6g"
|
||||
_acme-challenge 300 IN TXT "BbK7sPiEMhYBMaxSMyCQmqbL9zTfb3klFl4lcbipKsQ"
|
||||
_acme-challenge.auth 300 IN TXT "wYPRXeQdbLIetlJdqmk41yPGvgNjnTfEUa1nBMmvGgM"
|
||||
_acme-challenge.photos.mock-reso 300 IN TXT "IMnrty4nznAfRYib1anooATLTNoVsZ8UxwlQrgw12o4"
|
||||
_acme-challenge.mock-api.demo 300 IN TXT "rYEoJlrmu5pbmtj0dv7LUOLqgQNBVQLTnjqMxWV2NrE"
|
||||
11
zones/hydrushydroponics.com.zone
Normal file
11
zones/hydrushydroponics.com.zone
Normal file
@ -0,0 +1,11 @@
|
||||
; Zone file for hydrushydroponics.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN hydrushydroponics.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 108.61.229.209
|
||||
* 300 IN CNAME hydrushydroponics.com
|
||||
300 IN MX 10 mail.supported.systems
|
||||
300 IN TXT "v=spf1 mx a:mail.supported.systems ~all"
|
||||
13
zones/idahogreendreams.com.zone
Normal file
13
zones/idahogreendreams.com.zone
Normal file
@ -0,0 +1,13 @@
|
||||
; Zone file for idahogreendreams.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN idahogreendreams.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 108.61.229.209
|
||||
l 300 IN A 127.0.0.1
|
||||
* 300 IN CNAME idahogreendreams.com
|
||||
*.l 300 IN CNAME l.idahogreendreams.com
|
||||
300 IN MX 10 mail.supported.systems
|
||||
300 IN TXT "v=spf1 mx a:mail.supported.systems ~all"
|
||||
13
zones/inpect.pro.zone
Normal file
13
zones/inpect.pro.zone
Normal file
@ -0,0 +1,13 @@
|
||||
; Zone file for inpect.pro
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN inpect.pro.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME inpect.pro
|
||||
300 IN MX 10 inpect.pro
|
||||
_acme-challenge 300 IN TXT "ERZWm4IprjdR5YXus-BHtJmQ5q3tnd_HWy7S9JkZUIQ"
|
||||
_acme-challenge 300 IN TXT "6aefAQtyBbf0HZZazNsmogvRb-7TEjv2EfG-ydfxTww"
|
||||
_acme-challenge 300 IN TXT "sYEwgVBnqS5B3lL1IlKenuOHTB4dmFbMvYH7gN7HTOk"
|
||||
10
zones/inspect.monster.zone
Normal file
10
zones/inspect.monster.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for inspect.monster
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN inspect.monster.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME inspect.monster
|
||||
300 IN MX 10 inspect.monster
|
||||
15
zones/inspect.pics.zone
Normal file
15
zones/inspect.pics.zone
Normal file
@ -0,0 +1,15 @@
|
||||
; Zone file for inspect.pics
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN inspect.pics.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
l 300 IN A 127.0.0.1
|
||||
*.l 300 IN A 127.0.0.1
|
||||
300 IN A 74.91.22.232
|
||||
* 300 IN CNAME inspect.pics
|
||||
300 IN MX 10 inspect.pics
|
||||
_acme-challenge 300 IN TXT "O76KUDoUq834H7foiWV2VXVO-XWWAx2mGm1Gt3YJtvQ"
|
||||
_acme-challenge 300 IN TXT "0QRoK7IMPLfLffpv8aH8afyw6f9ssDb9NPbWJSJ66q8"
|
||||
_acme-challenge.admin 300 IN TXT "i5VYntrsr97R142m7Xj7FJR4huFX1KGlQPgnQjHEeTk"
|
||||
37
zones/inspect.systems.zone
Normal file
37
zones/inspect.systems.zone
Normal file
@ -0,0 +1,37 @@
|
||||
; Zone file for inspect.systems
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN inspect.systems.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.232
|
||||
properties 300 IN A 108.61.229.209
|
||||
nielsen-inspections 300 IN A 74.91.22.232
|
||||
vh.l 300 IN A 127.0.0.1
|
||||
api.vh.l 300 IN A 127.0.0.1
|
||||
pitch.l 300 IN A 127.0.0.1
|
||||
*.l 300 IN A 127.0.0.1
|
||||
vh 300 IN A 74.91.22.232
|
||||
*.vh 300 IN A 74.91.22.232
|
||||
maps 300 IN A 74.91.22.232
|
||||
*.pitch.l 300 IN A 127.0.0.1
|
||||
api.properties 300 IN CNAME properties.inspect.systems
|
||||
*.maps 300 IN CNAME maps.inspect.systems
|
||||
api 300 IN CNAME inspect.systems
|
||||
crm 300 IN CNAME inspect.systems
|
||||
*.crm 300 IN CNAME crm.inspect.systems
|
||||
300 IN MX 10 inspect.systems
|
||||
_acme-challenge.operate 300 IN TXT "OSIKGstLTQz9frXXRU-3-OvTlU8dLoWtcegc_CdGCbc"
|
||||
_acme-challenge.operate 300 IN TXT "WNomXhVF1Ymh5NrLhJ10vp2i9o8ia6KWHt_xIRlp4as"
|
||||
_acme-challenge 300 IN TXT "FiVckyB6dI47M5w-gljo2mK0P2xR3ydjJx0CtC4lHUM"
|
||||
_acme-challenge 300 IN TXT "f7O3WnchNtSv9AQ-zqMD-VoBYBE9iABSraeKadHMVD8"
|
||||
_acme-challenge 300 IN TXT "1qLCDrKw1nNkCQ5NWSZlkF2yU85qiBday89IaAd_QdA"
|
||||
_acme-challenge.rentcast 300 IN TXT "4QPeaV-7P8XwGKSARcgqil1IwWwnLvSO5t3RM0wnN8I"
|
||||
_acme-challenge.properties 300 IN TXT "2vdt3jDH9cnVlTURGi32dpT0fTMJxGLFTif8da_HwFo"
|
||||
google-site-verification 300 IN TXT "_EJ1YRy_aoJLEGhHK8QYyUgcOudM7TgQHiqr"
|
||||
300 IN TXT "google-site-verification=_EJ1YRy_aoJLEGhHK8QYyUgcOudM7TgQHiqry87x7Hk"
|
||||
_acme-challenge.hsp.l 300 IN TXT "85HMpvUyNzHQtvy9Z7vUE7Sfpe96kVYbkqeazdPEiGQ"
|
||||
_acme-challenge.auth.l 300 IN TXT "1I0ITcegP5yRd6dwevuw00WWyjSrGu7NQq2pxOnQhLY"
|
||||
_acme-challenge.api.properties 300 IN TXT "8LS8rK4pP-dJ7lVtXjXRWBEvPPBxC2CwEZ5SWuF-6Lw"
|
||||
_acme-challenge.mail.hsp.l 300 IN TXT "grD5BUnt_VxhvY200OOPZQQzZAZj06GtUK5kSap0jGQ"
|
||||
13
zones/inspects.homes.zone
Normal file
13
zones/inspects.homes.zone
Normal file
@ -0,0 +1,13 @@
|
||||
; Zone file for inspects.homes
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN inspects.homes.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME inspects.homes
|
||||
300 IN MX 10 inspects.homes
|
||||
_acme-challenge 300 IN TXT "7mrEVPlDNmCMXoxghHwuNrj3FHPavpiPnMEcTpfoH_0"
|
||||
_acme-challenge 300 IN TXT "Y5Og2bzxdWDvvGLQlkXXpLy2xKIJMuXV3WTpBzmhHiY"
|
||||
_acme-challenge 300 IN TXT "FbCMdIZpiZlR4CBqBMkGuTll6qwJFE-BwcFJSQHrkcE"
|
||||
10
zones/jobsite.homes.zone
Normal file
10
zones/jobsite.homes.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for jobsite.homes
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN jobsite.homes.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 108.61.229.209
|
||||
* 300 IN CNAME jobsite.homes
|
||||
300 IN MX 10 jobsite.homes
|
||||
12
zones/kg7q.cc.zone
Normal file
12
zones/kg7q.cc.zone
Normal file
@ -0,0 +1,12 @@
|
||||
; Zone file for kg7q.cc
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN kg7q.cc.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 149.28.126.25
|
||||
*.l 300 IN A 100.79.95.190
|
||||
l 300 IN A 100.79.95.190
|
||||
* 300 IN CNAME kg7q.cc
|
||||
300 IN MX 10 mail.supported.systems
|
||||
12
zones/log.doctor.zone
Normal file
12
zones/log.doctor.zone
Normal file
@ -0,0 +1,12 @@
|
||||
; Zone file for log.doctor
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN log.doctor.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.226
|
||||
* 300 IN CNAME log.doctor
|
||||
300 IN MX 10 log.doctor
|
||||
_acme-challenge.app 300 IN TXT "y2ZR60rA40x7LtMubTbAZNNubTCIHm36_FT0dTZ6e9E"
|
||||
_acme-challenge.docs 300 IN TXT "5lVC4dW_6dd8ir0eNION32rSBVTl1WXL69QRzaiJ8ds"
|
||||
22
zones/lukascrockett.com.zone
Normal file
22
zones/lukascrockett.com.zone
Normal file
@ -0,0 +1,22 @@
|
||||
; Zone file for lukascrockett.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN lukascrockett.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
mail 3600 IN A 66.42.75.247
|
||||
* 300 IN CNAME lukascrockett.com
|
||||
300 IN MX 10 mail.supported.systems
|
||||
_acme-challenge 300 IN TXT "YrLNcgbxEOPdEE8s-Ba4w0iHVVSWTX3uQQQHk8Xrgwo"
|
||||
_acme-challenge 300 IN TXT "Gq03noaghtCkdjgQQUPf6CacZaYqFuOMLJLyws9wibM"
|
||||
_acme-challenge 300 IN TXT "smQymDPT3Ly1knxl9gbe0X6fq2IW95r6j03SL3z-C98"
|
||||
_acme-challenge 300 IN TXT "nitRSxEEv0LYZChTUO2L1kLCvN_myjheHtyAAARMxcA"
|
||||
_acme-challenge 300 IN TXT "ADntnwcItAlQHxqD0SSHZL3-l29o5kSLpyhny0-E00E"
|
||||
_acme-challenge 300 IN TXT "--oEcmCstqnVUu6QvbaFUpCx8iy6plTJLPPYmC9VLT4"
|
||||
_acme-challenge 300 IN TXT "VSvPcX1tAvUhs7hMrvjJEaF-Agjt0GeA_EQCyB6MFEQ"
|
||||
_acme-challenge 300 IN TXT "quP3aX7vxqc37_VL7y9vHBseSM_OaALkGQYqWFDKma0"
|
||||
_acme-challenge 300 IN TXT "6yXwyJweM1iTDLH-ONYIG1nudIM2qCtcOldtAcWmrmI"
|
||||
_acme-challenge 300 IN TXT "fji0kvYStzx22d3UDTS74EnuJGLQtBlexrsQt4qiV_4"
|
||||
_acme-challenge 300 IN TXT "uTYNsXtezmVIZnPqHMjMYi-3zYPzCVV8uRYoZsREJxk"
|
||||
41
zones/malloys.us.zone
Normal file
41
zones/malloys.us.zone
Normal file
@ -0,0 +1,41 @@
|
||||
; Zone file for malloys.us
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN malloys.us.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
dev.mary 300 IN A 100.79.95.190
|
||||
* 300 IN CNAME malloys.us
|
||||
*.dev.mary 300 IN CNAME dev.mary.malloys.us
|
||||
vault 300 IN CNAME idahomuellers.fortiddns.com
|
||||
300 IN MX 10 smtp.google.com
|
||||
dkim._domainkey 300 IN TXT "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAioX3DstYBuThEEyFs/o7m4HqsaImxMJRC7o12FvX90btr7c3RXkvRzY9sawhW3O0XmhfaJfZ/Gho0ng2RwKLEdYQcnoSJaYwV+3ERvdDBwlDgBNgUs9ODmP10HELpsgRg+sNoBClZNXXuT+pkuQhRpvVz9KQWRSsHvhh5ZUCTmx4vdC9WskvfqWxgC39qScEBLylqoCYjkzIk+ByYc8X9rSUzKZ2HaHMLTlzei1k16QiLgwPHa8QRPDWsH8joIg8XW3SiLDRrwfub+lZRe5d7V+13HO76k9LXMNzG4kSAwxvDMWnfD2iki3x7tQ/CFfdcsLUDfbuRy7d3JKwMZDsbQIDAQAB"
|
||||
_acme-challenge.cp 300 IN TXT "I8y77h78LeuG7H8CpyELFfgHjfWBcd0VRkPAYboV5Mg"
|
||||
_acme-challenge.cp-sandbox 300 IN TXT "LUNk008FKra7ifgL61DV681kmo4wThRJb6zG4t1mDww"
|
||||
_acme-challenge.cp 300 IN TXT "d3iE6aJJRzKE3iFajLg_67oYeskj_XLDNuxKt6BuG3c"
|
||||
300 IN TXT "v=spf1 include:_spf.google.com ~all"
|
||||
300 IN TXT "v=DMARC1; p=none; rua=mailto:dmarc@malloys.us"
|
||||
_acme-challenge 300 IN TXT "dFdOw5R4dkuNvN0SokI5v5cQbIihwCyiHu_gIxzbAo0"
|
||||
_acme-challenge 300 IN TXT "2ErkGT83BzfrsCKFhutetQMIsnzIwcvTKJ8kkcfcJ8k"
|
||||
_acme-challenge 300 IN TXT "UEsEmtEazgpBNfB_qbCNqG1r9rKWUvzyoCQHpTvYPQA"
|
||||
_acme-challenge 300 IN TXT "ABpU2SvJB2NXJnT8H0mxA3v1ZHTZ2dV0uGk5f7OWmIA"
|
||||
_acme-challenge.mary 300 IN TXT "2CWi2TUBWh8DB3_9j7lBqp38LQuHQMHg1OChIkJMh8w"
|
||||
_acme-challenge 300 IN TXT "x8vlYMJWYIgz1Rr3VAD_Mu0zFEI2cIdzGIk9yqxAmac"
|
||||
_acme-challenge.mary 300 IN TXT "j8TCDhOlM5hqjpY4pOvqCCocTk7rwM4oLMbPQhONoi8"
|
||||
_acme-challenge 300 IN TXT "vcY8gFPeDdJM6It5F7fb1N4cUJyGzleKB0EZtwFghgs"
|
||||
_acme-challenge.mary 300 IN TXT "gFg4W4aKHTKkKO4onTecKr_5uzFCFZccSqhM4BZ76_0"
|
||||
_acme-challenge.mary 300 IN TXT "X5vEo2glHx67KX5xiBmM8yAo3YogrfQrAKNIv2ZcJJk"
|
||||
acrazy-verification 300 IN TXT "eac154yffy1eg05ual8bh8vpgh08ilru"
|
||||
_acme-challenge 300 IN TXT "tVRBw_rb8e1h_0YX3xDtATGHG4jyvq9TykufAeGmIbM"
|
||||
_acme-challenge 300 IN TXT "ZJs4qgRRnf1YuQeZLy5Dwf7VpiyOHe7ghioHtinlyek"
|
||||
_acme-challenge.mary 300 IN TXT "pDLt0kQp2dWyiDW561Tg-AyHzxVaZuL1aIb2HaWbjrI"
|
||||
_acme-challenge 300 IN TXT "Ui5iYPzijZedzfh4xwnsGi-5FM6xY-hPvXCW9FXjf-A"
|
||||
_acme-challenge.mary 300 IN TXT "1Jjpl48uAiifbvdYOt984aFJYL_nuGfD3M-MkZxLq9M"
|
||||
_acme-challenge.mary 300 IN TXT "yrYnGc8ljy7ovKGBlP4sJpA__8tsze7c-QM6dvUPmhE"
|
||||
_acme-challenge 300 IN TXT "hPz_OIZGc2qyHrNMGkPCXDf4ML4bv67P_ojmb-ed6gM"
|
||||
_acme-challenge 300 IN TXT "mzrirf7ykU_V_6mh38Q664h_yg3AEVA88tQRE7YGOUc"
|
||||
_acme-challenge 300 IN TXT "v4oJppz3N-D9IEBw0faQ54pg7WsLmDNua7bVgQWVmpw"
|
||||
_acme-challenge 300 IN TXT "OlN30ETZq9etulzl9lOMTDvWQ4Frpq2NlyGOx5kpB_I"
|
||||
300 IN TXT "openai-domain-verification=dv-pa82Ps1fOTq50Ad2crkhWWTv"
|
||||
10
zones/mcp.website.zone
Normal file
10
zones/mcp.website.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for mcp.website
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN mcp.website.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 149.28.126.25
|
||||
* 300 IN CNAME mcp.website
|
||||
300 IN MX 10 mcp.website
|
||||
10
zones/mcpdash.wtf.zone
Normal file
10
zones/mcpdash.wtf.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for mcpdash.wtf
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN mcpdash.wtf.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 108.61.229.209
|
||||
* 300 IN CNAME mcpdash.wtf
|
||||
300 IN MX 10 mcpdash.wtf
|
||||
29
zones/myhood.us.zone
Normal file
29
zones/myhood.us.zone
Normal file
@ -0,0 +1,29 @@
|
||||
; Zone file for myhood.us
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN myhood.us.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME myhood.us
|
||||
autoconfig 300 IN CNAME mail.supported.systems
|
||||
mail.supported.systems 300 IN MX 10 myhood.us
|
||||
myhood.us_report_dmarc.mail 300 IN TXT "v=DMARC1;"
|
||||
_dmarc 300 IN TXT "v=DMARC1; p=reject; rua=mailto:reports@mrpickett.com; adkim=s; aspf=s;"
|
||||
_acme-challenge 300 IN TXT "uKPYK58a44s0kWpnppooML4E4MkptkgVGqvaUK5eWXw"
|
||||
_acme-challenge 300 IN TXT "bwvyypYyln_IxJSAJ8QH8gaYFvZERE-PvchQ0nzIP-I"
|
||||
_acme-challenge 300 IN TXT "-FVnabcP3OEd9gF_mHt1XLxPh3z4GtrQGSryAWuGBQo"
|
||||
_acme-challenge 300 IN TXT "JS1mADG41dZZUbB9oVe4CAlCg5-ufC5qcWJgrpM_5yA"
|
||||
_acme-challenge 300 IN TXT "NSkBnFfKskxwESsqF0Q4JQTnoSwsC3371QmuQyS-yRk"
|
||||
_acme-challenge 300 IN TXT "WRqQ2yUC8Aakn2GbzHKCwuaEfIQoGD44Qhahsc6yuh4"
|
||||
_acme-challenge 300 IN TXT "fWNVCRInU2vTBoQ02hO5r5f8Zx9gEgtAPrSZKITfFQs"
|
||||
_acme-challenge 300 IN TXT "zIDbVIWouZ2IeeK7Fq3qYxGI9PEuxqBV0bi6Y8-eMcM"
|
||||
_acme-challenge 300 IN TXT "g5cmpAjpemVD3Yd6Q1cbuaq7jR_Mn2G23MJDvj1AXeI"
|
||||
_acme-challenge 300 IN TXT "oJBISSRWspHKC5XV9MFWYWS_8bZj-r2OvYf6bJqdwnA"
|
||||
_acme-challenge 300 IN TXT "Qvms3GVgFqZ-UWGYUXQdKDWSflejxqYitzRWjlwJwIM"
|
||||
_acme-challenge 300 IN TXT "dkzMydDeiX6a07LbM1O-KCkyTvNoEjMsH9SJETKygBE"
|
||||
_acme-challenge 300 IN TXT "36vAmVKS_ALuL2kB1KlVMvz44WN2LKCb0tBmA43gXSo"
|
||||
_acme-challenge 300 IN TXT "BYICEu3hp5veDk1eCKQsrso36eq4uv-zGpqMszlWT6o"
|
||||
_acme-challenge 300 IN TXT "goItf43E0Yi_uZ6E-S0DxyxoA1v5o9FdHR6Tk9-avZ0"
|
||||
_acme-challenge 300 IN TXT "4_XAQyLYKQNDV1Bs2CPHQt3FU4uo6g_rrwb5zuyMyNw"
|
||||
44
zones/nielsen-inspections.com.zone
Normal file
44
zones/nielsen-inspections.com.zone
Normal file
@ -0,0 +1,44 @@
|
||||
; Zone file for nielsen-inspections.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN nielsen-inspections.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
* 300 IN A 74.91.22.234
|
||||
300 IN A 74.91.22.234
|
||||
new 300 IN A 74.91.22.232
|
||||
74.91.22.232 300 IN A 74.91.22.232
|
||||
l 300 IN A 127.0.0.1
|
||||
*.l 300 IN A 127.0.0.1
|
||||
supabase 300 IN CNAME supabase.supported.systems
|
||||
quote 300 IN CNAME nielsen-inspections.inspect.systems
|
||||
docs 300 IN CNAME nielsen-inspections.inspect.systems
|
||||
docs-sandbox 300 IN CNAME nielsen-inspections.inspect.systems
|
||||
300 IN MX 10 mail.supported.systems
|
||||
nielsen-inspections.com_report._dmarc.mail 3600 IN TXT "v=DMARC1"
|
||||
300 IN TXT "v=spf1 mx a:mail.supported.systems ~all"
|
||||
dkim._domainkey 300 IN TXT "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuGPt3zH0RxxDUW1Wg+3FOKIYNQy5vo/hvbPB/U6O7hh5K/SnQ2MDPfnL3B+Ur3kKmYFcSTdVMotr9Ds7wRJWFv49oK4f4VKxfoBD8Sh9GrJDNDM+g86h8M1v3cWKLdeRa+UczJDLRb9wwW8eRR17OQafqGupN0ZbsazbZwTrC5z/RZlLBtEMsIceWwHPhR+H3Bl9rH2t1RQSjbD2A9fM5EPXeVvzn9SwDpxgfMRfs7/k/prPASxW0/8Bun3k2BOzOjP/H4v509xTJOn/6S5eC2QJ47hw5XsjOu1j9Fy2YqUkgDpcrqLiS5K/7E+BSWURitfuxAamv+vkTfrbU3D0lQIDAQAB"
|
||||
_acme-challenge.new 300 IN TXT "-hHWyBLh_3qyIy1gYFSifjgOAbmN2t3OU2I_232rVNU"
|
||||
_acme-challenge.new 300 IN TXT "WQbACLatgQG_0Z3IrbcMMjzOleV5El5NUp8gTJuHd0A"
|
||||
_acme-challenge.quote 300 IN TXT "TzAjFo4FnUXIk17rqA3JORGFcijweOUzkIM0MXaIzTs"
|
||||
_acme-challenge.v2-calendar 300 IN TXT "H9U_cMG3N7Gc4I0pjqa7EzSqYKQ00XBVFcHb8QfsLxM"
|
||||
_acme-challenge.docs 300 IN TXT "1AvKwRWSpEV25IXoZmUfWKX883e3xT6jZr07BwR_a04"
|
||||
_acme-challenge.docs-sandbox 300 IN TXT "R0yh7Y_ukrPAiz4cH0qJEsIgZrswDLkTozEcttqJftg"
|
||||
_acme-challenge.quote 300 IN TXT "tt8NsMRClprrM7K-sK2j91br89aAomPj8qFqb81g5UI"
|
||||
_acme-challenge.cw 300 IN TXT "L638gX_M8v9SwXjupi00RzHvWblePIudowgIr5xbo6o"
|
||||
_acme-challenge.docs 300 IN TXT "w4s8Veq9FptmGDE0WIutO0h6_zt3D3ndNWPVJPHXTHw"
|
||||
_acme-challenge.calendar 300 IN TXT "DAUuB6i8LyY4IaoiJ_XiMnOJ3O_S7urMAGuFIJsf8ig"
|
||||
_acme-challenge.docs-sandbox 300 IN TXT "SUBS6xJA7Uy8ODqw2i2Fz1TUwtCo5OQUn8fSyvyCiZA"
|
||||
_acme-challenge.v2-calendar 300 IN TXT "g_rNWANJWsRksMMdO6PNvI3J1Rya__wsNPxyW58jr6E"
|
||||
_acme-challenge 300 IN TXT "fAZB7TmCVq0Y6KB4Qc2PpWPtAL4LiYtpa0olUNpSwsM"
|
||||
_acme-challenge 300 IN TXT "n_YyCywZHO0VDSMF9bqz-8j1igZ2yzRJKeA6rZNXWaE"
|
||||
_acme-challenge 300 IN TXT "4W7uXnvXNn8IApnBZBxLNBWWwRzWRcbqJ9JWN2J4WQ4"
|
||||
_acme-challenge 300 IN TXT "HhvzxJ5Cysj8Ox3OqiIrY5wjjiFPZre4fYm64Afj7hk"
|
||||
_acme-challenge 300 IN TXT "xbf-CdITyy0wb5PdUBlPCf7UkrqbgzxyUv_sL_0Luls"
|
||||
_acme-challenge 300 IN TXT "hypwHEiuySqH_kUPJsU7oNQLFI25zRS9hTd2fTinn24"
|
||||
_acme-challenge 300 IN TXT "rf2G1O-_2lWOD3YVIDzsCf-3SjeOW4xQkijU6S-peg8"
|
||||
_acme-challenge 300 IN TXT "_OarPKPxYMpsvT_VuAKVkJoxP1vQmqMMRESOwpPflbg"
|
||||
_acme-challenge 300 IN TXT "06at-8AT6CKT6Cbn5JEfASqOyiqx2T-PfvYlg4O86Bo"
|
||||
_acme-challenge 300 IN TXT "8YYbiZ4dEbfK0KKrVWl81ZCdamED1a9b_3we2JEl-rE"
|
||||
_acme-challenge.files 300 IN TXT "nckNo7UBhAFgevwMvQ85niQIiXuU37FoLK3XVECZzfk"
|
||||
25
zones/nielsens.world.zone
Normal file
25
zones/nielsens.world.zone
Normal file
@ -0,0 +1,25 @@
|
||||
; Zone file for nielsens.world
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN nielsens.world.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME nielsens.world
|
||||
300 IN MX 10 nielsens.world
|
||||
_acme-challenge 300 IN TXT "yp-IarvtiSb7qhW1xT6l3V7vZePbvgRmPJwYUKpT1uM"
|
||||
_acme-challenge 300 IN TXT "P0qX-6q0E2i8boMN2k2P9QEFL8no62uJyQXKU6cd748"
|
||||
_acme-challenge 300 IN TXT "Rp394t0XdkqnnJqfBQpGQwKpFAbQn9-XJAd1V_rVoyg"
|
||||
_acme-challenge 300 IN TXT "ZBgEGehwTzlYXC7smmb9pm-IniUenaqNBen2KTjNLNU"
|
||||
_acme-challenge 300 IN TXT "OG0jPLHom6gbx9SUe-o6MWJOpj8l_U8pSI6ny9rCmkg"
|
||||
_acme-challenge 300 IN TXT "dwrSDLbJqG1nViz6uo84xkUZ9wwHhT6i42Hj1XArihc"
|
||||
_acme-challenge 300 IN TXT "LM3MACdb2ceQcQKkyv8MQoSjqhMJIKLaa442DqRMFeQ"
|
||||
_acme-challenge 300 IN TXT "0wCC6f8E6EUYNwXoh0xXQupAAg97xXuLXeZ9Nlc81VQ"
|
||||
_acme-challenge 300 IN TXT "Ng2e0CTmRw9ajXB7KroV6jyRkqJ9pM3xVGGqfK8mgEc"
|
||||
_acme-challenge 300 IN TXT "iuoGYRQgI9bOUgGmIk8x_71-L0NnAH-tbMkR18ImmaU"
|
||||
_acme-challenge 300 IN TXT "5N-B9TqOnm7ax5s_MLb2eYkEJHu16pR_5XbyCc4Ws3M"
|
||||
_acme-challenge 300 IN TXT "cQD7ne1AEfylbTLsz0cu4WjzZTYYs4Sf2-Co5_xXyFc"
|
||||
_acme-challenge 300 IN TXT "-qb5Ano9xU1Z1aAtZ16kInYKpItqjX0fQwm2rRLHXwg"
|
||||
_acme-challenge 300 IN TXT "t8qVdInrTstes_A-Cub-pVyMkk7PivPxvtNE59HTMNM"
|
||||
_acme-challenge 300 IN TXT "CcZ2OuKYLR80GT1zf8CiHvkfwVz8QJras98kMQIasKw"
|
||||
12
zones/ourjob.site.zone
Normal file
12
zones/ourjob.site.zone
Normal file
@ -0,0 +1,12 @@
|
||||
; Zone file for ourjob.site
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN ourjob.site.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 108.61.229.209
|
||||
l 300 IN A 100.79.95.190
|
||||
*.l 300 IN A 100.79.95.190
|
||||
* 300 IN CNAME ourjob.site
|
||||
300 IN MX 10 ourjob.site
|
||||
22
zones/paigemalloy.com.zone
Normal file
22
zones/paigemalloy.com.zone
Normal file
@ -0,0 +1,22 @@
|
||||
; Zone file for paigemalloy.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN paigemalloy.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME paigemalloy.com
|
||||
300 IN MX 10 paigemalloy.com
|
||||
_acme-challenge 300 IN TXT "YLoFC0o_ZDvk0Fz-pMJHpMPDz5IHNy_CCZq9gY0xcXk"
|
||||
_acme-challenge 300 IN TXT "HKi0Whd31hGZjayLUZUE86_PF8RPvy-yghxbVdyoVoQ"
|
||||
_acme-challenge 300 IN TXT "l9F-TnZEcPXu63A2IsQkJxuqsN5QaovR21uGZhCqh1U"
|
||||
_acme-challenge 300 IN TXT "HkEz6PAcWWOevEXkVfzec7gbiWIhTU7sJwlZ8rcUmo8"
|
||||
_acme-challenge 300 IN TXT "1KtXXGJAWevk5sOBcxmmIw0RkiT8txXebx8CMcL0sLs"
|
||||
_acme-challenge 300 IN TXT "VrTivkyDftREQqNLUNRbTWsfZfubc_9Gmfl1LPmJNGc"
|
||||
_acme-challenge 300 IN TXT "6T_jGBoesvkfZqHlMbr0jij2Ustgbsfwpcv4-d0PyxE"
|
||||
_acme-challenge 300 IN TXT "Dr7s_BX6fHwmd2H6EbfnBWqC7D2enV3Kqp6r9gXiVSE"
|
||||
_acme-challenge 300 IN TXT "BFOaEgEwoqmBLePqn2uEgXmhFJyFvik9Uw02kJcX4C4"
|
||||
_acme-challenge 300 IN TXT "8K3qpw5zZ1M2GbCxWlgYdQxAVoZHcQzg-2rK_e7zRDQ"
|
||||
_acme-challenge 300 IN TXT "UKnDm8Nj10v1UtHnPd4KtdewGkTBKgKNxH6ZTAg0WLM"
|
||||
_acme-challenge 300 IN TXT "RnPOmkbwqpfZx0dZ8bC6u6wbpRJa5gIYup5jespMFfE"
|
||||
10
zones/paythatway.com.zone
Normal file
10
zones/paythatway.com.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for paythatway.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN paythatway.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME paythatway.com
|
||||
300 IN MX 10 paythatway.com
|
||||
10
zones/powdercoatedcabinents.com.zone
Normal file
10
zones/powdercoatedcabinents.com.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for powdercoatedcabinents.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN powdercoatedcabinents.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME powdercoatedcabinents.com
|
||||
300 IN MX 10 powdercoatedcabinents.com
|
||||
10
zones/powdercoatedcabinet.com.zone
Normal file
10
zones/powdercoatedcabinet.com.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for powdercoatedcabinet.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN powdercoatedcabinet.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME powdercoatedcabinet.com
|
||||
300 IN MX 10 powdercoatedcabinet.com
|
||||
10
zones/powdercotedcabinets.com.zone
Normal file
10
zones/powdercotedcabinets.com.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for powdercotedcabinets.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN powdercotedcabinets.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME powdercotedcabinets.com
|
||||
300 IN MX 10 powdercotedcabinets.com
|
||||
19
zones/prezhub.com.zone
Normal file
19
zones/prezhub.com.zone
Normal file
@ -0,0 +1,19 @@
|
||||
; Zone file for prezhub.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN prezhub.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 149.248.39.194
|
||||
dev 300 IN A 45.77.214.114
|
||||
cloud 3600 IN A 104.156.237.74
|
||||
dev2 300 IN A 149.248.33.94
|
||||
deploy-test 3600 IN A 66.42.75.226
|
||||
dev3 3600 IN A 45.77.215.104
|
||||
hspres 3600 IN A 172.30.10.11
|
||||
hspres-dev 3600 IN A 172.30.30.10
|
||||
upgrade 3600 IN A 45.32.230.148
|
||||
python3 3600 IN A 66.42.65.192
|
||||
* 300 IN CNAME prezhub.com
|
||||
300 IN MX 10 prezhub.com
|
||||
14
zones/qube-construction.com.zone
Normal file
14
zones/qube-construction.com.zone
Normal file
@ -0,0 +1,14 @@
|
||||
; Zone file for qube-construction.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN qube-construction.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 108.61.229.209
|
||||
* 300 IN CNAME qube-construction.com
|
||||
300 IN MX 10 mail.supported.systems
|
||||
300 IN TXT "v=spf1 mx a:mail.supported.systems ~all"
|
||||
dkim._domainkey 300 IN TXT "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuVZGFAou8+E8B7wpmc6ck4Y8Ydewp3uppPnvGVxeTpU9g7XtuUHH74iQiVxwkaW6Rx6/3LMPdkYQ9vjAy9TVYNVuBamVrzmVh0SQKv5oqxZPk6yP5gCD40G20fx0NvUwWadkfnMI8/vlCZ6W68WFxCrS+zi6AJl3sIbFZ4bEXlAAGZu2MihhVOryo3CB Y80m8ksH1XuujK8MuiReJjhsYtA39/zQGm2D5xMKFrp+JtOU2U8kzCz+DZ63H3iOE3BuKkhMtsABrmrOfEc0LrayF0YRIjtERYOWGMulVy7vuriCztLSoV0dLLyNlvDBTQGrZcICq8zFX40BiBQyGebtSQIDAQAB"
|
||||
_dmarc 300 IN TXT "v=DMARC1; p=reject; rua=mailto:reports@supported.systems; adkim=s; aspf=s;"
|
||||
_acme-challenge 300 IN TXT "GMDbS1nbzAKrNDwxYwPWHs_eKi4-0OnhQgl5VPh6WJs"
|
||||
14
zones/qube-septic.com.zone
Normal file
14
zones/qube-septic.com.zone
Normal file
@ -0,0 +1,14 @@
|
||||
; Zone file for qube-septic.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN qube-septic.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 108.61.229.209
|
||||
* 300 IN CNAME qube-septic.com
|
||||
mail.supported.systems 300 IN MX 10 qube-septic.com
|
||||
300 IN TXT "google-site-verification=TPaiTqkSCw0vRKrgXVBTua7kyIOHsJkfCf1RHfGTEWY"
|
||||
300 IN TXT "v=spf1 mx a:mail.supported.systems ~all"
|
||||
dkim._domainkey 300 IN TXT "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuVZGFAou8+E8B7wpmc6ck4Y8Ydewp3uppPnvGVxeTpU9g7XtuUHH74iQiVxwkaW6Rx6/3LMPdkYQ9vjAy9TVYNVuBamVrzmVh0SQKv5oqxZPk6yP5gCD40G20fx0NvUwWadkfnMI8/vlCZ6W68WFxCrS+zi6AJl3sIbFZ4bEXlAAGZu2MihhVOryo3CBY80m8ksH1XuujK8MuiReJjhsYtA39/zQGm2D5xMKFrp+JtOU2U8kzCz+DZ63H3iOE3BuKkhMtsABrmrOfEc0LrayF0YRIjtERYOWGMulVy7vuriCztLSoV0dLLyNlvDBTQGrZcICq8zFX40BiBQyGebtSQIDAQAB"
|
||||
_dmarc 3600 IN TXT "v=DMARC1;p=reject;sp=reject;rua=mailto:dmarc-report@qubeseptic.com;ruf=mailto:dmarc-failures@qubeseptic.com;aspf=s;adkim=s;fo=1;"
|
||||
52
zones/qubeseptic.com.zone
Normal file
52
zones/qubeseptic.com.zone
Normal file
@ -0,0 +1,52 @@
|
||||
; Zone file for qubeseptic.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN qubeseptic.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 108.61.229.209
|
||||
l 300 IN A 100.79.95.190
|
||||
* 300 IN A 108.61.229.209
|
||||
autoconfig 600 IN A 66.42.75.247
|
||||
*.l 300 IN A 100.79.95.190
|
||||
tw 300 IN CNAME lsct.ashburn.us1.twilio.com
|
||||
300 IN MX 10 mail.supported.systems
|
||||
jobs 300 IN MX 10 mail.supported.systems
|
||||
300 IN TXT "google-site-verification=TPaiTqkSCw0vRKrgXVBTua7kyIOHsJkfCf1RHfGTEWY"
|
||||
300 IN TXT "v=spf1 mx a:mail.supported.systems ~all"
|
||||
dkim._domainkey 300 IN TXT "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuVZGFAou8+E8B7wpmc6ck4Y8Ydewp3uppPnvGVxeTpU9g7XtuUHH74iQiVxwkaW6Rx6/3LMPdkYQ9vjAy9TVYNVuBamVrzmVh0SQKv5oqxZPk6yP5gCD40G20fx0NvUwWadkfnMI8/vlCZ6W68WFxCrS+zi6AJl3sIbFZ4bEXlAAGZu2MihhVOryo3CBY80m8ksH1XuujK8MuiReJjhsYtA39/zQGm2D5xMKFrp+JtOU2U8kzCz+DZ63H3iOE3BuKkhMtsABrmrOfEc0LrayF0YRIjtERYOWGMulVy7vuriCztLSoV0dLLyNlvDBTQGrZcICq8zFX40BiBQyGebtSQIDAQAB"
|
||||
_acme-challenge.pdfs.idaho.data.l 300 IN TXT "w2i5gOZBpprmIG4BT4qfhtZ5lyxroV_tIPGBQRx0h7U"
|
||||
_acme-challenge.idaho.data.l 300 IN TXT "SZ4U7rs6InsuAUqo31RBlvsvJQO8rsnw4UAMD9ilir0"
|
||||
_acme-challenge.idaho.data.l 300 IN TXT "bGf7a1zxcVPSPWjj_xik_Xk1EOc5mrNdy9Y6igC7sa0"
|
||||
_acme-challenge.pdfs.idaho.data.l 300 IN TXT "ia5jwWwj2LB8u6Irboju1zE5Xgo7oW4C2EKZJ4AgdSk"
|
||||
_acme-challenge.pdfs.idaho.data.l 300 IN TXT "0L13v3MqQt6JzvHBYXFpHr-71ZM-YcgHmysx4wy70M4"
|
||||
_acme-challenge.pdfs.idaho.data.l 300 IN TXT "bGHSQ8kr0BxXP4kjpsTzR-NPQZ1z9SSbEbZyc4xmn3c"
|
||||
_acme-challenge.pdfs.idaho.data.l 300 IN TXT "Yt4IOlPK1vdy5Q-s2TGNKA5e-fuEJQuomxjyS3vq9kM"
|
||||
_acme-challenge.pdfs.idaho.data.l 300 IN TXT "8lJVr9anqgOeASfCeYZmkDACiRWmNlF6C39f1LQAj7s"
|
||||
_acme-challenge.api.l 300 IN TXT "RGKdh-Sscvtlm1IF22RjeHFll2RnusLxRYEY523ab_k"
|
||||
_acme-challenge.api.l 300 IN TXT "DFE62Que-naq_f8EHi6KMWMQ2KgMb-kIHrGwpgQ4VJU"
|
||||
_acme-challenge.auth.leads.l 300 IN TXT "BM6OXZ0O1ehuOJsW9qiXKBVA4U_i9PIxpXOa85lxObc"
|
||||
_acme-challenge.api.dispatch 300 IN TXT "FYfNYJleW7GF_B0TuSa7jRKy0UwWLRQr2vgbNzVmYRQ"
|
||||
_acme-challenge.api.dispatch 300 IN TXT "0TI1UgqUV8RYPa7WJ922L_lueJOMfB9B9W0Ci06tMu8"
|
||||
_acme-challenge.api.dispatch 300 IN TXT "RwzpAIDzF3gRaoffic8BjyAsIwfPiDkRR9FURcEZlAw"
|
||||
_acme-challenge.mail.dispatch 300 IN TXT "IMu1pPsrsndOLGPHaIGk-d87UWdZ2XEOx5nB1TIC5V4"
|
||||
_acme-challenge.mail.dispatch 300 IN TXT "YIEbEC-2HMVupAkqMzTfpoHGdxawh8mtlrNuu9uQo_U"
|
||||
_acme-challenge.mail.dispatch 300 IN TXT "Ju-EKSL-csMJ5YtOD4tN_Xfzd4Dr8-Lr8GpYacxXsU4"
|
||||
_acme-challenge.dispatch 300 IN TXT "FgyBNrpL75bXhU6VYhnGxA1nEIx66i87z1MrjrbwkvE"
|
||||
_twilio 300 IN TXT "twilio-domain-verification=90d2b1c2eb2f73eaadd26dcf19548886"
|
||||
_twilio.tw 300 IN TXT "twilio-domain-verification=90d2b1c2eb2f73eaadd26dcf19548886"
|
||||
_acme-challenge.rentcache.dispatch 300 IN TXT "K_KbhgTrWk18emFEHdDP9dLR276uU0a0US2I-MyutTo"
|
||||
_dmarc 3600 IN TXT "v=DMARC1;p=reject;sp=reject;rua=mailto:dmarc-report@qubeseptic.com;ruf=mailto:dmarc-failures@qubeseptic.com;aspf=s;adkim=s;fo=1;"
|
||||
jobs 300 IN TXT "v=spf1 mx a:mail.supported.systems ~all"
|
||||
dkim._domainkey.jobs 300 IN TXT "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuVZGFAou8+E8B7wpmc6ck4Y8Ydewp3uppPnvGVxeTpU9g7XtuUHH74iQiVxwkaW6Rx6/3LMPdkYQ9vjAy9TVYNVuBamVrzmVh0SQKv5oqxZPk6yP5gCD40G20fx0NvUwWadkfnMI8/vlCZ6W68WFxCrS+zi6AJl3sIbFZ4bEXlAAGZu2MihhVOryo3CBY80m8ksH1XuujK8MuiReJjhsYtA39/zQGm2D5xMKFrp+JtOU2U8kzCz+DZ63H3iOE3BuKkhMtsABrmrOfEc0LrayF0YRIjtERYOWGMulVy7vuriCztLSoV0dLLyNlvDBTQGrZcICq8zFX40BiBQyGebtSQIDAQAB"
|
||||
_acme-challenge.leads 300 IN TXT "b24y9q6jcLxVc3E3ItxJBAmd1G1yClQ6kf-vYhzzkhk"
|
||||
_acme-challenge.leads 300 IN TXT "0MwwP6kHZhTRdxpYs6SP5l2xvKWYKXJvhwP_UsYg8kg"
|
||||
_acme-challenge 300 IN TXT "IUHPs530qhNQgx9IYh9uyg12hSLE4-IWXVVa35QHvdA"
|
||||
_imap._tcp 600 IN SRV 20 0 143 mail.supported.systems
|
||||
_pop3._tcp 600 IN SRV 20 0 110 mail.supported.systems
|
||||
_submission._tcp 600 IN SRV 20 0 587 mail.supported.systems
|
||||
_autodiscover._tcp 600 IN SRV 10 0 443 mail.supported.systems
|
||||
_submissions._tcp 600 IN SRV 10 0 465 mail.supported.systems
|
||||
_imaps._tcp 600 IN SRV 10 0 993 mail.supported.systems
|
||||
_pop3s._tcp 600 IN SRV 10 0 995 mail.supported.systems
|
||||
12
zones/reviewr.guru.zone
Normal file
12
zones/reviewr.guru.zone
Normal file
@ -0,0 +1,12 @@
|
||||
; Zone file for reviewr.guru
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN reviewr.guru.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME reviewr.guru
|
||||
300 IN MX 10 reviewr.guru
|
||||
_acme-challenge 300 IN TXT "fGfh9Hq2rjOu_QM6xeU19akab6kBTU2d1hWVrJLyowY"
|
||||
_acme-challenge 300 IN TXT "Wpjy1LvjA94-LpIsp5PpyrXK-ZVQ-zlAoIhu2XR2gAg"
|
||||
10
zones/rsvp-for.de.zone
Normal file
10
zones/rsvp-for.de.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for rsvp-for.de
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN rsvp-for.de.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME rsvp-for.de
|
||||
300 IN MX 10 rsvp-for.de
|
||||
18
zones/ryanmalloy.com.zone
Normal file
18
zones/ryanmalloy.com.zone
Normal file
@ -0,0 +1,18 @@
|
||||
; Zone file for ryanmalloy.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN ryanmalloy.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 108.61.229.209
|
||||
l 300 IN A 100.79.95.190
|
||||
*.l 300 IN A 100.79.95.190
|
||||
* 300 IN CNAME ryanmalloy.com
|
||||
300 IN MX 10 mail.supported.systems
|
||||
300 IN TXT "v=spf1 mx a:mail.supported.systems ~all"
|
||||
_dmarc 3600 IN TXT "v=DMARC1; p=quarantine; rua=mailto:reports@ryanmalloy.com; adkim=s; aspf=s;"
|
||||
_acme-challenge.c4ai 300 IN TXT "sjdm_4JFJfjMQL2ZFb6k-S99gKOnxloIlDrAj15uNkQ"
|
||||
_acme-challenge.timelinize.l 300 IN TXT "vX4WW3y7aZ6rmPnXWbxTtA5F5ZLE7559bvxbBTXm_Bc"
|
||||
_acme-challenge.timelinize.l 300 IN TXT "pDaP_rq_CuetBDXERK4V_z80uXS2MKptX4dS-hsuzEk"
|
||||
_acme-challenge.timelinize.l 300 IN TXT "bqdeHmt500XGMWUJ3zHrCd1MPmlBN_ySGyTTQWO5vJs"
|
||||
10
zones/screencast.systems.zone
Normal file
10
zones/screencast.systems.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for screencast.systems
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN screencast.systems.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME screencast.systems
|
||||
300 IN MX 10 screencast.systems
|
||||
14
zones/septic.report.zone
Normal file
14
zones/septic.report.zone
Normal file
@ -0,0 +1,14 @@
|
||||
; Zone file for septic.report
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN septic.report.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 108.61.229.209
|
||||
*.l 300 IN A 100.79.95.190
|
||||
l 300 IN A 100.79.95.190
|
||||
* 300 IN CNAME septic.report
|
||||
permits 300 IN CNAME docker-2.supported.systems
|
||||
*.permits 300 IN CNAME permits.septic.report
|
||||
300 IN MX 10 septic.report
|
||||
15
zones/sidejob.pro.zone
Normal file
15
zones/sidejob.pro.zone
Normal file
@ -0,0 +1,15 @@
|
||||
; Zone file for sidejob.pro
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN sidejob.pro.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 108.61.229.209
|
||||
*.l 300 IN A 100.79.95.190
|
||||
l 300 IN A 100.79.95.190
|
||||
* 300 IN CNAME sidejob.pro
|
||||
300 IN MX 10 sidejob.pro
|
||||
_acme-challenge.api 300 IN TXT "a1zkQ7ukvloDCOuB5kCsxC1TWH2rRXKCCI88GJrwV84"
|
||||
_acme-challenge.api 300 IN TXT "UIKc6hzCSLphH1kQtdGMspvWKcG-k4hXcPOOV6HrydA"
|
||||
_acme-challenge.api 300 IN TXT "GySOUk0DnGhgDKXDgUM-ggQudeENlQIi6jBPtb2O0EE"
|
||||
22
zones/spencernewbolt.com.zone
Normal file
22
zones/spencernewbolt.com.zone
Normal file
@ -0,0 +1,22 @@
|
||||
; Zone file for spencernewbolt.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN spencernewbolt.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME spencernewbolt.com
|
||||
300 IN MX 10 spencernewbolt.com
|
||||
_acme-challenge 300 IN TXT "7LRHziqmBhlugdqQkYZXApqUvxiBge0778ytQD1tpTE"
|
||||
_acme-challenge 300 IN TXT "jLCV5ppfiEtaQgi1gJhrz3wjJxToz-K3rvipV1V15VA"
|
||||
_acme-challenge 300 IN TXT "xAopkrs3dtpclwG4xsFxJel0bonXEaik4AO2V45H7CE"
|
||||
_acme-challenge 300 IN TXT "qXXhshP80nSvwQDWKuyoBc2-h2xEc7gHNW-5tcXjFRk"
|
||||
_acme-challenge 300 IN TXT "XBue9sByo4YQFRmVQ1C0wSwfOrzlAkIKF2_xcjxHTcs"
|
||||
_acme-challenge 300 IN TXT "rBz3Ga7xrd1dF-IjXGvq3Aw6LHxVMrkWaaQWpPi7x3w"
|
||||
_acme-challenge 300 IN TXT "M-3hB-ZCjmet00LRVkdARH9umQovcbMyv9b9DEKplJ0"
|
||||
_acme-challenge 300 IN TXT "i73WUBm7JxVmoIMS4U-b0MIKIYsM0O-XVCQWOj2dJrU"
|
||||
_acme-challenge 300 IN TXT "HZ-VtFzV2KqB2o4cIcxI2Z-Hg2f39I1YtuhsKIreEZY"
|
||||
_acme-challenge 300 IN TXT "OZvWikr-Q0gDjAW0o5Ka-vDKO7DwLPjLsn_SiKx3rXc"
|
||||
_acme-challenge 300 IN TXT "YbWH161Cf4IWHhjeBg0E0iZsLZiIaxABS-dnz9KhCYE"
|
||||
_acme-challenge 300 IN TXT "-2-QqVRhx86FWbMlO-3e3Dasv_hadKc4sbOpX_9V_eg"
|
||||
135
zones/supported.systems.zone
Normal file
135
zones/supported.systems.zone
Normal file
@ -0,0 +1,135 @@
|
||||
; Zone file for supported.systems
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN supported.systems.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 108.61.229.209
|
||||
mail 300 IN A 66.42.75.247
|
||||
ssh 300 IN A 45.77.1.152
|
||||
git 300 IN A 66.42.70.188
|
||||
* 60 IN A 108.61.229.209
|
||||
up 300 IN A 45.63.92.95
|
||||
vpn 300 IN A 45.77.1.152
|
||||
cdn 300 IN A 155.138.192.181
|
||||
server1 300 IN A 45.76.231.166
|
||||
docker-1 300 IN A 108.61.229.209
|
||||
dns 300 IN A 45.63.92.95
|
||||
or 300 IN A 74.91.22.233
|
||||
mx 300 IN A 144.202.25.84
|
||||
pm1 300 IN A 63.141.228.162
|
||||
fw-1.nocix 300 IN A 192.168.99.2
|
||||
s3-slow 300 IN A 155.138.192.181
|
||||
spacetimedb 300 IN A 74.91.22.226
|
||||
posthog 300 IN A 74.91.22.230
|
||||
supabase 300 IN A 74.91.22.231
|
||||
ldap 300 IN A 74.91.22.231
|
||||
authentik 300 IN A 74.91.22.231
|
||||
pihole 300 IN A 69.62.64.174
|
||||
vault 300 IN A 108.61.229.209
|
||||
help 300 IN A 108.61.229.209
|
||||
nautobot 300 IN A 69.62.64.174
|
||||
*.valhalla 300 IN A 74.91.22.232
|
||||
seafile 300 IN A 155.138.192.181
|
||||
*.dj.l 300 IN A 127.0.0.1
|
||||
*.flamenco.l 300 IN A 127.0.0.1
|
||||
flamenco.l 300 IN A 127.0.0.1
|
||||
*.test 300 IN A 74.91.22.234
|
||||
test 300 IN A 74.91.22.234
|
||||
dj 300 IN A 108.61.229.209
|
||||
pbx 300 IN A 155.138.222.32
|
||||
phone 300 IN A 155.138.222.32
|
||||
ptt 300 IN A 155.138.222.32
|
||||
ptt-api 300 IN A 155.138.222.32
|
||||
gpu-2 300 IN A 45.63.79.151
|
||||
hure 300 IN A 108.61.229.209
|
||||
tigerstyle 300 IN A 108.61.229.209
|
||||
bezel 300 IN A 45.63.92.95
|
||||
gpu-0 300 IN A 140.82.5.177
|
||||
gpu-1 300 IN A 108.61.17.52
|
||||
vllm-5 300 IN A 45.77.206.172
|
||||
gpu 300 IN A 208.167.253.10
|
||||
*.gpu 300 IN A 208.167.253.10
|
||||
langfuse 300 IN A 208.167.253.10
|
||||
grafana 300 IN A 208.167.253.10
|
||||
vllm-2 300 IN A 45.76.31.63
|
||||
prezhub 300 IN A 45.32.217.212
|
||||
gpu-spot-1 300 IN A 149.248.19.109
|
||||
gpu-spot-2 300 IN A 45.77.17.87
|
||||
siglip 300 IN A 208.167.253.10
|
||||
*.siglip 300 IN A 208.167.253.10
|
||||
staging.siglip 300 IN A 208.167.253.10
|
||||
docker-2 300 IN A 149.28.126.25
|
||||
sip 300 IN A 108.61.229.209
|
||||
big-ass-llm-1 300 IN A 45.76.107.157
|
||||
ollama-a40ls-1 300 IN A 96.30.196.136
|
||||
ollama-gh200-1 300 IN A 155.138.192.146
|
||||
ollama-gh200-2 300 IN A 155.138.229.176
|
||||
ollama-gh200-3 300 IN A 144.202.23.41
|
||||
l 300 IN A 100.79.95.190
|
||||
*.l 300 IN A 100.79.95.190
|
||||
twilio.sip 300 IN A 108.61.229.209
|
||||
cucm-pub.phones 300 IN A 192.168.1.128
|
||||
cucm-sub1.phones 300 IN A 192.168.1.129
|
||||
ccx-pub.phones 300 IN A 192.168.1.130
|
||||
ccx-sub1.phones 300 IN A 192.168.1.131
|
||||
gpu 300 IN AAAA 2001:19f0:1000:c56a:5400:5ff:fedf:9874
|
||||
*.gpu 300 IN AAAA 2001:19f0:1000:c56a:5400:5ff:fedf:9874
|
||||
grafana 300 IN AAAA 2001:19f0:1000:c56a:5400:5ff:fedf:9874
|
||||
langfuse 300 IN AAAA 2001:19f0:1000:c56a:5400:5ff:fedf:9874
|
||||
gpu-spot-1 300 IN AAAA 2001:19f0:6000:2125:5400:05ff:fee3:cfb6
|
||||
gpu-spot-2 300 IN AAAA 2001:19f0:7002:118d:5400:05ff:fee4:4a9a
|
||||
ollama-gh200-1 300 IN AAAA 2001:19f0:5400:220b:a288:c2ff:fea7:62c5
|
||||
autoconfig 3600 IN CNAME mail.supported.systems
|
||||
*.vpn 300 IN CNAME vpn.supported.systems
|
||||
app.mcpmc-1.l 300 IN CNAME mpmc-1.l.supported.systems
|
||||
auth.llm-fusion-mcp.l 300 IN CNAME llm-fusion-mcp.l.supported.systems
|
||||
*.llm-fusion-mcp.l 300 IN CNAME llm-fusion-mcp.l.supported.systems
|
||||
*.mcpmc-1.l 300 IN CNAME mcpmc-1.l.supported.systems
|
||||
*.unger-todo.l 300 IN CNAME unger-todo.l.supported.systems
|
||||
*.tigerstyle.l 300 IN CNAME tigerstyle.l.supported.systems
|
||||
*.marcia.l 300 IN CNAME marcia.l.supported.systems
|
||||
*.mcp-vultr.l 300 IN CNAME mcp-vultr.l.supported.systems
|
||||
*.room-scanner.l 300 IN CNAME room-scanner.l.supported.systems
|
||||
*.pages.l 300 IN CNAME pages.l.supported.systems
|
||||
*.mcp-client-test.l 300 IN CNAME mcp-client-test.l.supported.systems
|
||||
*.magicplan.l 300 IN CNAME magicplan.l.supported.systems
|
||||
*.whereis.l 300 IN CNAME l.supported.systems
|
||||
*.leads.l 300 IN CNAME l.supported.systems
|
||||
*.portal.l 300 IN CNAME portal.l.supported.systems
|
||||
*.www.l 300 IN CNAME www.l.supported.systems
|
||||
*.matrix.l 300 IN CNAME matrix.l.supported.systems
|
||||
ollama 300 IN CNAME gpu-1.supported.systems
|
||||
speech 300 IN CNAME gpu-2.supported.systems
|
||||
chat.ollama 300 IN CNAME gpu-1.supported.systems
|
||||
*.hure 300 IN CNAME hure.supported.systems
|
||||
dafuk 300 IN CNAME hure.supported.systems
|
||||
*.tigerstyle 300 IN CNAME tigerstyle.supported.systems
|
||||
ei.l 300 IN CNAME idx.l.supported.systems
|
||||
vllm 300 IN CNAME gpu-0.supported.systems
|
||||
*.gpu-0 300 IN CNAME gpu-0.supported.systems
|
||||
llm 300 IN CNAME lb.gpu.supported.systems
|
||||
*.sip 300 IN CNAME sip.supported.systems
|
||||
s120 300 IN CNAME docker-2.supported.systems
|
||||
docs 300 IN CNAME docker-2.supported.systems
|
||||
*.docs 300 IN CNAME docker-2.supported.systems
|
||||
mcbluetooth 300 IN CNAME docker-2.supported.systems
|
||||
300 IN MX 10 mail.supported.systems
|
||||
3600 IN TXT "v=spf1 mx a:mail.supported.systems ~all"
|
||||
3600 IN TXT "google-site-verification=15bc_L-lCtt0kqBDSaxT92-ftzENYEfMuHv3g7yVNS8"
|
||||
_dmarc 3600 IN TXT "v=DMARC1; p=reject; rua=mailto:reports@supported.systems; adkim=s; aspf=s;"
|
||||
dkim._domainkey 3600 IN TXT "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuGPt3zH0RxxDUW1Wg+3FOKIYNQy5vo/hvbPB/U6O7hh5K/SnQ2MDPfnL3B+Ur3kKmYFcSTdVMotr9Ds7wRJWFv49oK4f4VKxfoBD8Sh9GrJDNDM+g86h8M1v3cWKLdeRa+UczJDLRb9wwW8eRR17OQafqGupN0ZbsazbZwTrC5z/RZlLBtEMsIceWwHP hR+H3Bl9rH2t1RQSjbD2A9fM5EPXeVvzn9SwDpxgfMRfs7/k/prPASxW0/8Bun3k2BOzOjP/H4v509xTJOn/6S5eC2QJ47hw5XsjOu1j9Fy2YqUkgDpcrqLiS5K/7E+BSWURitfuxAamv+vkTfrbU3D0lQIDAQAB"
|
||||
supported.systems._report._dmarc.mail 3600 IN TXT "v=DMARC1;"
|
||||
3600 IN TXT "openai-domain-verification=dv-U5gJT4fmfg0LnrKfBgmv5vt6"
|
||||
_25._tcp.mail 86400 IN TXT "2 1 1 0b9fa5a59eed715c26c1020c711b4f6ec42d58b0015e14337a39dad301c5afc3"
|
||||
qubeseptic.com._report._dmarc.mail 300 IN TXT "v=DMARC1;"
|
||||
_twilio 300 IN TXT "twilio-domain-verification=efffc13bf1b402210d9d2b65e3532a48"
|
||||
_twilio.tw 300 IN TXT "twilio-domain-verification=833caff534ff55960f1f1c92ea3d2e49"
|
||||
_imaps._tcp 3600 IN SRV 10 0 993 mail.supported.systems
|
||||
_submission._tcp 3600 IN SRV 10 0 587 mail.supported.systems
|
||||
_sips._tcp.sip 600 IN SRV 10 0 5061 sip.supported.systems
|
||||
_sip._udp.sip 600 IN SRV 10 0 5060 sip.supported.systems
|
||||
_sip._udp 300 IN SRV 10 0 5060 sip.supported.systems
|
||||
_sip._tcp 300 IN SRV 10 0 5060 sip.supported.systems
|
||||
_sips._tcp 300 IN SRV 10 0 5061 sip.supported.systems
|
||||
11
zones/supportedsystems.com.zone
Normal file
11
zones/supportedsystems.com.zone
Normal file
@ -0,0 +1,11 @@
|
||||
; Zone file for supportedsystems.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN supportedsystems.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME supported.systems
|
||||
3600 IN MX 10 mail.supported.systems
|
||||
3600 IN TXT "v=spf1 mx a:mail.supported.systems ~all"
|
||||
10
zones/supportedsystems.net.zone
Normal file
10
zones/supportedsystems.net.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for supportedsystems.net
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN supportedsystems.net.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME supportedsystems.net
|
||||
3600 IN MX 1 mail.supported.systems
|
||||
10
zones/syslog.chat.zone
Normal file
10
zones/syslog.chat.zone
Normal file
@ -0,0 +1,10 @@
|
||||
; Zone file for syslog.chat
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN syslog.chat.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.226
|
||||
* 300 IN CNAME syslog.chat
|
||||
300 IN MX 10 syslog.chat
|
||||
25
zones/tatemalloy.com.zone
Normal file
25
zones/tatemalloy.com.zone
Normal file
@ -0,0 +1,25 @@
|
||||
; Zone file for tatemalloy.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN tatemalloy.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME tatemalloy.com
|
||||
mail 300 IN CNAME mail.supported.systems
|
||||
300 IN MX 10 mail.supported.systems
|
||||
3600 IN TXT "v=spf1 mx a:mail.supported.systems ~all"
|
||||
_acme-challenge 300 IN TXT "zoUmIIDLDdYsMwc-o_q89XJqguhxdh-GG2f1Ry35Mzg"
|
||||
_acme-challenge 300 IN TXT "GR_EICKHgxOHXGzU26ZrmuqES-RQk4KTRbT9ackqIIQ"
|
||||
_acme-challenge 300 IN TXT "E1znurfm5S4wzw9xP6OXRIyJ3qqOnyivRkqcBdB5i0k"
|
||||
_acme-challenge 300 IN TXT "awFpsYesAe_VwgfvB2RtmI65ztjdn7gqaO4yQbnF5sQ"
|
||||
_acme-challenge 300 IN TXT "uv7KKRaIZSjmlk9GSIRK2LYdsEDxfs8q21UGAEebZkQ"
|
||||
_acme-challenge 300 IN TXT "lMRXG74T_Or-bevXlL-BLaNMXoA3-Myg5lW0dF_Hop0"
|
||||
_acme-challenge 300 IN TXT "DCBBi9Ei5A8C94kKohMewkrskPtxVwrgEdSrIg6jutY"
|
||||
_acme-challenge 300 IN TXT "hCCRByRVG2b7X65qUOqwyXfmNfI8QKzyRLKnR2xvCYg"
|
||||
_acme-challenge 300 IN TXT "U4lSaBVa8-UIBwQ5zS3_YuozLTWZ6KRrkdP2RWF0INM"
|
||||
_acme-challenge 300 IN TXT "ima5uh3kXccKFf35ZCLfalZT4XbQJB05GnyvtAIqYTw"
|
||||
_acme-challenge 300 IN TXT "LWUF146g8xiEiWdYY6pWb2iwCm5bE4i1vLjt2w9Mx2U"
|
||||
_acme-challenge 300 IN TXT "SHktbBbFNl-03DimuwNBin1NyL7x7GD5vN7jNlhs0wU"
|
||||
_acme-challenge 300 IN TXT "5yvO_8LolWXqsy8PxrqBL-RWaWzKnccWN0L4XiFWwgE"
|
||||
11
zones/tateorrtot.games.zone
Normal file
11
zones/tateorrtot.games.zone
Normal file
@ -0,0 +1,11 @@
|
||||
; Zone file for tateorrtot.games
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN tateorrtot.games.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 162.43.207.251
|
||||
300 IN AAAA 2605:21c0:1000:53:250:56ff:fe91:5415
|
||||
* 300 IN CNAME tateorrtot.games
|
||||
300 IN MX 10 mail.supported.system
|
||||
14
zones/timber.ink.zone
Normal file
14
zones/timber.ink.zone
Normal file
@ -0,0 +1,14 @@
|
||||
; Zone file for timber.ink
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN timber.ink.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
l 300 IN A 127.0.0.1
|
||||
* 300 IN CNAME timber.ink
|
||||
*.l 300 IN CNAME l.timber.ink
|
||||
300 IN MX 10 timber.ink
|
||||
_acme-challenge.l 300 IN TXT "Zf92MXoRMCkCDinlu7yQ31Cp7gGg30Kilc9lVbF-l8w"
|
||||
_acme-challenge.api.l 300 IN TXT "IJy9QiaLG4tJ_-T5X7VMVdFftTRRH7R_zKdoQRr8IGs"
|
||||
27
zones/trackfeeds.cloud.zone
Normal file
27
zones/trackfeeds.cloud.zone
Normal file
@ -0,0 +1,27 @@
|
||||
; Zone file for trackfeeds.cloud
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN trackfeeds.cloud.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
l 300 IN A 10.20.0.38
|
||||
* 300 IN CNAME trackfeeds.cloud
|
||||
*.l 300 IN CNAME l.trackfeeds.cloud
|
||||
300 IN MX 10 trackfeeds.cloud
|
||||
_acme-challenge 300 IN TXT "sKMvgTw0q22DS6SWpYXtuuaawKlkhlQZS4VDoBCnA5M"
|
||||
_acme-challenge 300 IN TXT "tHTPgG3uSXwoBu6ulChvsyxzOn4wCb0IVrdfz9PUiwg"
|
||||
_acme-challenge 300 IN TXT "J7ggXe7lmq6zbL3nKfMUbOi8PPDeJDiIgsBsO36Cd2Q"
|
||||
_acme-challenge 300 IN TXT "HvOO2cEEdjVdYD-7hIbVXJ0_s7VlJuIHYp7TlBxKSZM"
|
||||
_acme-challenge 300 IN TXT "bRSMmxl2zEttRAwU-vEJaCvaDX5KM35epmaaLjFxrYk"
|
||||
_acme-challenge 300 IN TXT "2y6FIj11qm97tLtnhyiCPeNI5OQlW5EZ9NZ0KPBFzTU"
|
||||
_acme-challenge 300 IN TXT "M-Ik5rZUsbHpmlHEhGRQPAymtgfPbYgQxatmVg_3VO8"
|
||||
_acme-challenge 300 IN TXT "TRUqxx42tgN7eUeVYSUe6t6VnNdtggkgSM-J_nn2u0Y"
|
||||
_acme-challenge 300 IN TXT "7CmyYlbalTVWoL0O0w2n3NRzrxq6JeHjWSXIzNtygcc"
|
||||
_acme-challenge 300 IN TXT "Lx6XHjnXBJJZ4qiupaHH2BP3J17a3BDycloiFpo6I6o"
|
||||
_acme-challenge 300 IN TXT "4azVDm_9EH1QheQbbM1WPmtdhlZzPBNDp7QseCBmrsY"
|
||||
_acme-challenge 300 IN TXT "WpsM92QpKO-BEpe46sSvYAjsFeCRyj0rQYNvQOMDapo"
|
||||
_acme-challenge 300 IN TXT "FstZtHdbdkmUKZRc4XF7YTYXw4IOYZDjpR9awQio3NI"
|
||||
_acme-challenge 300 IN TXT "997TMR_EEeDQlWaaFkefhMVBfjGSurhm4UZhWPrfeR8"
|
||||
_acme-challenge 300 IN TXT "QuLiHfwQDjatKUV_y0AmKx5lqhtTcUTxCgBA35BRZgg"
|
||||
22
zones/tuckermalloy.com.zone
Normal file
22
zones/tuckermalloy.com.zone
Normal file
@ -0,0 +1,22 @@
|
||||
; Zone file for tuckermalloy.com
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN tuckermalloy.com.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
* 300 IN CNAME tuckermalloy.com
|
||||
300 IN MX 10 tuckermalloy.com
|
||||
_acme-challenge 300 IN TXT "TDRs9UeCuV_oxivongFlJSHA5A9ky0epe4_yC5ACUyI"
|
||||
_acme-challenge 300 IN TXT "ig-bSaPcTscjbFlEo3yK7PXDbrps99TEnqgwjaN-D0U"
|
||||
_acme-challenge 300 IN TXT "7JP0aoiLiaRC0dnMemCSe2mqJltAfaJukPXFfLG37-w"
|
||||
_acme-challenge 300 IN TXT "mewSAXuGQd89gMJaw2TNUC5CwfQaR9ByvAqBv6Gemtg"
|
||||
_acme-challenge 300 IN TXT "CKXl1kfSv6xKF7O_4k3HXHtNc_WRBgcywmfSYvVBydM"
|
||||
_acme-challenge 300 IN TXT "2CdSwYQWKVQMhjfV_BIiQHe4GbrtEPqcIV7wcffSMPo"
|
||||
_acme-challenge 300 IN TXT "mcyPWEQyynJhdSq2Fd_Wg_0RS0uYZs1YxDXHZnjFVAg"
|
||||
_acme-challenge 300 IN TXT "Q_WAPa_6yO46D9EgS5U9qRXCSw8FdTuKeSvpsemE79M"
|
||||
_acme-challenge 300 IN TXT "qc0BcwZ6TNegvZ9Ymq4ymmBbbuBPJquzLq3mwMpnRQA"
|
||||
_acme-challenge 300 IN TXT "fguL4374pHh2OmuWOFr5dbR3kGgQ6GVHyOSXxgO5WvY"
|
||||
_acme-challenge 300 IN TXT "RXUofc6dg3bYPndu75PEN8agJQase92ZIv0FwOt9u-A"
|
||||
_acme-challenge 300 IN TXT "a-o_fe9bHrENho0_jeiwrZ1o0X3ZW_a-Gxq1XD5Qs78"
|
||||
45
zones/upc.llc.zone
Normal file
45
zones/upc.llc.zone
Normal file
@ -0,0 +1,45 @@
|
||||
; Zone file for upc.llc
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN upc.llc.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
l 300 IN A 127.0.0.1
|
||||
300 IN A 108.61.229.209
|
||||
* 300 IN A 108.61.229.209
|
||||
300 IN AAAA 2001:19f0:5c01:12ca:5400:5ff:fe35:a427
|
||||
* 300 IN AAAA 2001:19f0:5c01:12ca:5400:5ff:fe35:a427
|
||||
*.l 300 IN CNAME l.upc.llc
|
||||
mail 300 IN CNAME mail.supported.systems
|
||||
autoconfig 600 IN CNAME mail.upc.llc
|
||||
*.portal.l 300 IN CNAME portal.l.upc.llc
|
||||
*.s3 300 IN CNAME s3.upc.llc
|
||||
*.report.l 300 IN CNAME report.l.upc.llc
|
||||
*.report 300 IN CNAME report.upc.llc
|
||||
300 IN MX 10 upc.llc
|
||||
300 IN MX 10 mail.supported.systems
|
||||
_acme-challenge.l 300 IN TXT "LZGNwW9DGUuN2ly0vm5czSrRIG20lqx--6Gd4j1x71w"
|
||||
_acme-challenge.l 300 IN TXT "sSIwSVfZ2ceW8ie8aYXrzf73iEWMZSXl9e6ogxFQNCc"
|
||||
_acme-challenge.l 300 IN TXT "Z4fh4rHw8d-GR-L3cnocj8o-8OpI5GccMwWRQiUnPd0"
|
||||
_acme-challenge.l 300 IN TXT "8kd2q8Ib7DFvq8SAGsKTtxU2qLV7L8E_ePD8Ww2MVfA"
|
||||
_acme-challenge.l 300 IN TXT "q-aWCBE1lMD0_xcNzwWydAW7bk3tLzMIWYi2z0WapWE"
|
||||
_acme-challenge.l 300 IN TXT "p3G13Tmd-S47IDPo2Zjq4NJjQZ9qJyZw_izjte3Y9ps"
|
||||
_acme-challenge.www.l 300 IN TXT "9vR7zAbgH0Tbfhmz5Mi94XtjS1St8r7ZOulkgn1Jo_s"
|
||||
300 IN TXT "v=spf1 include:mail.supported.systems ~all"
|
||||
_acme-challenge.s3 300 IN TXT "e_fyF4DWbCUGErurD1HxCWY67I5868wAODGSbqR2CKE"
|
||||
_acme-challenge.oscar-admin.l 300 IN TXT "CuCSK7VwXgrIkFCniISQTysR9YasyYZGGR_npvLkvTM"
|
||||
_acme-challenge.or 300 IN TXT "sZUOOMwyY7i0iBeGJDvT770cbxYBZ1YTcJhVSgAm8PM"
|
||||
_acme-challenge.minio.or 300 IN TXT "lr9ZZF6wZD2w_yjXPmi651_4tqKgegBE86n7ZwKFkRQ"
|
||||
_acme-challenge 300 IN TXT "uuhLgoMHHvVoMzRPm0mncCFVMqZA1CIu24uIyEqEnbE"
|
||||
_acme-challenge.catalog 300 IN TXT "SrMSL___IIdzxTKRJY4TNIv3Wf8HMh_S63IfR23WVvk"
|
||||
_acme-challenge.catalog 300 IN TXT "BKP8F679sa2ThAFBNI0Ki112cOKfrBVRsnKPMbC1PHU"
|
||||
_acme-challenge.report-1.l 300 IN TXT "47OK-_UnAAr0EwrRDdqbVcB10PNzoMTixEhxrRJKVO4"
|
||||
_acme-challenge.notes.report-1.l 300 IN TXT "a-1AbHE3CnlEXnyMxFGX51GbC0UxcAACYeOmUWlwXE0"
|
||||
_imap._tcp 600 IN SRV 20 0 143 mail.upc.llc.
|
||||
_pop3._tcp 600 IN SRV 20 0 110 mail.upc.llc.
|
||||
_submission._tcp 600 IN SRV 20 0 587 mail.upc.llc.
|
||||
_autodiscover._tcp 600 IN SRV 10 0 443 mail.upc.llc.
|
||||
_submissions._tcp 600 IN SRV 10 0 465 mail.upc.llc.
|
||||
_imaps._tcp 600 IN SRV 10 0 993 mail.upc.llc.
|
||||
_pop3s._tcp 600 IN SRV 10 0 995 mail.upc.llc.
|
||||
14
zones/warehack.ing.zone
Normal file
14
zones/warehack.ing.zone
Normal file
@ -0,0 +1,14 @@
|
||||
; Zone file for warehack.ing
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN warehack.ing.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 149.28.126.25
|
||||
l 300 IN A 100.79.95.190
|
||||
*.l 300 IN A 100.79.95.190
|
||||
* 300 IN CNAME warehack.ing
|
||||
git 300 IN CNAME idahomuellers.fortiddns.com
|
||||
juliet 300 IN CNAME rpm-bullet.mer.idahomuellers.net
|
||||
300 IN MX 10 warehack.ing
|
||||
24
zones/westboise.org.zone
Normal file
24
zones/westboise.org.zone
Normal file
@ -0,0 +1,24 @@
|
||||
; Zone file for westboise.org
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN westboise.org.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 74.91.22.234
|
||||
300 IN AAAA 2001:19f0:5:4dab:3eec:efff:feb9:f65e
|
||||
* 300 IN CNAME westboise.org
|
||||
300 IN MX 10 mail.supported.systems
|
||||
3600 IN TXT "v=spf1 mx a:mail.supported.systems ~all"
|
||||
_acme-challenge 300 IN TXT "05EbsyARBzLskBoEHUwM99Togj1S-p0KEjeU6qnuR7E"
|
||||
_acme-challenge 300 IN TXT "hk4LRncjXHz7HfpRM5euUNJjoj8i8srHZhoKoy6T36M"
|
||||
_acme-challenge 300 IN TXT "SHz7RNa2PcPyJvCqhTsQlGzIq1zZsjbqP-sifMoUsck"
|
||||
_acme-challenge 300 IN TXT "c2g2-PH3tzRNps7Ukk9Muj9WE80OgnbpziQ_09fWtrY"
|
||||
_acme-challenge 300 IN TXT "fKBh44BOUt-6GxQGePQ7mjwrPwqXuL_LMucPq5J9Fow"
|
||||
_acme-challenge 300 IN TXT "SVHf4t5RdDC1Xjbo8UnfgwXQsxNqqnii9Sz2TLFWavI"
|
||||
_acme-challenge 300 IN TXT "QrmB1SVn6DP17J6mMTjHQ4WbPUKloaPGSsvBHD03TBw"
|
||||
_acme-challenge 300 IN TXT "5C_jASC_w_Dl-8H0VeKTPQWneH4HY4ZFbzgUV9EuwJs"
|
||||
_acme-challenge 300 IN TXT "1SgYQJScXjkWRdST4WxXrjp8dSFxI-NWxhRkJDn1BfA"
|
||||
_acme-challenge 300 IN TXT "B00-RbjOp-mGxX_WkFng6tEoyxzhGe334bclADHMb-Y"
|
||||
_acme-challenge 300 IN TXT "du82JOyEWbbRXlyVSqPpl38uGzJ-ZfLin3cZ2oeuPEY"
|
||||
_acme-challenge 300 IN TXT "sYmya4OTlYsdu8b3X1k1es5GivxqKddOH52g2mGAfy4"
|
||||
18
zones/zmesh.systems.zone
Normal file
18
zones/zmesh.systems.zone
Normal file
@ -0,0 +1,18 @@
|
||||
; Zone file for zmesh.systems
|
||||
; Generated by mcp-vultr
|
||||
$ORIGIN zmesh.systems.
|
||||
$TTL 3600
|
||||
|
||||
300 IN NS ns1.vultr.com
|
||||
300 IN NS ns2.vultr.com
|
||||
300 IN A 149.28.126.25
|
||||
l 300 IN A 100.79.95.190
|
||||
*.l 300 IN A 100.79.95.190
|
||||
* 300 IN CNAME zmesh.systems
|
||||
300 IN MX 10 zmesh.systems
|
||||
300 IN MX 5 mail.supported.systems
|
||||
3600 IN TXT "Hey Hacker! Get Meshed!"
|
||||
_acme-challenge.mcbladerf.l 300 IN TXT "IgoOIhuVXLkIkZNJ33oKvBw9tILVCoYxEowmYQEIw78"
|
||||
_acme-challenge.mcbladerf.l 300 IN TXT "pufwOaC6xoP2aKScyhAiaip5_cpTIpeYnctX97lkq3Y"
|
||||
_acme-challenge.esp32.l 300 IN TXT "hZphEA1D26kvK-okdIU0Z8eqBTQs5WxoVVIPwt16Z58"
|
||||
_acme-challenge.astrolock.l 300 IN TXT "bxJ5IOYNkE8WCoyA0fLm7bMBQaOOU4NzZZg0WT0dy2g"
|
||||
Loading…
x
Reference in New Issue
Block a user