A restful microservice that manage Bind9 zones, forked from https://github.com/dmyerscough/BIND-RESTful
Go to file
Damian Myerscough b2d7ee86a8 Update README.md
2013-10-08 13:34:35 -07:00
bind-api.py BIND DNS RESTful API 2013-10-05 18:10:21 -07:00
config.ini BIND DNS RESTful API 2013-10-05 18:10:21 -07:00
README.md Update README.md 2013-10-08 13:34:35 -07:00
requirements.txt BIND DNS RESTful API 2013-10-05 18:10:21 -07:00

BIND-RESTful

BIND RESTful API to perform dyanmic DNS updates and display the entire zone file.

Show Entire Zone


Create DNS Entry
================

```bash curl -i -H "Content-Type: application/json" -X POST http://127.0.0.1:5000/dns/record/create/mynewhost.internal.net/300/A/192.168.0.15

Update DNS Entry
================

```bash curl -i -H "Content-Type: application/json" -X POST http://127.0.0.1:5000/dns/record/update/mynewhost.internal.net/300/A/192.168.0.13