- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- dhcpd.conf domain search option example ?
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-09-2006 06:20 AM
тАО06-09-2006 06:20 AM
dhcpd.conf domain search option example ?
The option allows for a list of domain names that can be passed to a client, allowing it to search those domains first when looking for a dns name or address.
I have found many articles on the internal format via rfc's but nothing showing an actual implementation. I'm begining to wonder if this option was ever implemented in any server or understood by any client ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-09-2006 06:56 AM
тАО06-09-2006 06:56 AM
Re: dhcpd.conf domain search option example ?
The DHCP standard has no provision for that. You might want to check the archives of the ISC DHCP lists as this question comes up periodically there (particularly dhcp-server).
On the domain search order issue, there isn't a standard configuration
parameter or option that I know of which supports this.
http://lists.freebsd.org/pipermail/freebsd-current/2005-June/052215.html
http://lists.freebsd.org/pipermail/freebsd-current/2005-June/051634.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-09-2006 07:01 AM
тАО06-09-2006 07:01 AM
Re: dhcpd.conf domain search option example ?
Thanks much for the quick reply. But when you say there is no dhcp standard for domain search, do you mean for the server or the client ?
I have found references to an rfc 3397 authored in November of 2002 which describes this feature.
Has this not yet been implemented on both client or server or either ?
Al
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-09-2006 07:29 AM
тАО06-09-2006 07:29 AM
Re: dhcpd.conf domain search option example ?
Again thanks. The second reference you posted allowed me to come up with the following syntax in my dhcpd.conf file:
option domain-search-order code 119 = string;
option domain-search-order "domain1.net domain2.net domain3.net";
At least it allows dhcpd to start. As to whether or not it's serving this group of domainnames to the clients, that's more difficult to tell. And whether or not the clients will actually accept and do anything with these strings is another story.
Al
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-09-2006 08:41 AM
тАО06-09-2006 08:41 AM
Re: dhcpd.conf domain search option example ?
http://www.redhat.com/archives/redhat-list/2005-June/msg00239.html
Also:
If the client is a linux box, then make sure that you don't have such etry in your network interface configuration file:
PEERDNS=no
or better yet place an entry
PEERDNS=yes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-12-2006 07:44 AM
тАО06-12-2006 07:44 AM
Re: dhcpd.conf domain search option example ?
Thanks for the pointer. Unfortunately I've already tried this and the dhcpd server won't even start if you specify more than one domain on the domain-name line.
At least with the previoulsy listed option, I can start the dhcpd process.
Heard back from customer and he says it didn't load his Microsoft client....I'm waiting to hear back as to whether or not he saw the multiple domains in the offer from the server.
If they did, then there isn't much we can do if the client doesn't know what to do with the data.