DHCP server to handle hostname.

classic Classic list List threaded Threaded
7 messages Options
Reply | Threaded
Open this post in threaded view
|

DHCP server to handle hostname.

durwin
I have some embedded devices with minimal OS.  I am not sure the DHCP client has compiled ability to send hostname.  I have seen this used while searching for help on this subject.

host e2rb_004 {
        option host-name "e2rb_004";
        ddns-hostname "e2rb_004";
        hardware ethernet 00:10:60:31:b2:a0;
        fixed-address 172.23.93.38;
}


This does not add the hostname in DNS.  My configuration does work as a normal DDNS.  Any machine which sends it's hostname when requesting an IP *does* get added into DNS records.  What I would like to do is to handle those embedded devices which do *not* send hostname.

Here is the DHCPD options.


=== dhcpd.conf ===
authoritative;

ddns-update-style interim;
ddns-updates on;
ddns-domainname "mydomain.com";
ddns-rev-domainname "in-addr.arpa.";
update-static-leases on;
ignore client-updates;
one-lease-per-client true;

# WPAD definition
option wpad code 252 = text;

key MSI_DHCPD_UPDATER {
    algorithm hmac-md5;
    secret "mysecret";
};

zone mydomain.com. {
    primary 127.0.0.1;
    key MSI_DHCPD_UPDATER;
}

zone 93.23.172.in-addr.arpa. {
    primary 127.0.0.1;
    key MSI_DHCPD_UPDATER;
}

subnet 172.23.93.0 netmask 255.255.255.0 {
    option routers          172.23.93.1;
    option wpad "\n\000";
    option subnet-mask      255.255.255.0;
    option domain-name      "mydomain.com";
    option domain-name-servers  172.23.93.3,172.23.93.9,198.59.115.2;
    option time-offset      -25200; # Mountain Standard Time
    range dynamic-bootp 172.23.93.95 172.23.93.249;
    default-lease-time 57600;
    max-lease-time 57600;
    min-lease-time 57600;
    ddns-domainname "mydomain.com";
}


Any advice is appreciated.  Thank you.



Durwin F. De La Rue
Management Sciences, Inc.
6022 Constitution Ave. NE
Albuquerque, NM  87110
Phone (505) 255-8611


This email message and any attachments are for the sole use of the intended recipient(s) and may contain proprietary and/or confidential information which may be privileged or otherwise protected from disclosure. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient(s), please contact the sender by reply email and destroy the original message and any copies of the message as well as any attachments to the original message.

_______________________________________________
dhcp-users mailing list
[hidden email]
https://lists.isc.org/mailman/listinfo/dhcp-users
Reply | Threaded
Open this post in threaded view
|

Re: DHCP server to handle hostname.

Rick Dicaire
Here's something I use when hosts don't send a hostname.
In global options:

ddns-hostname = pick (option fqdn.hostname, option host-name, concat ("ddns-", binary-to-ascii (10, 8, "-", leased-address)));
option host-name = config-option server.ddns-hostname;

Resulting ddns hostname is ddns-xxx-xxx-xxx-xxx.domain_name

Edit to suit.

On Thu, Sep 22, 2016 at 1:48 PM, <[hidden email]> wrote:
I have some embedded devices with minimal OS.  I am not sure the DHCP client has compiled ability to send hostname.  I have seen this used while searching for help on this subject.

host e2rb_004 {
        option host-name "e2rb_004";
        ddns-hostname "e2rb_004";
        hardware ethernet 00:10:60:31:b2:a0;
        fixed-address 172.23.93.38;
}


This does not add the hostname in DNS.  My configuration does work as a normal DDNS.  Any machine which sends it's hostname when requesting an IP *does* get added into DNS records.  What I would like to do is to handle those embedded devices which do *not* send hostname.

Here is the DHCPD options.


=== dhcpd.conf ===
authoritative;

ddns-update-style interim;
ddns-updates on;
ddns-domainname "mydomain.com";
ddns-rev-domainname "in-addr.arpa.";
update-static-leases on;
ignore client-updates;
one-lease-per-client true;

# WPAD definition
option wpad code 252 = text;

key MSI_DHCPD_UPDATER {
    algorithm hmac-md5;
    secret "mysecret";
};

zone mydomain.com. {
    primary 127.0.0.1;
    key MSI_DHCPD_UPDATER;
}

