2017-03-21 11:47:18 +08:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
---
|
|
|
|
|
|
|
|
# Examples
|
|
|
|
|
|
|
|
* TOC
|
|
|
|
{:toc}
|
|
|
|
|
2017-03-23 03:20:19 +08:00
|
|
|
## Typical DNS Records
|
|
|
|
|
|
|
|
{% highlight javascript %}
|
|
|
|
|
|
|
|
D('example.com', REG, DnsProvider('GCLOUD'),
|
|
|
|
A('@', '1.2.3.4'), // The naked or 'apex' domain.
|
|
|
|
A('server1', '2.3.4.5'),
|
|
|
|
AAAA('wide', '2001:0db8:85a3:0000:0000:8a2e:0370:7334'),
|
|
|
|
CNAME('www', 'server1'),
|
|
|
|
CNAME('another', 'service.mycloud.com.'),
|
2017-03-23 05:31:00 +08:00
|
|
|
MX('mail', 10, 'mailserver'),
|
2017-03-23 03:20:19 +08:00
|
|
|
MX('mail', 20, 'mailqueue'),
|
|
|
|
TXT('the', 'message'),
|
|
|
|
NS('delegated', 'ns1.dnsexample.com.'),
|
2017-03-23 05:31:00 +08:00
|
|
|
NS('delegated', 'ns2.dnsexample.com.')
|
2017-03-23 03:20:19 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
{% endhighlight %}
|
|
|
|
|
|
|
|
## Set a specific TTL for a record
|
|
|
|
|
|
|
|
{% highlight javascript %}
|
|
|
|
A('one', '1.2.3.4', TTL(400)),
|
|
|
|
{% endhighlight %}
|
|
|
|
|
2017-03-21 11:47:18 +08:00
|
|
|
## Variables for common IP Addresses
|
|
|
|
|
|
|
|
{% highlight javascript %}
|
|
|
|
|
2017-03-28 05:33:27 +08:00
|
|
|
var addrA = IP('1.2.3.4')
|
2017-03-21 11:47:18 +08:00
|
|
|
|
2017-03-28 05:33:27 +08:00
|
|
|
D('example.com', REG, DnsProvider('R53'),
|
|
|
|
A('@', addrA), //1.2.3.4
|
|
|
|
A('www', addrA + 1), //1.2.3.5
|
2017-03-21 11:47:18 +08:00
|
|
|
)
|
|
|
|
{% endhighlight %}
|
|
|
|
|
|
|
|
## Variables to swap active Data Center
|
|
|
|
|
|
|
|
{% highlight javascript %}
|
|
|
|
|
2017-03-28 05:33:27 +08:00
|
|
|
var dcA = IP('5.5.5.5');
|
|
|
|
var dcB = IP('6.6.6.6');
|
2017-03-21 11:47:18 +08:00
|
|
|
|
|
|
|
// switch to dcB to failover
|
|
|
|
var activeDC = dcA;
|
|
|
|
|
2017-03-28 05:33:27 +08:00
|
|
|
D('example.com', REG, DnsProvider('R53'),
|
|
|
|
A('@', activeDC + 5), // fixed address based on activeDC
|
2017-03-21 11:47:18 +08:00
|
|
|
)
|
|
|
|
{% endhighlight %}
|
|
|
|
|
|
|
|
## Macro to group repeated records
|
|
|
|
|
|
|
|
{% highlight javascript %}
|
|
|
|
|
2017-03-28 05:41:28 +08:00
|
|
|
var GOOGLE_APPS_RECORDS = [
|
2017-03-21 11:47:18 +08:00
|
|
|
MX('@', 1, 'aspmx.l.google.com.'),
|
|
|
|
MX('@', 5, 'alt1.aspmx.l.google.com.'),
|
|
|
|
MX('@', 5, 'alt2.aspmx.l.google.com.'),
|
|
|
|
MX('@', 10, 'alt3.aspmx.l.google.com.'),
|
|
|
|
MX('@', 10, 'alt4.aspmx.l.google.com.'),
|
2017-03-28 05:37:41 +08:00
|
|
|
CNAME('calendar', 'ghs.googlehosted.com.'),
|
|
|
|
CNAME('drive', 'ghs.googlehosted.com.'),
|
|
|
|
CNAME('mail', 'ghs.googlehosted.com.'),
|
|
|
|
CNAME('groups', 'ghs.googlehosted.com.'),
|
|
|
|
CNAME('sites', 'ghs.googlehosted.com.'),
|
2017-03-21 11:47:18 +08:00
|
|
|
]
|
|
|
|
|
2017-03-28 05:33:27 +08:00
|
|
|
D('example.com', REG, DnsProvider('R53'),
|
2017-03-28 05:41:28 +08:00
|
|
|
GOOGLE_APPS_RECORDS,
|
2017-03-28 05:33:27 +08:00
|
|
|
A('@', '1.2.3.4')
|
2017-03-21 11:47:18 +08:00
|
|
|
)
|
|
|
|
{% endhighlight %}
|
|
|
|
|
2017-03-28 05:41:28 +08:00
|
|
|
## Add comments along complex SPF records
|
|
|
|
|
|
|
|
You can't normally put comments in the middle of a string,
|
|
|
|
but with a little bit of creativity you can document
|
|
|
|
each element of an SPF record this way.
|
|
|
|
|
|
|
|
{% highlight javascript %}
|
|
|
|
|
|
|
|
var SPF_RECORDS = TXT('@', [
|
|
|
|
'v=spf1',
|
|
|
|
'ip4:1.2.3.0/24', // NY mail server
|
|
|
|
'ip4:4.3.2.0/24', // CO mail server
|
|
|
|
'include:_spf.google.com', // Google Apps
|
|
|
|
'include:mailgun.org', // Mailgun (requested by Ticket#12345)
|
|
|
|
'include:servers.mcsv.net', // MailChimp (requested by Ticket#54321)
|
|
|
|
'include:sendgrid.net', // SendGrid (requested by Ticket#23456)
|
|
|
|
'include:spf.mtasv.net', // Desk.com (needed by IT team)
|
|
|
|
'~all'
|
|
|
|
].join(' '));
|
|
|
|
|
|
|
|
{% endhighlight %}
|
|
|
|
|
2017-03-21 11:47:18 +08:00
|
|
|
## Dual DNS Providers
|
|
|
|
|
|
|
|
{% highlight javascript %}
|
|
|
|
|
2017-03-28 05:33:27 +08:00
|
|
|
D('example.com', REG, DnsProvider('R53'), DnsProvider('GCLOUD'),
|
|
|
|
A('@', '1.2.3.4')
|
2017-03-21 11:47:18 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// above zone uses 8 NS records total (4 from each provider dynamically gathered)
|
|
|
|
// below zone will only take 2 from each for a total of 4. May be better for performance reasons.
|
|
|
|
|
2017-03-28 05:33:27 +08:00
|
|
|
D('example2.com', REG, DnsProvider('R53',2), DnsProvider('GCLOUD',2),
|
|
|
|
A('@', '1.2.3.4')
|
2017-03-21 11:47:18 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// or set a Provider as a non-authoritative backup (don't register its nameservers)
|
2017-03-28 05:33:27 +08:00
|
|
|
D('example3.com', REG, DnsProvider('R53'), DnsProvider('GCLOUD',0),
|
|
|
|
A('@', '1.2.3.4')
|
2017-03-21 11:47:18 +08:00
|
|
|
)
|
|
|
|
|
2017-03-23 03:20:19 +08:00
|
|
|
{% endhighlight %}
|