WIDE-DHCP

2013-08-13 Thread s m
hello guys,


does any body use WIDE-DHCP? i installed it on my freebsd 8.2 but don't
know how to configure it. i searched a lot but can not find any useful
documentation.

please let me know if some body configure it or have some application about.
thanks in advance
SAM
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: WIDE-DHCP

2013-08-13 Thread Olivier Nicole
Sam,

It seems that the distribution includes a directory called db_sample
with some tutorials/examples.

But it also seems that the last release of wide-dhcp is 16 years old...

Olivier

On Tue, Aug 13, 2013 at 3:42 PM, s m sam.gh1...@gmail.com wrote:
 hello guys,


 does any body use WIDE-DHCP? i installed it on my freebsd 8.2 but don't
 know how to configure it. i searched a lot but can not find any useful
 documentation.

 please let me know if some body configure it or have some application about.
 thanks in advance
 SAM
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: WIDE-DHCP

2013-08-13 Thread sthaug
 It seems that the distribution includes a directory called db_sample
 with some tutorials/examples.
 
 But it also seems that the last release of wide-dhcp is 16 years old...

And I also strongly doubt that he's going to have any better luck
with his /8 net.

Steinar Haug, Nethelp consulting, sth...@nethelp.no
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: WIDE-DHCP

2013-08-13 Thread s m
yes, unfortunately it's not well enough for me:((


On Tue, Aug 13, 2013 at 1:32 PM, sth...@nethelp.no wrote:

  It seems that the distribution includes a directory called db_sample
  with some tutorials/examples.
 
  But it also seems that the last release of wide-dhcp is 16 years old...

 And I also strongly doubt that he's going to have any better luck
 with his /8 net.

 Steinar Haug, Nethelp consulting, sth...@nethelp.no

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Who to report bugs in wide-dhcp? (was Re: wide-dhcps dumps corefreeing modified pointer)

2003-08-14 Thread qhwt
Hello.

On Mon, Aug 04, 2003 at 11:33:19AM +0900, [EMAIL PROTECTED] wrote:
 wide-dhcps dumps core upon boot if the bind file exists and non-empty
 (actually I haven't tested if it dumps core even when the file exists
 AND is empty, but who cares... :)
 The bind file sometimes contains garbage (malloc error message)
 after the core dump, but even if I delete the garbage and try to start dhcps
 result in the same core dump.
 The core dump occurs in function read_subnet() defined in server/database.c,
 trying to free() a line buffer via a pointer already modified by prs_inaddr()
 called from get_ip().
 The following patch seem to remedie the core dump.
 
 (I believe MIHIRA-san is the original author of this software, right?)
 Regards.
 
 --- database.c.orig   Fri Jan  1 22:35:33 1999
 +++ database.cSun Aug  3 19:55:32 2003
 @@ -560,15 +560,15 @@
char **cp;
struct in_addr *subnet;
  {
 -  char *tmpstr;
 +  char *tmpstr, *line;
struct in_addr *tmpaddr;
  
 -  if ((tmpstr = get_string(cp)) == NULL) {
 +  if ((line = get_string(cp)) == NULL) {
  errno = 0;
  syslog(LOG_WARNING, Can't get strings);
  return(-1);
}
 -
 +  tmpstr = line;
if ((tmpaddr = get_ip(tmpstr)) == NULL) {
  errno = 0;
  syslog(LOG_WARNING, get_ip() error in read_subnet());
 @@ -576,7 +576,7 @@
}
  
*subnet = *tmpaddr;
 -  free(tmpstr);
 +  free(line);
free(tmpaddr);
  
return(0);
 
 

Does anyone know who to report bugs in wide-dhcp? I've found a bug in
wide-dhcp ports the other day, and reported to [EMAIL PROTECTED] because
the Makefile says it's the maintainer of the port. However, I've received
no responses from anyone since then. Shortly after that, I realized that
the bug itself is in the original code rather than FreeBSD patches, so
I must have sent it to the original author, and that MIHIRA-san is not,
because I had no responses from him, even though I Cc:'d on him.
Then I found in one of installed documents that bug report should be
sent to [EMAIL PROTECTED] . I did, and the mail server at wide.ad.jp
said there's no such account there.

Or, should I send-pr even if I'm sure the bug is in the orignal code
rather than in the FreeBSD ports? But I don't feel like using it because
I don't know(and not interested in) how to configure it use my mailer
instead of sendmail(1),

Regards.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]