zone 93.23.172.in-addr.arpa. {
    primary 127.0.0.1;
    key MSI_DHCPD_UPDATER;
}

subnet 172.23.93.0 netmask 255.255.255.0 {
    option routers          172.23.93.1;
    option wpad "\n\000";
    option subnet-mask      255.255.255.0;
    option domain-name      "mydomain.com";
    option domain-name-servers  172.23.93.3,172.23.93.9,198.59.115.2;
    option time-offset      -25200; # Mountain Standard Time
    range dynamic-bootp 172.23.93.95 172.23.93.249;
    default-lease-time 57600;
    max-lease-time 57600;
    min-lease-time 57600;
    ddns-domainname "mydomain.com";
}


Any advice is appreciated.  Thank you.



Durwin F. De La Rue
Management Sciences, Inc.
6022 Constitution Ave. NE
Albuquerque, NM  87110
Phone <a href="tel:%28505%29%20255-8611" value="+15052558611" target="_blank">(505) 255-8611


This email message and any attachments are for the sole use of the intended recipient(s) and may contain proprietary and/or confidential information which may be privileged or otherwise protected from disclosure. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient(s), please contact the sender by reply email and destroy the original message and any copies of the message as well as any attachments to the original message.

_______________________________________________
dhcp-users mailing list
[hidden email]
https://lists.isc.org/mailman/listinfo/dhcp-users



--

_______________________________________________
dhcp-users mailing list
[hidden email]
https://lists.isc.org/mailman/listinfo/dhcp-users
Reply | Threaded
Open this post in threaded view
|

Re: [SOLVED] DHCP server to handle hostname.

durwin

Durwin F. De La Rue
Management Sciences, Inc.
6022 Constitution Ave. NE
Albuquerque, NM  87110
Phone (505) 255-8611


"dhcp-users" <[hidden email]> wrote on 09/22/2016 12:22:55 PM:

> From: Rick Dicaire <[hidden email]>

> To: Users of ISC DHCP <[hidden email]>
> Date: 09/22/2016 12:24 PM
> Subject: Re: DHCP server to handle hostname.
> Sent by: "dhcp-users" <[hidden email]>
>
> Here's something I use when hosts don't send a hostname.

> In global options:
>
> ddns-hostname = pick (option fqdn.hostname, option host-name, concat
> ("ddns-", binary-to-ascii (10, 8, "-", leased-address)));

> option host-name = config-option server.ddns-hostname;
>
> Resulting ddns hostname is ddns-xxx-xxx-xxx-xxx.domain_name


I'm going to have to remember this method.

After digging deeper into the logs, I found named was complaining
about the underscore in the name.  The two lines *do* work, if you
remove the underscore in hostname.

option host-name "e2rb_004";
ddns-hostname "e2rb_004";

Change to.

option host-name "e2rb004";
ddns-hostname "e2rb004";


Thank you.

>
> Edit to suit.

>
> On Thu, Sep 22, 2016 at 1:48 PM, <[hidden email]> wrote:

> I have some embedded devices with minimal OS.  I am not sure the
> DHCP client has compiled ability to send hostname.  I have seen this
> used while searching for help on this subject.
>
> host e2rb_004 {
>         option host-name "e2rb_004";
>         ddns-hostname "e2rb_004";
>         hardware ethernet 00:10:60:31:b2:a0;
>         fixed-address 172.23.93.38;
> }
>
>
> This does not add the hostname in DNS.  My configuration does work
> as a normal DDNS.  Any machine which sends it's hostname when
> requesting an IP *does* get added into DNS records.  What I would
> like to do is to handle those embedded devices which do *not* send hostname.
>
> Here is the DHCPD options.
>
>
> === dhcpd.conf ===
> authoritative;
>
> ddns-update-style interim;
> ddns-updates on;
> ddns-domainname "mydomain.com";
> ddns-rev-domainname "in-addr.arpa.";
> update-static-leases on;
> ignore client-updates;
> one-lease-per-client true;
>
> # WPAD definition
> option wpad code 252 = text;
>
> key MSI_DHCPD_UPDATER {
>     algorithm hmac-md5;
>     secret "mysecret";
> };
>
> zone mydomain.com. {
>     primary 127.0.0.1;
>     key MSI_DHCPD_UPDATER;
> }
>
> zone 93.23.172.in-addr.arpa. {
>     primary 127.0.0.1;
>     key MSI_DHCPD_UPDATER;
> }
>
> subnet 172.23.93.0 netmask 255.255.255.0 {
>     option routers          172.23.93.1;
>     option wpad "\n\000";
>     option subnet-mask      255.255.255.0;
>     option domain-name      "mydomain.com";
>     option domain-name-servers  172.23.93.3,172.23.93.9,198.59.115.2;
>     option time-offset      -25200; # Mountain Standard Time
>     range dynamic-bootp 172.23.93.95 172.23.93.249;
>     default-lease-time 57600;
>     max-lease-time 57600;
>     min-lease-time 57600;
>     ddns-domainname "mydomain.com";
> }
>
>
> Any advice is appreciated.  Thank you.
>
>
>
> Durwin F. De La Rue
> Management Sciences, Inc.
> 6022 Constitution Ave. NE
> Albuquerque, NM  87110
> Phone (505) 255-8611
>
>
> This email message and any attachments are for the sole use of the
> intended recipient(s) and may contain proprietary and/or
> confidential information which may be privileged or otherwise
> protected from disclosure. Any unauthorized review, use, disclosure
> or distribution is prohibited. If you are not the intended recipient
> (s), please contact the sender by reply email and destroy the
> original message and any copies of the message as well as any
> attachments to the original message.
> _______________________________________________
> dhcp-users mailing list
> [hidden email]
>
https://lists.isc.org/mailman/listinfo/dhcp-users
>

