I have 3 PowerDNS servers setup. The master/primary server (called "authns") where all domain and host changes are made, and two slave servers (ns1 and ns2) that are intended for clients to query. I am trying to use Native replication with MySQL as a backend. All servers are non-recursive and intended only to provide clients with host data on the domains I am managing. I have the mysql replication working - when a change is made in the powerdns database on authns, the change is replicated in the databases on ns1 and ns2. My question is: if all servers are functioning as authoritative servers and domain data replication is happening through mysql, would the pdns.conf file look identical on all servers? Why the need to declare authns as master=yes and ns1/ns2 as slave=yes? I'm looking for an example of a pdns.conf file for a similar architecture for the servers in question. Below is a picture of the architecture to hopefully make it clearer.
PowerDNS with MySQL native configuration question on master/slave architecture question
1.1k Views Asked by godeatgod At
1
There are 1 best solutions below
Related Questions in POWERDNS
- How to setup failover server for PowerDNS Recursor with forward-zone option?
- DNS Spoofing with PowerDNS
- Powerdns Subdomain & Delegation
- Where is the PowerDNS (pdns) service log file?
- 401 on PowerDNS metrics endpoint
- Reduce nested json (PowerDNS stats)
- Flux calculate rate per second using sample interval
- external-dns in multiple clusters don't update PowerDNS as expected
- ISC-DHCP and PowerDNS for DDNS "Unable to add forward map <FQDN> to <IP>:unexpected error
- I want to use lua in pdns-recursor to log the responses/answers
- Unable to add new zone/domain in PowerDNS using API
- PowerDNS with MySQL native configuration question on master/slave architecture question
- //usr/lib/x86_64-linux-gnu/libcrypto.so.1.1: error adding symbols: DSO missing from command line
- Log Refused DNS Queries in dnsdist using DNSTap
- DNS invalid records
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

Since no response to my question, after much trial and error, I will answer it in case it helps someone else.
The answer is yes - pdns.conf is the same on all ns servers. You can even architect it such that you do not need powerdns running on authns. Just let it run on the nameservers identified in the DNS for your domain(s). Use authns as the primary database and you only need to manage the mysql database on authns. authns will contain the powerdns database infrastructure, but you do not need the powerdns application.