Hi Ralph: I'm writing to see if you have any updates to your dhcpv6 code. On my x86 system, dhclient got a sigsegv on startup, which I avoided with the following patch. Thanks for any updates you can give. -Dale --- dhcpv6/common/options.c.old Fri Sep 28 05:22:06 2001 +++ dhcpv6/common/options.c Thu Jun 6 16:32:45 2002 @@ -2503,6 +2503,7 @@ unsigned i; struct option_cache6 *oc6; struct buffer *bp = (struct buffer *)0; + int iaid; log_info("make option for packet type: %d",type); /* for each type make varius options */ @@ -2554,7 +2555,8 @@ case DHCP6_OPTION_IA: /* add an empty ia structure */ - make_option_ia(oc6, lease->iaid,(struct ia_addr_list *)0); + iaid = lease ? lease->iaid : 0; + make_option_ia(oc6, iaid ,(struct ia_addr_list *)0); break; } }