>
> --

> aRDy Music and Rick Dicaire present:
>
http://www.ardynet.com
>
http://www.ardynet.com:9000/ardymusic.ogg.m3u
> _______________________________________________
> dhcp-users mailing list
> [hidden email]
>
https://lists.isc.org/mailman/listinfo/dhcp-users


This email message and any attachments are for the sole use of the intended recipient(s) and may contain proprietary and/or confidential information which may be privileged or otherwise protected from disclosure. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient(s), please contact the sender by reply email and destroy the original message and any copies of the message as well as any attachments to the original message.

_______________________________________________
dhcp-users mailing list
[hidden email]
https://lists.isc.org/mailman/listinfo/dhcp-users
Reply | Threaded
Open this post in threaded view
|

Re: DHCP server to handle hostname.

Simon Hobson
In reply to this post by durwin
[hidden email] wrote:

> I have some embedded devices with minimal OS.  I am not sure the DHCP client has compiled ability to send hostname.  I have seen this used while searching for help on this subject.
>
> host e2rb_004 {
>         option host-name "e2rb_004";
>         ddns-hostname "e2rb_004";
>         hardware ethernet 00:10:60:31:b2:a0;
>         fixed-address 172.23.93.38;
> }
>
>
> This does not add the hostname in DNS.

Are you aware that host statements with fixed addresses don't follow the same path as dynamic leases ? SO there is no lease structure generated, and the server never expires it, and so normal DDNS actions don't occur ?


> update-static-leases on;

This will trigger a DDNS insert/update every time the client leases the address. However, because there is no lease for the server to expire, it will never remove the DNS entry.

If you don't need a static address, I believe you can just omit the fixed-address declaration. The client will then get a dynamic address assignment, and DDNS will work properly (the entries being deleted when teh lease expires).

_______________________________________________
dhcp-users mailing list
[hidden email]
https://lists.isc.org/mailman/listinfo/dhcp-users
Reply | Threaded
Open this post in threaded view
|

Re: DHCP server to handle hostname.

durwin
"dhcp-users" <[hidden email]> wrote on 09/23/2016 12:59:38 AM:

> From: Simon Hobson <[hidden email]>

> To: Users of ISC DHCP <[hidden email]>
> Date: 09/23/2016 01:00 AM
> Subject: Re: DHCP server to handle hostname.
> Sent by: "dhcp-users" <[hidden email]>
>
> [hidden email] wrote:
>
> > I have some embedded devices with minimal OS.  I am not sure the
> DHCP client has compiled ability to send hostname.  I have seen this
> used while searching for help on this subject.
> >
> > host e2rb_004 {
> >         option host-name "e2rb_004";
> >         ddns-hostname "e2rb_004";
> >         hardware ethernet 00:10:60:31:b2:a0;
> >         fixed-address 172.23.93.38;
> > }
> >
> >
> > This does not add the hostname in DNS.
>
> Are you aware that host statements with fixed addresses don't follow
> the same path as dynamic leases ? SO there is no lease structure
> generated, and the server never expires it, and so normal DDNS
> actions don't occur ?
>
>
> > update-static-leases on;
>
> This will trigger a DDNS insert/update every time the client leases
> the address. However, because there is no lease for the server to
> expire, it will never remove the DNS entry.
>
> If you don't need a static address, I believe you can just omit the
> fixed-address declaration. The client will then get a dynamic
> address assignment, and DDNS will work properly (the entries being
> deleted when teh lease expires).


