LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   DHCP assign address start from the last ip in the range (https://www.linuxquestions.org/questions/linux-newbie-8/dhcp-assign-address-start-from-the-last-ip-in-the-range-906157/)

procfs 10-03-2011 04:28 AM

DHCP assign address start from the last ip in the range
 
Hi, just a question!

I am using DHCP 3.05 and the every thing works ok other than the assignment is in descending order. Is this the behavior or that I am doing something wrong?

Best Regards

netnix99 10-03-2011 01:38 PM

procfs,

can you post your DHCP config here?

procfs 10-12-2011 06:12 AM

Hi my configuration file is as below

deny duplicates;
ignore declines;
one-lease-per-client false;
log-facility local7;
authoritative;
allow booting;
allow bootp;



ddns-update-style interim;
ignore client-updates;

subnet 10.30.0.0 netmask 255.255.0.0 {

# --- default gateway
option routers 172.16.0.1;
option subnet-mask 255.255.0.0;

#option nis-domain "my.maxnet.iq";
#option domain-name "mos.com";
option domain-name-servers 85.90.229.188,8.8.8.8;
option time-offset -18000; # Eastern Standard Time
# option ntp-servers 192.168.1.1;
# option netbios-name-servers 192.168.1.1;
# --- Selects point-to-point node (default is hybrid). Don't change this unless
# -- you understand Netbios very well
# option netbios-node-type 2;

range dynamic-bootp 10.30.0.10 10.30.0.110;
default-lease-time 21600;
max-lease-time 43200;

# we want the nameserver to appear at a fixed address
#host ns {
#next-server marvin.redhat.com;
#hardware ethernet 12:34:56:78:AB:CD;
#fixed-address 207.175.42.254;
#}

}


Thanks and Best REgards


All times are GMT -5. The time now is 10:10 AM.