Tell me more ×
Unix & Linux Stack Exchange is a question and answer site for users of Linux, FreeBSD and other Un*x-like operating systems.. It's 100% free, no registration required.

Once dhcpd (IPv4) is started, is there any way to check its internal pool status? e.g how many addresses are available?

I checked man(8) dhcpd, there's no signals/files available for that info.

share|improve this question

2 Answers

up vote 4 down vote accepted

On Ubuntu there is the file /var/lib/dhcp/dhcpd.leases, but it is rather verbose and you probably need a little script if you want more high level statistics. I am unaware of existing tools to do this.

There is a separate man page for this file man dhcpd.leases describing the database format.

share|improve this answer
1  
Thanks for the filename , on arch linux I find it was located at /var/state/dhcp/dhcpd.leases – warl0ck May 27 '12 at 7:57

Checking status of leases is easiest with analysis tool.

http://dhcpd-pools.sourceforge.net/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.