Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

help setting up dhcpd

  • 04-07-2005 10:53am
    #1
    Registered Users, Registered Users 2 Posts: 4,335 ✭✭✭


    I need to setup dhcpd leasing out a range of IP addresses, to a list of MAC addresses. So we will have 10 IP addresses, and a list 20+ of MAC addresses, where only 1 or two of those MAC addressed machines would be on the network at one time. So, the dhcpd will not give out IPs to machines without those MAC addresses, and if it sees a machine with a MAC it knows, it will give it one of the reserved IP range.
    Is this doable? I have look around and tried a few ideas with no luck :(
    Can anyone help by pasting their conf file thats setup like this?

    Thanks!


Comments

  • Registered Users, Registered Users 2 Posts: 4,335 ✭✭✭KeRbDoG


    ok, found out the fix myself, very easy :)
    this is my example dhcpd.conf file
    
    not authoritative;
    deny unknown-clients;
    ddns-update-style interim;
    ignore client-updates;
    subnet 192.168.0.0 netmask 255.255.255.0 {
    range 192.168.0.210 192.168.0.219;
    option routers  192.168.0.254;
            host KeRbDoG {
                    hardware ethernet 00:0D:66:DD:44:44;
            }
            host temp {
                    hardware ethernet 00:20:ee:ff:bb:99;
            }
    }
    
    


Advertisement