mirror of
git://git.code.sf.net/p/dhcpd-pools/code
synced 2025-12-16 15:57:00 +00:00
docs: thanks to Cheer Xiao this software has IPv6 support
The prof. Xing Li in Tsinghua University, with LI Zimu, asked Cheer to make the dhcpd-pools more usable for them which I, as a project maintainer, could not be more pleased. Whils making the IPv6 analysis to work Cheer also fixed various other issues. Kudos to him, and big thanks to everyone. CC: Xing Li <xing@cernet.edu.cn> CC: LI Zimu <lzm@cernet.edu.cn> CC: Cheer Xiao <xiaqqaix@gmail.com> Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
parent
632e97834b
commit
34f73dbae1
3 changed files with 8 additions and 7 deletions
4
TODO
4
TODO
|
|
@ -8,7 +8,6 @@ Reported-by: Huangyu: I found dhcpd-pools didn't consider if the
|
||||||
|
|
||||||
### Feature requests
|
### Feature requests
|
||||||
|
|
||||||
o IPv6 support (Frank)
|
|
||||||
o Assigned IPs count (Nelson)
|
o Assigned IPs count (Nelson)
|
||||||
o Subnet counting class (Henryk)
|
o Subnet counting class (Henryk)
|
||||||
o When time stamps are part of lease situation evaluation (see
|
o When time stamps are part of lease situation evaluation (see
|
||||||
|
|
@ -33,8 +32,7 @@ o Add lease time histogram support.
|
||||||
dhcpd-pool servers.
|
dhcpd-pool servers.
|
||||||
9 Nice http view interface on super server, much can be copied
|
9 Nice http view interface on super server, much can be copied
|
||||||
from http://piwik.org/
|
from http://piwik.org/
|
||||||
10 IPv6 support.
|
10 And some other things perhaps...
|
||||||
11 And some other things perhaps...
|
|
||||||
|
|
||||||
When items 1-7 are done v3 can be released. To support rewrite
|
When items 1-7 are done v3 can be released. To support rewrite
|
||||||
there should be a design document with nice blue print, which is
|
there should be a design document with nice blue print, which is
|
||||||
|
|
|
||||||
|
|
@ -181,10 +181,12 @@ ISC dhcpd configuration file.
|
||||||
.TP
|
.TP
|
||||||
@DHCPDLEASE_FILE@
|
@DHCPDLEASE_FILE@
|
||||||
ISC dhcpd lease file.
|
ISC dhcpd lease file.
|
||||||
.SH AUTHOR
|
.SH AUTHORS
|
||||||
Written by Sami Kerola.
|
Original design by Sami Kerola.
|
||||||
.br
|
.br
|
||||||
XML support by Dominic Germain, Sogetel inc.
|
XML support by Dominic Germain, Sogetel inc.
|
||||||
|
.br
|
||||||
|
IPv6 support by Cheer Xiao.
|
||||||
.PP
|
.PP
|
||||||
The software has FreeBSD License.
|
The software has FreeBSD License.
|
||||||
.SH "REPORTING BUGS"
|
.SH "REPORTING BUGS"
|
||||||
|
|
|
||||||
|
|
@ -251,8 +251,9 @@ void clean_up(void)
|
||||||
void __attribute__ ((__noreturn__)) print_version(void)
|
void __attribute__ ((__noreturn__)) print_version(void)
|
||||||
{
|
{
|
||||||
fprintf(stdout, "%s\n"
|
fprintf(stdout, "%s\n"
|
||||||
"Written by Sami Kerola.\n"
|
"Original design by Sami Kerola.\n"
|
||||||
"XML support by Dominic Germain, Sogetel inc.\n\n"
|
"XML support by Dominic Germain, Sogetel inc.\n"
|
||||||
|
"IPv6 support by Cheer Xiao.\n\n"
|
||||||
"The software has FreeBSD License.\n", PACKAGE_STRING);
|
"The software has FreeBSD License.\n", PACKAGE_STRING);
|
||||||
exit(EXIT_SUCCESS);
|
exit(EXIT_SUCCESS);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue