Skip to content
Snippets Groups Projects
  • John Crispin's avatar
    b5bfb353
    dnsmasq: add host-specific lease time option for static hosts · b5bfb353
    John Crispin authored
    
    Enable setting a host-specific lease time for static hosts.
    The new option is called "leasetime" and the format is similar
    as for the default lease time: e.g. 12h, 3d, infinite
    
    Default lease time is used for all hosts for which there is
    no host-specific definition.
    
    The option is added to /etc/config/dhcp for the selected hosts:
      config host
            option name 'Nexus'
            option mac 'd8:50:66:55:59:7c'
            option ip '192.168.1.245'
            option leasetime '2h'
    
    It gets appended to /var/etc/dnsmasq.conf like this:
      dhcp-host=d8:50:66:55:59:7c,192.168.1.245,Nexus,2h
    
    Signed-off-by: default avatarHannu Nyman <hannu.nyman@iki.fi>
    
    SVN-Revision: 48801
    b5bfb353
    History
    dnsmasq: add host-specific lease time option for static hosts
    John Crispin authored
    
    Enable setting a host-specific lease time for static hosts.
    The new option is called "leasetime" and the format is similar
    as for the default lease time: e.g. 12h, 3d, infinite
    
    Default lease time is used for all hosts for which there is
    no host-specific definition.
    
    The option is added to /etc/config/dhcp for the selected hosts:
      config host
            option name 'Nexus'
            option mac 'd8:50:66:55:59:7c'
            option ip '192.168.1.245'
            option leasetime '2h'
    
    It gets appended to /var/etc/dnsmasq.conf like this:
      dhcp-host=d8:50:66:55:59:7c,192.168.1.245,Nexus,2h
    
    Signed-off-by: default avatarHannu Nyman <hannu.nyman@iki.fi>
    
    SVN-Revision: 48801