Jump to content

Dnsmasq

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Dsimic (talk | contribs) at 20:04, 5 December 2013 (→‎Features: Small edit for possibly improved clarity). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Dnsmasq
Developer(s)Simon Kelley
Initial release2001; 23 years ago (2001)
Stable release2.89 (February 2, 2023; 17 months ago (2023-02-02)) [±][1]
Repository
Written inC
Operating systemUnix-like
TypeDNS server
LicenseGNU General Public License 2 or 3
Websitewww.thekelleys.org.uk/dnsmasq/doc.html

Dnsmasq is a lightweight server designed to provide DNS, DHCP and TFTP services to a small-scale network. It can serve the names of local machines which are not in the global DNS. The DHCP server integrates with the DNS server and allows machines with DHCP-allocated addresses to appear in the DNS with names configured either in each host or in a central configuration file. Dnsmasq supports static and dynamic DHCP leases and BOOTP for network booting of diskless machines.

The developers of Dnsmasq targeted home networks using NAT and connected to the Internet via a modem, cable-modem or ADSL connection, but the system would function well in any small network where low resource-use and ease of configuration are important.

Supported platforms include Linux (with glibc or uClibc), BSD and Mac OS X.

Features

Dnsmasq provides the following features:

  • Simple DNS configuration of machines behind the firewall, independent of the details of an ISP's DNS servers
  • Clients which try to do DNS lookups while a modem-link to the Internet is down will time out immediately.
  • Dnsmasq will serve names from the /etc/hosts file (or an alternate). The names of local machines provided in this way become addressable without having to maintain /etc/hosts on each machine.
  • The integrated DHCP server supports static and dynamic DHCP leases and multiple networks and IP address ranges. It works across BOOTP relays and supports DHCP options including RFC 3397 DNS search lists.
  • Machines configured via DHCP have their names automatically included in the DNS. Each machine can specify details, or the Dnsmasq config file can associate a name with a MAC address centrally.
  • Dnsmasq caches Internet addresses (A records and AAAA records) and address-to-name mappings (PTR records), reducing the load on upstream servers and improving performance (especially on modem connections).
  • Users can configure Dnsmasq to automatically pick up the addresses of its upstream nameservers from PPP or DHCP configuration. It will automatically reload this information if it changes. This facility helps maintainers of Linux firewall-distributions to automate DNS configuration.
  • On IPv6-enabled boxes, Dnsmasq can both talk to upstream servers via IPv6 and offer DNS service via IPv6. On dual-stack (IPv4 and IPv6) boxes it talks both protocols and can even act as IPv6-to-IPv4 or IPv4-to-IPv6 forwarder.
  • Users can configure Dnsmasq to send queries for certain domains to upstream servers handling only those domains. This makes integration with private DNS systems easy.
  • Dnsmasq supports MX records and can return MX records for any or all local machines.
  • Dnsmasq also supports NAPTR records which allows the use of regular-expression-based rewriting of domain names which can then be used as URIs, further domain names to lookups, etc.
  • Some Internet service-providers rewrite the NXDOMAIN (domain does not exist) responses from DNS servers. This forces web browsers to a search page whenever a user attempts to browse to a domain that does not exist. Dnsmasq can filter these "bogus nxdomain" records out, preventing this potentially unwanted behavior.
  • Lua scripting
  • DHCPv6 support.
  • Very basic support for IPv6 router advertisements for DHCPv6 to work.
  • Preboot Execution Environment (PXE) remote boot support using a built-in Trivial File Transfer Protocol (TFTP) server.

See also

References

  1. ^ Kelley, Simon (25 Feb 2021). "Dnsmasq download page".

External links