Thank you for this information.  I will have to consider this.

Regards

>
> _______________________________________________
> dhcp-users mailing list
> [hidden email]
>
https://lists.isc.org/mailman/listinfo/dhcp-users



This email message and any attachments are for the sole use of the intended recipient(s) and may contain proprietary and/or confidential information which may be privileged or otherwise protected from disclosure. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient(s), please contact the sender by reply email and destroy the original message and any copies of the message as well as any attachments to the original message.

_______________________________________________
dhcp-users mailing list
[hidden email]
https://lists.isc.org/mailman/listinfo/dhcp-users
Reply | Threaded
Open this post in threaded view
|

Re: [SOLVED] DHCP server to handle hostname.

Bill Shirley
In reply to this post by durwin
http://www.zytrax.com/books/dns/ch7/hkpng.html#check-names
In named.conf using:
        check-names             master ignore;
        check-names             slave ignore;
allows the underscore.

Bill

On 9/22/2016 4:26 PM, [hidden email] wrote:

Durwin F. De La Rue
Management Sciences, Inc.
6022 Constitution Ave. NE
Albuquerque, NM  87110
Phone (505) 255-8611


"dhcp-users" [hidden email] wrote on 09/22/2016 12:22:55 PM:

> From: Rick Dicaire [hidden email]

> To: Users of ISC DHCP [hidden email]
> Date: 09/22/2016 12:24 PM
> Subject: Re: DHCP server to handle hostname.
> Sent by: "dhcp-users" [hidden email]
>
> Here's something I use when hosts don't send a hostname.

> In global options:
>
> ddns-hostname = pick (option fqdn.hostname, option host-name, concat
> ("ddns-", binary-to-ascii (10, 8, "-", leased-address)));

> option host-name = config-option server.ddns-hostname;
>
> Resulting ddns hostname is ddns-xxx-xxx-xxx-xxx.domain_name


I'm going to have to remember this method.

After digging deeper into the logs, I found named was complaining
about the underscore in the name.  The two lines *do* work, if you
remove the underscore in hostname.

option host-name "e2rb_004";
ddns-hostname "e2rb_004";

Change to.

option host-name "e2rb004";
ddns-hostname "e2rb004";


Thank you.

>
> Edit to suit.

>
> On Thu, Sep 22, 2016 at 1:48 PM, [hidden email] wrote:

> I have some embedded devices with minimal OS.  I am not sure the
> DHCP client has compiled ability to send hostname.  I have seen this
> used while searching for help on this subject.
>
> host e2rb_004 {
>         option host-name "e2rb_004";
>         ddns-hostname "e2rb_004";
>         hardware ethernet 00:10:60:31:b2:a0;
>         fixed-address 172.23.93.38;
> }
>
>
> This does not add the hostname in DNS.  My configuration does work
> as a normal DDNS.  Any machine which sends it's hostname when
> requesting an IP *does* get added into DNS records.  What I would
> like to do is to handle those embedded devices which do *not* send hostname.
>
> Here is the DHCPD options.
>
>
> === dhcpd.conf ===
> authoritative;
>
> ddns-update-style interim;
> ddns-updates on;
> ddns-domainname "mydomain.com";
> ddns-rev-domainname "in-addr.arpa.";
> update-static-leases on;
> ignore client-updates;
> one-lease-per-client true;
>
> # WPAD definition
> option wpad code 252 = text;
>
> key MSI_DHCPD_UPDATER {
>     algorithm hmac-md5;
>     secret "mysecret";
> };
>
> zone mydomain.com. {
>     primary 127.0.0.1;
>     key MSI_DHCPD_UPDATER;
> }
>
> zone 93.23.172.in-addr.arpa. {
>     primary 127.0.0.1;
>     key MSI_DHCPD_UPDATER;
> }
>
> subnet 172.23.93.0 netmask 255.255.255.0 {
>     option routers          172.23.93.1;
>     option wpad "\n\000";
>     option subnet-mask      255.255.255.0;
>     option domain-name      "mydomain.com";
>     option domain-name-servers  172.23.93.3,172.23.93.9,198.59.115.2;
>     option time-offset      -25200; # Mountain Standard Time
>     range dynamic-bootp 172.23.93.95 172.23.93.249;
>     default-lease-time 57600;
>     max-lease-time 57600;
>     min-lease-time 57600;
>     ddns-domainname "mydomain.com";
> }
>
>
> Any advice is appreciated.  Thank you.
>
>
>
> Durwin F. De La Rue
> Management Sciences, Inc.
> 6022 Constitution Ave. NE
> Albuquerque, NM  87110
> Phone (505) 255-8611
>
>
> This email message and any attachments are for the sole use of the
> intended recipient(s) and may contain proprietary and/or
> confidential information which may be privileged or otherwise
> protected from disclosure. Any unauthorized review, use, disclosure
> or distribution is prohibited. If you are not the intended recipient
> (s), please contact the sender by reply email and destroy the
> original message and any copies of the message as well as any
> attachments to the original message.
> _______________________________________________
> dhcp-users mailing list
> [hidden email]
>
https://lists.isc.org/mailman/listinfo/dhcp-users
>

