DNSSEC-Switch: Interface & DB
| | |
| | | |
| | | ALTER TABLE `dns_soa` |
| | | ADD COLUMN `dnssec_initialized` ENUM('Y','N') NOT NULL DEFAULT 'N', |
| | | ADD COLUMN `dnssec_wanted` ENUM('Y','N') NOT NULL DEFAULT 'N', |
| | | ADD COLUMN `dnssec_info` TEXT NULL; |
| | | |
| | |
| | | `also_notify` varchar(255) default NULL, |
| | | `update_acl` varchar(255) default NULL, |
| | | `dnssec_initialized` ENUM('Y','N') NOT NULL DEFAULT 'N', |
| | | `dnssec_wanted` ENUM('Y','N') NOT NULL DEFAULT 'N', |
| | | `dnssec_info` TEXT NULL, |
| | | PRIMARY KEY (`id`), |
| | | UNIQUE KEY `origin` (`origin`), |
| | |
| | | 'default' => 'Y', |
| | | 'value' => array(0 => 'N', 1 => 'Y') |
| | | ), |
| | | 'dnssec_wanted' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'CHECKBOX', |
| | | 'default' => 'Y', |
| | | 'value' => array(0 => 'N', 1 => 'Y') |
| | | ), |
| | | 'dnssec_info' => array ( |
| | | 'datatype' => 'TEXT', |
| | | 'formtype' => 'TEXTAREA', |
| | |
| | | $wb['xfer_txt'] = 'Zonentransfer zu diesen IP Adressen erlauben (mit Komma getrennte Liste)'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['dnssec_info_txt'] = 'DNSSEC DS-Daten für Registry'; |
| | | $wb['dnssec_wanted_txt'] = 'Zone signieren (DNSSEC)'; |
| | | $wb['limit_dns_zone_txt'] = 'Die maximale Anzahl an DNS Einträgen für Ihr Konto wurde erreicht.'; |
| | | $wb['client_txt'] = 'Kunde'; |
| | | $wb['no_zone_perm'] = 'Sie haben nicht die Berechtigung, einen Eintrag zu dieser DNS Zone hinzuzufügen.'; |
| | |
| | | $wb["xfer_txt"] = 'Allow zone transfers to <br />these IPs (comma separated list)'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb['dnssec_info_txt'] = 'DNSSEC DS-Data for registry'; |
| | | $wb['dnssec_wanted_txt'] = 'Sign zone (DNSSEC)'; |
| | | $wb["limit_dns_zone_txt"] = 'The max. number of DNS zones for your account is reached.'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["no_zone_perm"] = 'You do not have the permission to add a record to this DNS zone.'; |
| | |
| | | </div> |
| | | </div> |
| | | |
| | | <div class="form-group"> |
| | | <label class="col-sm-3 control-label">{tmpl_var name='dnssec_wanted_txt'}</label> |
| | | <div class="col-sm-9"> |
| | | {tmpl_var name='dnssec_wanted'} |
| | | </div> |
| | | </div> |
| | | <div class="form-group"> |
| | | <label for="update_acl" class="col-sm-3 control-label">{tmpl_var name='dnssec_info_txt'}</label> |
| | | <div class="col-sm-9"><textarea readonly="true" rows="5" class="form-control">{tmpl_var name='dnssec_info'}</textarea></div> |