2014-03-11 16:10:50 -04:00
|
|
|
priority -50
|
|
|
|
|
2012-08-16 23:41:25 -04:00
|
|
|
global !p
|
|
|
|
def newsoa():
|
2014-03-11 16:10:50 -04:00
|
|
|
import datetime
|
|
|
|
now = datetime.datetime.now()
|
|
|
|
# return standard SOA formatted serial for today
|
|
|
|
return now.strftime("%Y%m%d00")
|
2012-08-16 23:41:25 -04:00
|
|
|
endglobal
|
|
|
|
|
|
|
|
snippet zone "Bootstrap a new Bind zonefile" b
|
|
|
|
$TTL 86400
|
2014-03-11 16:10:50 -04:00
|
|
|
@ IN SOA ${1:example.net}. ${2:hostmaster.$1}.(
|
|
|
|
`!p snip.rv = newsoa()`; serial
|
|
|
|
21600; refresh every 6 hours
|
|
|
|
3600; retry after one hour
|
|
|
|
604800; expire after a week
|
|
|
|
86400 ); minimum TTL of 1 day
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2014-03-11 16:10:50 -04:00
|
|
|
IN NS ns01.$1.
|
|
|
|
IN MX 10 mail.$1.
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2014-03-11 16:10:50 -04:00
|
|
|
ns01.$1 IN A
|
|
|
|
mail.$1 IN A
|
2012-08-16 23:41:25 -04:00
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet A "Insert A Record" b
|
2014-03-11 16:10:50 -04:00
|
|
|
${1:hostname} IN A ${2:ip}
|
2012-08-16 23:41:25 -04:00
|
|
|
endsnippet
|