>
> --

> aRDy Music and Rick Dicaire present:
>
http://www.ardynet.com
>
http://www.ardynet.com:9000/ardymusic.ogg.m3u
> _______________________________________________
> dhcp-users mailing list
> [hidden email]
>
https://lists.isc.org/mailman/listinfo/dhcp-users


This email message and any attachments are for the sole use of the intended recipient(s) and may contain proprietary and/or confidential information which may be privileged or otherwise protected from disclosure. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient(s), please contact the sender by reply email and destroy the original message and any copies of the message as well as any attachments to the original message.


_______________________________________________
dhcp-users mailing list
[hidden email]
https://lists.isc.org/mailman/listinfo/dhcp-users


_______________________________________________
dhcp-users mailing list
[hidden email]
https://lists.isc.org/mailman/listinfo/dhcp-users
Reply | Threaded
Open this post in threaded view
|

Re: [SOLVED] DHCP server to handle hostname.

durwin
"dhcp-users" <[hidden email]> wrote on 09/23/2016 02:20:33 PM:

> From: Bill Shirley <[hidden email]>

> To: [hidden email]
> Date: 09/23/2016 02:20 PM
> Subject: Re: [SOLVED] DHCP server to handle hostname.
> Sent by: "dhcp-users" <[hidden email]>
>
>
http://www.zytrax.com/books/dns/ch7/hkpng.html#check-names
> In named.conf using:
>         check-names             master ignore;
>         check-names             slave ignore;
> allows the underscore.
>
> Bill


Thank you  :)  This I'm going to add to my knowledge base.
Along with Simon's information.

Durwin

