*** From dhcp-server -- To unsubscribe, see the end of this message. ***

I just upgraded from v2.0 b1 pl6 to pl27 and have a couple of questions.

1. In RELNOTES, for pl24 it says

   - Use netmask from subnet if no netmask option specified.

   I thought it did this all along?

2. In RELNOTES for pl7 it says

   - Allow host declarations without names.

   I tried putting a host declaration into the dhcpd.conf file without
   a name and it gave me an error. Is this supported?

   host
   {
    ...
   }

   dhcpd.conf line 208: expecting an identifier in hostname
   {
   ^

3. I was looking at parse_subnet_declaration(), and I think there is a bug
   in the following code:

                u = (struct subnet *)0;
                for (t = share -> subnets;
                     t -> next_sibling; t = t -> next_sibling) {
                        if (subnet_inner_than (subnet, t, 0)) {
                                if (u)
                                        u -> next_sibling = subnet;
                                else
                                        share -> subnets = subnet;
                                subnet -> next_sibling = t;
                                return;
                        }
                        u = t;
                }
                t -> next_sibling = subnet;

   It looks to me like this loop does not check the last entry in the subnets
   list for subnet_inner_than().

Valerie Miller
Process Software



------------------------------------------------------------------------------
To unsubscribe from this list, please visit http://www.fugue.com/dhcp/lists
If you are without web access, or if you are having trouble with the web page,
please send mail to [EMAIL PROTECTED]   Please try to use the web
page first - it will take a long time for your request to be processed by hand.

Archives for this mailing list are available at 
http://www.webnology.com/list-archives/dhcp/dhcp-server

------------------------------------------------------------------------------

Reply via email to