Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

Control DNS Server - Manage DNS with dnsmasq | Online Free DevTools by Hexmos

Control DNS server configurations with dnsmasq. Easily manage DHCP leases, DNS forwarding and TFTP services on your network. Free online tool, no registration required.

dnsmasq

Lightweight DNS, DHCP, TFTP, and PXE server. More information: https://manned.org/dnsmasq.

  • Start dnsmasq with default configuration:

dnsmasq

  • Run dnsmasq in the foreground (for debugging):

dnsmasq --no-daemon

  • Specify a custom configuration file:

dnsmasq --conf-file={{path/to/config.conf}}

  • Enable verbose logging:

dnsmasq --log-queries --log-facility=-

  • Set a DHCP range and lease time:

dnsmasq --dhcp-range={{192.168.0.50,192.168.0.150,12h}}

  • Print dnsmasq version:

dnsmasq --version

See Also