> On 9/22/2016 4:26 PM, [hidden email] wrote:
>
> Durwin F. De La Rue
> Management Sciences, Inc.
> 6022 Constitution Ave. NE
> Albuquerque, NM  87110
> Phone (505) 255-8611
>
> "dhcp-users" <[hidden email]> wrote on 09/22/2016
> 12:22:55 PM:
>
> > From: Rick Dicaire <[hidden email]>
> > To: Users of ISC DHCP <[hidden email]>
> > Date: 09/22/2016 12:24 PM
> > Subject: Re: DHCP server to handle hostname.
> > Sent by: "dhcp-users" <[hidden email]>
> >
> > Here's something I use when hosts don't send a hostname.
> > In global options:
> >
> > ddns-hostname = pick (option fqdn.hostname, option host-name, concat
> > ("ddns-", binary-to-ascii (10, 8, "-", leased-address)));
> > option host-name = config-option server.ddns-hostname;
> >
> > Resulting ddns hostname is ddns-xxx-xxx-xxx-xxx.domain_name
>
> I'm going to have to remember this method.
>
> After digging deeper into the logs, I found named was complaining
> about the underscore in the name.  The two lines *do* work, if you
> remove the underscore in hostname.
>
> option host-name "e2rb_004";
> ddns-hostname "e2rb_004";
>
> Change to.
>
> option host-name "e2rb004";
> ddns-hostname "e2rb004";
>
>
> Thank you.
>
> >
> > Edit to suit.
> >
> > On Thu, Sep 22, 2016 at 1:48 PM, <[hidden email]> wrote:
> > I have some embedded devices with minimal OS.  I am not sure the
> > DHCP client has compiled ability to send hostname.  I have seen this
> > used while searching for help on this subject.
> >
> > host e2rb_004 {
> >         option host-name "e2rb_004";
> >         ddns-hostname "e2rb_004";
> >         hardware ethernet 00:10:60:31:b2:a0;
> >         fixed-address 172.23.93.38;
> > }
> >
> >
> > This does not add the hostname in DNS.  My configuration does work
> > as a normal DDNS.  Any machine which sends it's hostname when
> > requesting an IP *does* get added into DNS records.  What I would
> > like to do is to handle those embedded devices which do *not* sendhostname.
> >
> > Here is the DHCPD options.
> >
> >
> > === dhcpd.conf ===
> > authoritative;
> >
> > ddns-update-style interim;
> > ddns-updates on;
> > ddns-domainname "mydomain.com";
> > ddns-rev-domainname "in-addr.arpa.";
> > update-static-leases on;
> > ignore client-updates;
> > one-lease-per-client true;
> >
> > # WPAD definition
> > option wpad code 252 = text;
> >
> > key MSI_DHCPD_UPDATER {
> >     algorithm hmac-md5;
> >     secret "mysecret";
> > };
> >
> > zone mydomain.com. {
> >     primary 127.0.0.1;
> >     key MSI_DHCPD_UPDATER;
> > }
> >
> > zone 93.23.172.in-addr.arpa. {
> >     primary 127.0.0.1;
> >     key MSI_DHCPD_UPDATER;
> > }
> >
> > subnet 172.23.93.0 netmask 255.255.255.0 {
> >     option routers          172.23.93.1;
> >     option wpad "\n\000";
> >     option subnet-mask      255.255.255.0;
> >     option domain-name      "mydomain.com";
> >     option domain-name-servers  172.23.93.3,172.23.93.9,198.59.115.2;
> >     option time-offset      -25200; # Mountain Standard Time
> >     range dynamic-bootp 172.23.93.95 172.23.93.249;
> >     default-lease-time 57600;
> >     max-lease-time 57600;
> >     min-lease-time 57600;
> >     ddns-domainname "mydomain.com";
> > }
> >
> >
> > Any advice is appreciated.  Thank you.
> >
> >
> >
> > Durwin F. De La Rue
> > Management Sciences, Inc.
> > 6022 Constitution Ave. NE
> > Albuquerque, NM  87110
> > Phone (505) 255-8611
> >
> >
> > This email message and any attachments are for the sole use of the
> > intended recipient(s) and may contain proprietary and/or
> > confidential information which may be privileged or otherwise
> > protected from disclosure. Any unauthorized review, use, disclosure
> > or distribution is prohibited. If you are not the intended recipient
> > (s), please contact the sender by reply email and destroy the
> > original message and any copies of the message as well as any
> > attachments to the original message.
> > _______________________________________________
> > dhcp-users mailing list
> > [hidden email]
> >
https://lists.isc.org/mailman/listinfo/dhcp-users
> >
>
> >
> > --
> > aRDy Music and Rick Dicaire present:
> >
http://www.ardynet.com
> >
http://www.ardynet.com:9000/ardymusic.ogg.m3u
> > _______________________________________________
> > dhcp-users mailing list
> > [hidden email]
> >
https://lists.isc.org/mailman/listinfo/dhcp-users
>
>
> This email message and any attachments are for the sole use of the
> intended recipient(s) and may contain proprietary and/or
> confidential information which may be privileged or otherwise
> protected from disclosure. Any unauthorized review, use, disclosure
> or distribution is prohibited. If you are not the intended recipient
> (s), please contact the sender by reply email and destroy the
> original message and any copies of the message as well as any
> attachments to the original message.

> _______________________________________________
> dhcp-users mailing list
> [hidden email]
>
https://lists.isc.org/mailman/listinfo/dhcp-users
> _______________________________________________
> dhcp-users mailing list
> [hidden email]
>
https://lists.isc.org/mailman/listinfo/dhcp-users


This email message and any attachments are for the sole use of the intended recipient(s) and may contain proprietary and/or confidential information which may be privileged or otherwise protected from disclosure. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient(s), please contact the sender by reply email and destroy the original message and any copies of the message as well as any attachments to the original message.

_______________________________________________
dhcp-users mailing list
[hidden email]
https://lists.isc.org/mailman/listinfo/dhcp-users