Path: csiph.com!newsfeed.xs4all.nl!newsfeed8.news.xs4all.nl!feeder.usenetexpress.com!tr2.eu1.usenetexpress.com!news.uzoreto.com!news.etla.org!nntp-feed.chiark.greenend.org.uk!ewrotcd!usenet-its.stanford.edu!usenet.stanford.edu!not-for-mail From: Anand Buddhdev Newsgroups: comp.protocols.dns.bind Subject: Re: Dumb Question is an A or AAAA record required? Date: Thu, 9 Jul 2020 14:43:04 +0200 Lines: 33 Approved: bind-users@lists.isc.org Message-ID: References: <7ab19939-3025-c874-e5a4-97721eb435fc@ripe.net> NNTP-Posting-Host: lists.isc.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: usenet.stanford.edu 1594298592 16141 149.20.1.60 (9 Jul 2020 12:43:12 GMT) X-Complaints-To: action@cs.stanford.edu To: "@lbutlr" , bind-users Return-Path: X-Original-To: bind-users@lists.isc.org Delivered-To: bind-users@lists.isc.org User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 In-Reply-To: Content-Language: en-GB X-ACL-Warn: Delaying message X-RIPE-Signature: 55cb38632435e2bda366ab4462548c1f071f1b3b69b08d3980a45d42cd645a74 X-Spam-Status: No, score=0.8 required=5.0 tests=KAM_MXURI,RCVD_IN_DNSWL_LOW, SPF_HELO_NONE,SPF_PASS autolearn=disabled version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on mx.pao1.isc.org X-BeenThere: bind-users@lists.isc.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: BIND Users Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Mailman-Original-Message-ID: <7ab19939-3025-c874-e5a4-97721eb435fc@ripe.net> X-Mailman-Original-References: Xref: csiph.com comp.protocols.dns.bind:15944 On 09/07/2020 14:21, @lbutlr wrote: > Given a domain that is hosted and used for email and web, is an A > record for that domain actually required? It's not *required*. But see below. > That is, if bob.tld is hosted by example.com can you simply have > > NS ns1.example.com > NS ns2.example.com > MX mx.example.com > > www CNAME www.example.com > > Without specifying > > A 11.22.33.444 These days, many folk try to reach websites by typing just the bare domain name without the "www" prefix. If a user types "bob.tld" into a browser, the browser will issue an address lookup for "bob.tld", causing the resolver to ask for A and AAAA records for "bob.tld". If you don't have an A record at the zone apex, the browser will not get back any address and display an error message for the user. An alert user might try "www.bob.tld" but most users are likely to just give up. So while it's not *required* to have an address record at the apex, it's good practice to have one. Anand