-
Notifications
You must be signed in to change notification settings - Fork 125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documentation Request - DNS Forwarder on CP #2387
Labels
enhancement
New feature or request
Comments
@jshawdell This feature is part of release_1.7 branch - https://github.com/dell/omnia/tree/release_1.7. Omnia does not modify already released branches or tag. Can you use release_1.7 branch for this feature? |
Closing this issue as Omnia 1.7 is released |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We recently deployed OMNIA version: v1.6.1-4-g9eb3885b
After a cluster was deployed on our nodes, we realized we needed our nodes to resolve dns names from a DNS server upstream from the CP (use case: install an ubuntu package)
We ran into problems trying to add a DNS Forwarder in named.conf on the CP. Normally, it is straightforward to add a forwarder by adding a "forwarders" entry in the options section and restarting the named service. Example:
#generated by xCAT: /opt/xcat/sbin/makedns command
options {
directory "/var/lib/bind/";
allow-recursion { any; };
forwarders {192.168.102.100; }; <----
};
We learned that due to dnssec validation being used in Omnia, "dnssec-validation no;" was also required for this to work properly
The Ask:
Side Question:
We had added a DNS entry in the admin_network section of the network_spec.xml file and initially assumed that the nodes on this network would be configured to use this DNS. After some digging, we realized that xcat deploys bind DNS on the CP and that all the nodes were configured to use the CP for DNS.
Question:
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Describe the solution you'd like
A clear and concise description of what you want to happen.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: