• cobbler setting dnsmasq


    Currently cobbler can help generate a ISC DHCP configuration (package name: dhcpd) it can also alternatively use dnsmasq. DNSmasq is a bit confusing because it does DHCP and DNS at the same time. You can choose to use the DHCP management features with ISC and not use Cobbler to manage DNS at all. That's ok ... using both in conjunction, however, is fairly powerful.

    /etc/cobbler/modules.conf needs to look like this to select that we want to use BIND for DNS and ISC dhcpd for DHCP.

    [dns]
    module = manage_bind
    
    [dhcp]
    module = manage_isc
    
    
    

    OR, to use dnsmasq:

    [dns]
    module = manage_dnsmasq
    
    [dhcp]
    module = manage_dnsmasq
    
    

    Don't mix and match the two.

    This doesn't turn them on, this just selects your management module choices. To enable DHCP management, go into /etc/cobbler/settings and set the following:

    manage_dhcp: 1

    转自: https://fedorahosted.org/cobbler/wiki/ManageDhcp

    http://cobbler.github.io/manuals/2.6.0/3/4/1_-_Managing_DHCP.html

  • 相关阅读:
    交换变量方法总结
    Java Object Model(一)
    Git命令文本手册
    移动端浏览器touch事件的研究总结
    jQuery中的end()方法
    AngularJs开发——控制器间的通信
    网站收藏
    HTTP Content-type 对照表
    ViewData和ViewBag的那些事
    jQuery选择器
  • 原文地址:https://www.cnblogs.com/pinganzi/p/5265004.html
Copyright © 2020-2023  润新知