vote up 1 vote down star

I whant to make a web interface on a server that will manage a few dns servers on another servers.

How can i remotely manage a bind dns server programmaticly ?

  • I would like to add/edit/delete zones.
  • I see that there is rndc but that only allows reloading of zones and not adding/deleting.
  • I could NFS mount zones from dns servers and edit them but is there a better way?
flag

3 Answers

vote up 4 vote down check

If there isn't a hard requirement on writing something like this from scratch, why not simply use an already existing interface without having to reinvent the wheel? A simple Google search for the keywords bind dns web interface yields an entire list of good open source projects in the very first result link.

link|flag
yes but don't those software require that bind runs on the same server as the software? – daniels Dec 4 '08 at 17:54
Not all. mysqlBind doesn't require it. It was mentioned on the very first result page. – Mihai Limbasan Dec 4 '08 at 18:15
Yeah, don't reinvent the wheel. Good answer! – Josh Dec 4 '08 at 18:39
+1 for looking for existing software. – epochwolf Dec 4 '08 at 21:17
One question about the mysqlbind will it hit the database for each request or only on reload it reads the zones and the caches them? – daniels Dec 5 '08 at 4:09
show 3 more comments
vote up 0 vote down

You could set up something that does remote SSH commands? That may be a bit insecure, though, unless the server running the commands themselves is pre-authenticated with an SSH key, and that's the only way you can access the server.

link|flag
vote up 2 vote down

There is work at the IETF to define a standard for remote control of name servers based on the Netconf framework. See:

The requirements include the ability to add/remove zones, etc.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.