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

> For example on the same subnet i'd like to slice the pool like this
> range 10.0.0.1 to 10.0.0.50 for clients with a vendor-class-identifier
> "aaaaa" in discover and request
> range 10.0.0.51 to 10.0.0.80 for clients with a vendor-class-identifier
> "bbbbb" in discover and request.

class "aaaaa" {
    match if option vendor-class-identifier = "aaaaa";
}

class "bbbbb" {
    match if option vendor-class-identifier = "bbbbb";
}

subnet 10.0.0.0 netmask 255.255.255.0 {
    pool {
        range 10.0.0.1 10.0.0.50;
        permit members of "aaaaa";
    }
    pool {
        range 10.0.0.51 10.0.0.80;
        permit members of "bbbbb";
    }
}


------------------------------------------------------------------------------
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