DomDNS 0.31

DomDNS is a Web DNS management service to create records in DNS servers, in multiples zones, with view support. Supports REST for all actions. It allow the zones to be managed or just seen by users. The interface is in English or in French. The zones or the records can be enable/disable on time basis.

Tags dns php management
License BSDL
State testing

Recent Releases

0.3124 Apr 2020 11:48 minor release: FEATURES ADDED * Add DNSSec Support (Disabled by default on existing zones, can be set to automatic if needed). The administrator must create the keys and activate them with : rndc loadkeys DOMAIN.TLD IN VIEWNAME * Record : check if the double quotes are even, and if the parenthesis are balanced. Otherwise, Bind could not reload the zone CORRECTED BUGS: * Bind : Zone export zone start by SOA and the zone @ records, even if the SOA was added later. Otherwise, Bind cry about missing TTL * The Debian package for SSH in PHP has changed its name to "php-ssh2" * Remove multiple records : do not update DNS each entry, but at the end * Delete Zone : if there is an alert, don't let the wait image and restore the standard message to enable a second try * When the zone is disabled, do not try to reload it after removing a record, or there is an alert sent Need Database Update ! Do a backup ! For SQLite : PRAGMA foreign_keys=off; BEGIN TRANSACTION; CREATE TABLE IF NOT EXISTS new_table( id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, zone VARCHAR(255) NOT NULL, viewname VARCHAR(255) DEFAULT 'default', viewclients VARCHAR(255), dnssec INTEGER, comment VARCHAR(1024), opendate DATETIME NOT NULL, closedate DATETIME, UNIQUE (zone,viewname)); INSERT INTO new_table(id,zone,viewname,viewclients,comment,opendate, closedate) SELECT id,zone,viewname,viewclients,comment,opendate,closedate FROM dns_zones; UPDATE new_table SET dnssec='0'; DROP TABLE dns_zones; ALTER TABLE new_table RENAME TO dns_zones; COMMIT; PRAGMA foreign_keys=on; For MySQL : BEGIN TRANSACTION; ALTER TABLE dns_zones ADD COLUMN dnssec INTEGER AFTER viewclients; UPDATE dns_zones SET dnssec='0'; COMMIT;
0.3021 Apr 2020 08:49 minor release: FEATURES ADDED * Add CAA Record support (https://support.dnsimple.com/articles/caa-record/) * Add SSHFP Record support (https://www.noobunbox.net/serveur/securite/securiser-ssh-avec-sshfp) CORRECTED BUGS: * SSH is now done by the SSH2 library integrated in PHP (allow IPv6 support) * BUG Bind import with long DKIM key
0.2706 Sep 2016 12:05 minor release: * Display the DataTables sort arrows instead of Bootstrap ones * BUG : Error in calculation in matrix page * CLI : Allow the CLI to update all the zones in servers * Force the record ID in edition to be compliant with domframework 0.30 * Authentication error : the error class is now viewerror
0.2609 Jun 2016 03:15 minor release: * Rename error to viewerror to be compatible with PHP7 * Add the multiple add range functionality * Delete multiple record : missing space in confirmation modal between number and selections * If the zone is disabled, do not allow to click on "Activate the zone" when adding records. Do not allow the automatic "push and active" to activate the zone. There is an error raised by Bind : not found: * Display the flag "disabled" on the top of record page if needed * Create a matrix view of used IP (too found easily a block of IP addresses). Only in reverse zones (Thanks Stéphanie for the idea) * Update to DataTables 1.10.12 * Add the multiple selection of records by mouse with shift/control * Delete confirmation : do not remove the window until all the records are removed
0.2514 Apr 2016 09:14 minor release: * Datatables : when resizing screen from small to big, the Datatables is not resized and stay small * Publish the soft on Freshcode * BUG Reverse record creation IPv6 : check the number of elements : don't create if there is missing part of the IP (which can be a valid IP if the part is a 0) * BUG Do not have warning if the view name is not provided to zone list for a zone * Add a button to create the reverse of a record if it doesn't exists (with a select box of RW enabled reverse zones and submit) There is a fill (when clicking on Add, do not display the filled values, and clicking on Go, should)
0.1507 Apr 2016 09:05 minor release: * Automatic Updates are now again functionnal * BUG : CSRF Ticket refused sometimes : favicon problem * Add an official favicon, and icon (from libreoffice)
0.1107 Apr 2016 08:05 minor release: *** Upgrade Domframework to version 0.7 minimum *** * Allow to re-push all the displayed zones in automatic and then do the reload * The sorting of first column (source) in reverse zones is not correct * When renaming zone or viewname, correct all the associated userpref * Limit the zone name to lowercase chars * Add internationalisation (dataTables and in the other parts of the soft) DomFramework version 0.7 minimum Selection by Browser default language/Cookie (and auth page when it will be available)
0.1307 Apr 2016 06:25 minor release: * JS/CSS : add timestamp to force the browser cache to be updating when the file is changed * Add a log for each modification with user name * Add logs for authentication * the userprefs have to be saved by user instead of nobody * Allow deletion with token to remove the use of REST support for HTML pages * authentication : ratelimit by IP the authentication process * configuration : if missing entry in an array of the configuration, use the default value instead of don't defining the entry (corrected in domframework)
0.2007 Apr 2016 05:45 minor release: * Need Domframework 0.23 ! * JSON decode the error messages * A bad request method POST provided instead of PUT for zoneAutoActivate * zoneAutoActivate.js : the Ajax update of the information is not needed * Check if there is " datas" in code, check if there is " informations" * If there is no zone in the database, have a beautiful error message instead of a invalid HTML page * If there is no record in zone, have a beautiful error message * Import bind: The source is always a @ * Import bind: better support of end of lines * Add transaction in database when doing a importBind with rollback in case of error * When there is an error in importBind, display the wrong line * When the error page is displayed, add the breadcrumb to go to the main page * Create a progress bar when exporting all the zones to DNS servers * importBind : better parsing (except if a field is missing with the error line) * Allow the importBind to be an uploaded file * Records : remove a record should not refresh all the page (just removing the Datatable line) * records : change the confirm message with the number of rows to delete * Module authorization : add the "use route" to index.php * Display all the groups of the current user when editing the user page * Help keys to add/remove/update an entry (like del to remove an entry) * Add the focus on the forms (on the first element if there is no error, on the field with an error if there is one) done in domframework 0.23 * Do a Help page (with shortcuts)
0.407 Apr 2016 05:05 minor release: * Allow username to be used by sudo to move the zones or reload DNS server * Debian package : add /etc/sudoers.d/domdns with chmod 0440 * Debian package : add the domdns user to the system * Allow to create/modify/delete zone * Don't allow multiple SOA in insert record * Ask the confirmation before deleting an entry with a bootstrap modal * Create the database in CLI if the configuration is done (by adding a controller "install") * Add foreign keys in database to remove records associated to a zone * Debian package : add jquery.min.js because the official Debian package don't work (number of records don't displayed on the DataTable) * Add default pointer to zone list * Must use the 0.2 version of domframework
0.2403 Apr 2016 13:32 minor feature: * Need framework 0.24 * Allow one server to be on views and another to be without view (the command will be rndc reload zone in view / rndc reload zone) (need modification of domframework config.php) * SSH connection : allow another port than 22 (need modification of domframework config.php) * Sort zones in bind export * Delete last record : error warned by the server 'Pas de données fournies pour créer le fichier de zone' * exportAll : in case of error with bind, invalid SSH port by example, manage the error on the modal instead of alert. * BUG : Disable zone : invalid if all the dates are in the future and the close date is before the open date (should be enable until the close date is crossed, then reopened)