When you change DNS, it can take time for caches to update. The fastest way to confirm the current state is to query DNS directly.
This guide shows simple commands to check A, CNAME, MX, and TXT records.
dig NS example.com +short
nslookup -type=ns example.com
If the NS are not ns1.garmtech.com/ns2.garmtech.com/ns3.garmtech.com, you must edit DNS at the provider that is listed.
dig A example.com +short
dig CNAME www.example.com +short
nslookup example.com
nslookup -type=cname www.example.com
dig MX example.com +short
nslookup -type=mx example.com
dig TXT example.com +short
dig TXT _dmarc.example.com +short
nslookup -type=txt example.com
nslookup -type=txt _dmarc.example.com
If you want to bypass random resolvers and query a specific nameserver directly:
dig @ns1.garmtech.com A example.com
dig @ns1.garmtech.com TXT example.com
If you use external DNS, replace the nameserver with the one returned by the NS query.