Book Image

Managing Mission - Critical Domains and DNS

By : Mark E.Jeftovic
Book Image

Managing Mission - Critical Domains and DNS

By: Mark E.Jeftovic

Overview of this book

Managing your organization's naming architecture and mitigating risks within complex naming environments is very important. This book will go beyond looking at “how to run a name server” or “how to DNSSEC sign a domain”, Managing Mission Critical Domains & DNS looks across the entire spectrum of naming; from external factors that exert influence on your domains to all the internal factors to consider when operating your DNS. The readers are taken on a comprehensive guided tour through the world of naming: from understanding the role of registrars and how they interact with registries, to what exactly is it that ICANN does anyway? Once the prerequisite knowledge of the domain name ecosystem is acquired, the readers are taken through all aspects of DNS operations. Whether your organization operates its own nameservers or utilizes an outsourced vendor, or both, we examine the complex web of interlocking factors that must be taken into account but are too frequently overlooked. By the end of this book, our readers will have an end to end to understanding of all the aspects covered in DNS name servers.
Table of Contents (17 chapters)
7
Types and Uses of Common Resource Records

URL Forwards and Redirects

A URL forwarder is simply a hostname configured to redirect to an actual URL, as opposed to being aliased to some other hostname (CNAME) or set to resolve to an IP address.

An example would be:

example.com → http://www.example.net/something/goes.html

There is no DNS-protocol-specific method to redirect a URL in this way. It's accomplished by standing up a web server somewhere that does nothing but redirect incoming requests, and then pointing your DNS records at it using a host record or a CNAME. The redirect server then needs to maintain a database with the mappings, including the full request URI of the remote destination. It will then need to key on the incoming "Host" header of client browser requests and redirect those requests to the remote destination.

You may hear forwarder or redirect versus stealth or cloaked. The difference...