dns/domains/050-elburb.dn42.js
Simon Marsh 693079113d
All checks were successful
continuous-integration/drone/push Build is passing
major refactor
2025-01-16 09:34:11 +00:00

36 lines
722 B
JavaScript

//////////////////////////////////////////////////////////////////////////
// fake elburb.dn42 domain
domain='elburb.dn42';
D(
domain,
REG_NONE,
DnsProvider(PDNS),
NAMESERVER_TTL(62400),
NAMESERVER('ns1.burble.dn42.'),
DefaultTTL(3600)
)
//////////////////////////////////////////////////////////////////////////
// special records
D_EXTEND(
domain,
TXT('canary', "It's Alive!", TTL(1))
);
//////////////////////////////////////////////////////////////////////////
// services
host('@', 'fd42:4242:2601:ac80::1', '172.20.129.3')
D_EXTEND(
domain,
CNAME('www', 'elburb.dn42.')
);
//////////////////////////////////////////////////////////////////////////
// end of file