GithubHelp home page GithubHelp logo

chef-dnsmasq's Introduction

dnsmasq cookbook


Requirements

Platform:

Tested on:

Ubuntu 12.04

Usage

Attributes

General

  • default['dnsmasq']['domain'] - The default domain used when resolving domains names, as well as for DHCP clients.

DHCP

  • default['dnsmasq']['dhcp']['dhcp_range'] - The DHCP range to be used by the dhcp server. This includes the TTL value at the end of the range in a standard dnsmasq config. For example:
    # Assigns clients IPs from 192.168.0.50 - 192.168.0.150 with a 12
    # hour lease expiration.
    192.168.0.50,192.168.0.150,12h
  • default['dnsmasq']['dhcp']['dhcp_hosts'] - An array of static hosts to be assign specific IP address via DHCP. For example:
    # This will assign the IP 192.168.0.20 to the network adapter wit
    # the MAC address `11:22:33:44:55:66`.
    [
      "11:22:33:44:55:66,192.168.0.60"
    ]
  • default['dnsmasq']['dhcp']['default_route'] - This is the default route to use for all DHCP clients. This defaults to the IP where the DHCP server is running.

DNS

  • default['dnsmasq']['dns']['domain-needed'] - Never forward plain names (without a dot or domain part)

  • default['dnsmasq']['dns']['bogus-priv'] - Never forward addresses in the non-routed address spaces.

  • default['dnsmasq']['dns']['expand-hosts'] - Set this if you want to have a domain automatically added to simple names in a hosts-file.

  • default['dnsmasq']['dns']['nameservers'] - An array of the IP addresses to forward DNS requests to. For instance, for Google public DNS use:

    [
      '8.8.8.8',
      '8.8.4.4'
    ]
  • default['dnsmasq']['dns']['hosts'] - This should be an array of hashes with the domain as the key and the ip as the value. For example:
    {
      "test1.com" => "10.0.0.1",
      "test2.com" => "10.0.0.2"
    }

Recipes

default

Installs dnsmasq package and defines service.

dhcp

Configures dnsmasq as a DHCP server.

dns

Configures dnsmasq as a DNS cache server.

Author

Author:: Matt Outten ([email protected])

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.