MAAS packaging doesn't include maas-generated named.conf.options.inside.maas file
Bug #1275649 reported by
Ante Karamatić
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
MAAS |
Fix Released
|
High
|
Julian Edwards | ||
maas (Ubuntu) |
Confirmed
|
Undecided
|
Unassigned |
Bug Description
By default, MAAS uses root DNS servers in bind. Access to root DNS servers is not always allowed. Bind supports defining forwarders. MAAS should set forwarders based on DHCP information (if MAAS server gets IP from DHCP; sounds weird but it is deployment we've seen) or there should be an element in web UI that woul populate bind's config option and restart bind daemon. What we are looking for in bind is:
forwarders {
192.168.1.1;
192.168.1.2;
};
Related branches
lp://qastaging/~julian-edwards/maas/forwarders-config-writer
- Jeroen T. Vermeulen (community): Approve
-
Diff: 297 lines (+258/-0)5 files modifiedbuildout.cfg (+1/-0)
src/maasserver/management/commands/edit_named_options.py (+124/-0)
src/maasserver/tests/test_commands_edit_named_options.py (+129/-0)
src/provisioningserver/dns/config.py (+1/-0)
versions.cfg (+3/-0)
description: | updated |
Changed in maas: | |
status: | In Progress → Fix Committed |
Changed in maas (Ubuntu): | |
status: | New → Confirmed |
Changed in maas: | |
status: | Fix Committed → Fix Released |
To post a comment you must log in.
There is already support for that in MAAS (Added in revision 1729). The config option (that you can set using the CLI/API or the UI) 'upstream_dns' does exactly that: it adds a "forwarders {…}" statement in the DNS config.