Bug 4813 - DNS: Simplify setup
Summary: DNS: Simplify setup
Status: RESOLVED FIXED
Alias: None
Product: Samba 4.0
Classification: Unclassified
Component: Other (show other bugs)
Version: unspecified
Hardware: All All
: P3 normal (vote)
Target Milestone: ---
Assignee: Andrew Bartlett
QA Contact: Andrew Bartlett
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-07-24 12:28 UTC by Matthias Dieter Wallnöfer
Modified: 2008-08-02 08:08 UTC (History)
1 user (show)

See Also:


Attachments
Patch for named.conf (4.09 KB, patch)
2008-07-03 12:58 UTC, Matthias Dieter Wallnöfer
no flags Details
A corrected version of the provision.py (2.03 KB, patch)
2008-07-03 13:04 UTC, Matthias Dieter Wallnöfer
no flags Details
A new named.txt (2.49 KB, text/plain)
2008-07-03 13:07 UTC, Matthias Dieter Wallnöfer
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Matthias Dieter Wallnöfer 2007-07-24 12:28:39 UTC
I don't really know, but in my opinion the actual DNS setup procedure for SAMBA 4 is a bit tricky. It would be a bit easier, if SAMBA also generates an appropopriate include file for the Bind DNS server configuration.
For example:

zone "<dnsname>" {
  type master;
  file <zonefile>;
  allow-update { any; };
};

The include and zone file should be put in a common directory with write allow for the Bind server to create and maintain the file for dynamic host updates. So the user has only to worry about the include directive in the main configuration file.

In a later stage then it should be possible to configure DNS with Microsoft's DNS MMC tool. But I think, then there is a need for an embedded customized builtin DNS service in SAMBA, that can read the informations saved in AD.
Comment 1 Andrew Bartlett 2007-07-24 18:12:11 UTC
I want to avoid having our own DNS server for as long as possible.  We do however need to figure out what would be required to get the correct behaviour out of BIND. 
Comment 2 Matthias Dieter Wallnöfer 2007-07-27 05:48:14 UTC
But for now I would propose the design with the include for the main configuration file (see above), so the setting up is much more uncomplicated (only to add the include line in the main configuration file). In a later stage there is then also the possibility to manage multiple domains without great modifications.
Comment 3 Matthias Dieter Wallnöfer 2007-08-23 01:02:31 UTC
Since it's not really a bug, I'll mark it as a feature request.
Comment 4 Andrew Bartlett 2007-08-23 21:03:18 UTC
I've added the generation of a named.conf snippet, which we can expand to include GSS-TSIG configuration in future. 
Comment 5 Matthias Dieter Wallnöfer 2007-08-24 00:58:07 UTC
Ok! I've seen you've taken my approach on this now. But how would you like to handle the dynamic DNS updates? This with that GSS-TSIG?
Comment 6 Andrew Bartlett 2007-08-24 01:03:31 UTC
Simo has promised to show me how to do that. 

I hope it's just a matter of extending the generated configuration, and exporting a keytab.  I don't know how the ACLs will work...
Comment 7 Matthias Dieter Wallnöfer 2007-11-10 03:28:16 UTC
Andrew, any progress here? Has Simo helped you?
Comment 8 Andrew Bartlett 2007-11-10 03:31:31 UTC
The current generated configuration is as far as I'm going so far. 
Comment 9 Andrew Kroeger 2008-05-28 08:13:34 UTC
Matthias:

GSS-TSIG updates are now working in Git, and detailed configuration documentation is generated in ${prefix}/private/named.conf

Please review these changes to determine if they resolve this bug.
Comment 10 Matthias Dieter Wallnöfer 2008-05-29 03:37:17 UTC
Yeah, as "include file" I thought a completely finished "named.conf" snippet that I can integrate through the include directive in the main "named.conf" of the server. The instructions should be moved in a separate file (for example bind.txt or named.txt).
Another idea: would it be possible to move the "named.conf" snippet, keytab and zone file to the bind zone directory. Is this too much efford to do?
Naturally, It would be much more comfortable, If we could use a configuration API of bind. But I don't know if there exists something similar.
Please tell me about your opinions!
Comment 11 Matthias Dieter Wallnöfer 2008-07-03 12:58:51 UTC
Created attachment 3384 [details]
Patch for named.conf

I changed the "named.conf" in the sense that it can be directly included in the main BIND configuration file. This needs also a change in the provision script (for the path).
Comment 12 Matthias Dieter Wallnöfer 2008-07-03 13:04:32 UTC
Created attachment 3385 [details]
A corrected version of the provision.py

Needed for "named.conf" change.
Comment 13 Matthias Dieter Wallnöfer 2008-07-03 13:07:11 UTC
Created attachment 3386 [details]
A new named.txt

A new named.txt file which contains the other informations.
Comment 14 Andrew Bartlett 2008-07-15 07:17:27 UTC
This looks very interesting.  Any chance you can put them into a GIT repo I can pull, or as GIT formatted patches?

Otherwise, I'll manually commit them tomorrow (I hope)
Comment 15 Matthias Dieter Wallnöfer 2008-07-15 11:06:49 UTC
Please check in manually! I find this patch very neat, because it simplifies the provision a lot.
Comment 16 Matthias Dieter Wallnöfer 2008-08-02 08:08:27 UTC
I didn't notice your changes for awhile ;-) .
Okay, the matter is resolved.