Re: NetReg: DHCP Start up takes over a minute

New Message Reply Date view Thread view Subject view Author view Attachment view

From: Todd K. Watson (tkw@southwestern.edu)
Date: Wed Jun 04 2003 - 13:43:29 CDT


It should NOT take anywhere near a minute on a machine that fast. The
original NetReg server (still running on the same hardware) is a Pentium
Pro 200Mhz system with 32Mb of RAM!!!! And it loads in 3 secs.

It sounds to me like a timeout problem. There may be a DNS timeout of
some kind. You may want to put a sniffer in front of the server to see
if it's trying to communicate with something that isn't there or
listening.

Todd

-- 
        Todd K. Watson
        Senior System & Network Administrator
        Southwestern University, Georgetown, TX
        tkw@southwestern.edu || TEL:512.863.1508 || FAX:512.863.1605

On Wed, 2003-06-04 at 11:57, Lavengood, Michael wrote: > Well I finally was able to get there routers and switches to pull the > right and wrong IP's but now it takes over a minute for DHCPD to > restart. When it is in the process of doing this it take most of the > PC's resources. This is causing a problem since cron checks every > minute for a change if dhcp is still in the process of restarting it > starts all over and misses some of the registrations and deletions. > Has anyone else had this problem? The machine it is on is 1.5 Ghz > with 256 Mb of RAM. I don't know if there is something wrong in my > dhcpd.conf file that would be slowing it down so I have included it as > well. > > Thanks for the help, > > Mike > > DHCPD.CONF > ------------------------------------------------------- > > > max-lease-time 120; > default-lease-time 120; > allow bootp; > allow booting; > option domain-name "franklincollege.edu"; > server-identifier netreg.franklincollege.edu; > ddns-update-style interim; > ddns-updates off; > omapi-port 7911; > > ## NetReg > > shared-network "SN_1099" { > subnet 10.99.0.0 netmask 255.255.0.0 { > option routers 10.99.1.1; > authoritative; > pool { > option domain-name-servers 10.99.1.2; > one-lease-per-client true; > max-lease-time 120; > default-lease-time 120; > range 10.99.1.3 10.99.1.5; > deny unknown clients; > } > } > } > > ## Hoover > > shared-network "SN_1010" { > subnet 11.10.0.0 netmask 255.255.0.0 { > option routers 11.10.1.1; > authoritative; > pool { > option domain-name-servers 10.99.1.2; > one-lease-per-client true; > max-lease-time 120; > default-lease-time 120; > range 11.10.1.2 11.10.1.254; > allow unknown clients; > } > } > > subnet 10.10.0.0 netmask 255.255.0.0 { > option routers 10.10.1.1; > authoritative; > pool { > option domain-name-servers 192.207.174.2; > option ntp-servers 10.1.1.2; > one-lease-per-client true; > max-lease-time 691200; > default-lease-time 691200; > range 10.10.1.100 10.10.254.254; > deny unknown clients; > } > } > } > > ## Cline > > shared-network "SN_1012" { > subnet 11.12.0.0 netmask 255.255.0.0 { > option routers 11.12.1.1; > authoritative; > pool { > option domain-name-servers 10.99.1.2; > one-lease-per-client true; > max-lease-time 120; > default-lease-time 120; > range 11.12.1.2 11.12.1.254; > allow unknown clients; > } > } > > subnet 10.12.0.0 netmask 255.255.0.0 { > # Known clients get this pool. > option routers 10.12.1.1; > authoritative; > pool { > option domain-name-servers 192.207.174.2; > option ntp-servers 10.1.1.2; > one-lease-per-client true; > max-lease-time 691200; > default-lease-time 691200; > range 10.12.1.100 10.12.254.254; > deny unknown clients; > } > } > } > > ## Dietz Center > > shared-network "SN_1021" { > subnet 11.21.0.0 netmask 255.255.0.0 { > option routers 11.21.1.1; > authoritative; > pool { > option domain-name-servers 10.99.1.2; > one-lease-per-client true; > max-lease-time 120; > default-lease-time 120; > range 11.21.1.2 11.21.1.254; > allow unknown clients; > } > } > > subnet 10.21.0.0 netmask 255.255.0.0 { > # Known clients get this pool. > option routers 10.21.1.1; > authoritative; > pool { > option domain-name-servers 192.207.174.2; > option ntp-servers 10.1.1.2; > one-lease-per-client true; > max-lease-time 691200; > default-lease-time 691200; > range 10.21.1.100 10.21.254.254; > deny unknown clients; > } > } > } > > ## Elsey > > shared-network "SN_1023" { > subnet 11.23.0.0 netmask 255.255.0.0 { > option routers 11.23.1.1; > authoritative; > pool { > option domain-name-servers 10.99.1.2; > one-lease-per-client true; > max-lease-time 120; > default-lease-time 120; > range 11.23.1.2 11.23.1.254; > allow unknown clients; > } > } > > subnet 10.23.0.0 netmask 255.255.0.0 { > # Known clients get this pool. > option routers 10.23.1.1; > authoritative; > pool { > option domain-name-servers 192.207.174.2; > option ntp-servers 10.1.1.2; > one-lease-per-client true; > max-lease-time 691200; > default-lease-time 691200; > range 10.23.1.100 10.23.254.254; > deny unknown clients; > } > } > } > > ## Johnson Dietz A & B > > shared-network "SN_1024" { > subnet 11.24.0.0 netmask 255.255.0.0 { > option routers 11.24.1.1; > authoritative; > pool { > option domain-name-servers 10.99.1.2; > one-lease-per-client true; > max-lease-time 120; > default-lease-time 120; > range 11.24.1.2 11.24.1.254; > allow unknown clients; > } > } > > subnet 10.24.0.0 netmask 255.255.0.0 { > # Known clients get this pool. > option routers 10.24.1.1; > authoritative; > pool { > option domain-name-servers 192.207.174.2; > option ntp-servers 10.1.1.2; > one-lease-per-client true; > max-lease-time 691200; > default-lease-time 691200; > range 10.24.1.100 10.24.254.254; > deny unknown clients; > } > } > } > > ## Johnson Dietz C, D, E & F > > shared-network "SN_1025" { > subnet 11.25.0.0 netmask 255.255.0.0 { > option routers 11.25.1.1; > authoritative; > pool { > option domain-name-servers 10.99.1.2; > one-lease-per-client true; > max-lease-time 120; > default-lease-time 120; > range 11.25.1.2 11.25.1.254; > allow unknown clients; > } > } > > subnet 10.25.0.0 netmask 255.255.0.0 { > # Known clients get this pool. > option routers 10.25.1.1; > authoritative; > pool { > option domain-name-servers 192.207.174.2; > option ntp-servers 10.1.1.2; > one-lease-per-client true; > max-lease-time 691200; > default-lease-time 691200; > range 10.25.1.100 10.25.254.254; > deny unknown clients; > } > } > } > > ## Johnson Dietz G > > shared-network "SN_1026" { > subnet 11.26.0.0 netmask 255.255.0.0 { > option routers 11.26.1.1; > authoritative; > pool { > option domain-name-servers 10.99.1.2; > one-lease-per-client true; > max-lease-time 120; > default-lease-time 120; > range 11.26.1.2 11.26.1.254; > allow unknown clients; > } > } > > subnet 10.26.0.0 netmask 255.255.0.0 { > # Known clients get this pool. > option routers 10.26.1.1; > authoritative; > pool { > option domain-name-servers 192.207.174.2; > option ntp-servers 10.1.1.2; > one-lease-per-client true; > max-lease-time 691200; > default-lease-time 691200; > range 10.26.1.100 10.26.254.254; > deny unknown clients; > } > } > } > > > > -------------------------------------------------------------- > EOF > > > > > > Michael Lavengood > Network Security Administrator > > Franklin College > Information Technology Services > 501 East Monroe Street > Franklin, Indiana 46131 > > mlavengood@franklincollege.edu > Phone: 317.738.8148 > Fax: 317.738.8146 > >

********************************************************************** To unsubscribe from this list, send an e-mail message to majordomo@southwestern.edu containing a single line with the words: unsubscribe netreg Send requests for assistance to: owner-netreg@southwestern.edu **********************************************************************


New Message Reply Date view Thread view Subject view Author view Attachment view

This archive was generated by hypermail 2.1.4 : Thu Aug 12 2004 - 12:01:39 CDT