All Projects → PowerDNS-Admin → PowerDNS-Admin

PowerDNS-Admin / PowerDNS-Admin

Licence: MIT license
A PowerDNS web interface with advanced features

Programming Languages

python
139335 projects - #7 most used programming language
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects
Dockerfile
14818 projects
shell
77523 projects
Mako
254 projects

Projects that are alternatives of or similar to PowerDNS-Admin

docker-pdns
Docker images for PowerDNS
Stars: ✭ 148 (-90.82%)
Mutual labels:  powerdns, pdns, powerdns-admin
dnstap-receiver
Dnstap streams receiver in Python
Stars: ✭ 33 (-97.95%)
Mutual labels:  powerdns, pdns
powerdns-php
PowerDNS API PHP Client
Stars: ✭ 67 (-95.84%)
Mutual labels:  powerdns, pdns
powerdns
PowerDNS dnsdist, recursor, authoritative, and admin interface. Supports DNSCrypt, DoH, and DoT.
Stars: ✭ 35 (-97.83%)
Mutual labels:  powerdns, powerdns-admin
docker-powerdns
PowerDNS + Recursor + Admin GUI + Adblock in one single Docker
Stars: ✭ 49 (-96.96%)
Mutual labels:  powerdns
docker-powerdns-admin
PowerDNS Admin Web UI. Dockerized version of https://github.com/ngoduykhanh/PowerDNS-Admin
Stars: ✭ 18 (-98.88%)
Mutual labels:  powerdns
chef-pdns
Development repository for DNSimple Cookbook PowerDNS.
Stars: ✭ 22 (-98.64%)
Mutual labels:  powerdns
go-powerdns
Go PowerDNS 4.x API Client
Stars: ✭ 70 (-95.66%)
Mutual labels:  powerdns
fever
fast, extensible, versatile event router for Suricata's EVE-JSON format
Stars: ✭ 47 (-97.08%)
Mutual labels:  pdns
Pdns
PowerDNS Authoritative, PowerDNS Recursor, dnsdist
Stars: ✭ 2,575 (+59.74%)
Mutual labels:  powerdns
balboa
server for indexing and querying passive DNS observations
Stars: ✭ 42 (-97.39%)
Mutual labels:  pdns
docker-mail-server
Ansible playbooks to deploy a full featured mail server stack using Docker.
Stars: ✭ 47 (-97.08%)
Mutual labels:  powerdns-admin

PowerDNS-Admin

A PowerDNS web interface with advanced features.

Language grade: Python Language grade: JavaScript

Features:

  • Multiple domain management
  • Domain template
  • User management
  • User access management based on domain
  • User activity logging
  • Support Local DB / SAML / LDAP / Active Directory user authentication
  • Support Google / Github / Azure / OpenID OAuth
  • Support Two-factor authentication (TOTP)
  • Dashboard and pdns service statistics
  • DynDNS 2 protocol support
  • Edit IPv6 PTRs using IPv6 addresses directly (no more editing of literal addresses!)
  • Limited API for manipulating zones and records
  • Full IDN/Punycode support

Running PowerDNS-Admin

There are several ways to run PowerDNS-Admin. The easiest way is to use Docker. If you are looking to install and run PowerDNS-Admin directly onto your system check out the Wiki for ways to do that.

Docker

This are two options to run PowerDNS-Admin using Docker. To get started as quickly as possible try option 1. If you want to make modifications to the configuration option 2 may be cleaner.

Option 1: From Docker Hub

The easiest is to just run the latest Docker image from Docker Hub:

$ docker run -d \
    -e SECRET_KEY='a-very-secret-key' \
    -v pda-data:/data \
    -p 9191:80 \
    ngoduykhanh/powerdns-admin:latest

This creates a volume called pda-data to persist the SQLite database with the configuration.

Option 2: Using docker-compose

  1. Update the configuration
    Edit the docker-compose.yml file to update the database connection string in SQLALCHEMY_DATABASE_URI. Other environment variables are mentioned in the legal_envvars. To use the Docker secrets feature it is possible to append _FILE to the environment variables and point to a file with the values stored in it.
    Make sure to set the environment variable SECRET_KEY to a long random string (https://flask.palletsprojects.com/en/1.1.x/config/#SECRET_KEY)

  2. Start docker container

    $ docker-compose up
    

You can then access PowerDNS-Admin by pointing your browser to http://localhost:9191.

Screenshots

dashboard

LICENSE

MIT. See LICENSE

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].