All checks were successful
continuous-integration/drone/push Build is passing
36 lines
722 B
JavaScript
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
|
|
|