From c77053c39c81d35810cb54d5800b9d14ecc4f96d Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Fri, 3 Nov 2017 16:15:04 -0600 Subject: [PATCH] show example of dns tools for self-hosted dns --- samples/hellabit.enom.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 samples/hellabit.enom.sh diff --git a/samples/hellabit.enom.sh b/samples/hellabit.enom.sh new file mode 100644 index 0000000..a362e01 --- /dev/null +++ b/samples/hellabit.enom.sh @@ -0,0 +1,15 @@ +daplie domains:list # shows hellabit.com in my list of domains + +# for hellabit.com to lookup itself (chicken and egg problem), +# we must first set glue records +daplie glue:set -n ns1.hellabit.com -a 138.197.72.1 +daplie glue:set -n ns2.hellabit.com -a 162.243.136.134 + +# now we can set hellabit.com to use nsx.hellabit.com nameservers +daplie ns:set -n hellabit.com --nameservers ns1.hellabit.com,ns2.hellabit.com + +# now we can't use the dns tools because digd.js does not (yet) have oauth3 compatible apis +# these won't work +# daplie devices:set -d sfo2.devices.hellabit.com -a 138.197.216.176 +# daplie devices:attach -d sfo2.devices.hellabit.com -n hellabit.com +# daplie devices:attach -d sfo2.devices.hellabit.com -n www.hellabit.com