Ah, CentOS country here, and yes, a different path:  /etc/dhcpd.conf

Some snippets from our current file:

ddns-update-style none;
default-lease-time 3600;
max-lease-time 7200;
option domain-name "some-domain.com";
deny client-updates;
allow bootp;
authoritative;

# Some Net
subnet 10.10.10.0 netmask 255.255.255.0 {
  option subnet-mask 255.255.255.0;
  option routers 10.10.10.254;
  option broadcast-address 10.10.10.255;
  option domain-name-servers 10.10.10.10, 10.10.10.11;
  option ntp-servers 10.10.10.10, 10.10.10.11;
  range 10.10.10.50 10.10.10.99;

  # Some fine device
  host some-fine-device {
    hardware ethernet 00:30:C4:5F:AB:40;
    fixed-address 10.10.10.8;
  }
}

You may have as many subnets as you wish.  Again, given the CentOS/RHEL
layout, /etc/sysconfig/dhcpd

DHCPDARGS=" eth0 eth1 eth2 eth3 eth4 eth5";

If you have more than one VLAN, as we do, the above file lets DHCPD know
which interfaces will be used.

Curt


On Tue, Feb 26, 2013 at 2:33 PM, Howard White <[email protected]> wrote:

> Okay, so am I not seeing things...
>
> Learning about reserved dynamic addresses by MAC in dhcpd.conf.  Do those
> reserved addresses not appear in the /var/lib/dhcpd3/dhcpd.leases (ubuntu
> server, your dhcpd.leases file may be in a different directory)?
>
> Howard
>
> --
> --
> You received this message because you are subscribed to the Google Groups
> "NLUG" group.
> To post to this group, send email to [email protected]
> To unsubscribe from this group, send email to nlug-talk+unsubscribe@**
> googlegroups.com <nlug-talk%[email protected]>
> For more options, visit this group at http://groups.google.com/**
> group/nlug-talk?hl=en <http://groups.google.com/group/nlug-talk?hl=en>
>
> --- You received this message because you are subscribed to the Google
> Groups "NLUG" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to 
> nlug-talk+unsubscribe@**googlegroups.com<nlug-talk%[email protected]>
> .
> For more options, visit 
> https://groups.google.com/**groups/opt_out<https://groups.google.com/groups/opt_out>
> .
>
>
>

-- 
-- 
You received this message because you are subscribed to the Google Groups 
"NLUG" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/nlug-talk?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"NLUG" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to