GitNamed is a project that manage name server by git. you can clone the git repo to any workstation, edit zone file, commit and push it. the data will push to the master and slave name server on the fly.
you don't need to touch name server any more, you have all your data in git repo with a history of your zone file.
if you need add a new zone, just create a new file in zones directory, zone file name should be the domain name:
vi zones/example.com
git add zones/example.com
git commit -m "add example.com"
here is a example zone file:
$TTL 3600
@ IN SOA ns1.example.com. sysadm.example.com. (
2012040812 ; serial
7200 ; refresh
1800 ; retry
1209600 ; expire
300 ) ; minimum
IN NS ns1.example.com.
IN NS ns2.example.com.
IN A 61.160.235.206
$ORIGIN example.com.
ns1 172800 IN A 61.160.235.206
ns2 172800 IN A 61.160.235.203
www IN A 61.160.235.206
test IN A 61.160.235.200
* IN CNAME example.com.
any one having the access right of git repo can manage the name
server now.
it's tested on CentOS 6.2 and Debian 6.0.
If you find any problems, please contact me:
email: [email protected]
weibo: http://weibo.com/refactor
blog: http://www.pubyun.com/blog
github: https://github.com/pubyun/gitnamed
- install bind on master and slave dns server
CentOS:
#yum -y install bind
Debian:
#aptitude -y install bind9
- get source code
#git clone git://github.com/pubyun/gitnamed.git /home/named
#cd /home/named
- modify IP of domain name server in config file:
#vi script/settings.py
- modify trusted IP of your domain name server
you should include ip of all your slave dns servers in the trusted ip block, so they can transfer data from master dns server
#vi named.conf
acl trusted {
127.0.0.1/32;
192.168.0.0/16;
172.16.0.0/16;
61.160.235.0/24;
};
- runing setup file:
#./script/setup.py
- start named
#service named start
I recommend gitolite:
https://github.com/sitaramc/gitolite
- add a repo to it, here is part of conf/gitolite.conf:
repo gitnamed
RW = refactor
R = gitnamed
NOTE:
please use the private key just generated in .ssh/id_rsa.pub for gitolite private key.
your private repo url is something like:
ssh://[email protected]/gitnamed.git
- push code to your private repo:
#su - named
$git remote add hub ssh://[email protected]/gitnamed.git
$git push hub master
now you can test git pull:
#su - named
$git pull hub master
Already up-to-date.
- copy code
use a tool like rsync to copy /home/named/ to slave dns server, it must be same directory as master dns.
- runing setup file:
#./script/setup.py
- start named
#service named start
- setup authorized_keys on all your slave dns
#su - named
$vi .ssh/authorized_keys
# enable push from master name server
from="61.160.235.206",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEApclazU9YfjfahDYT2692PSWYvjTOoFMTfgyTRpN/c/bq+GNPrC9hBunpVrhHyQ439t3Zj4VIEweY4AOTRstf94+IRp7BvYC8etb4x+M7oPbsa0JQGnfFIYrzpo7e2+t3+i1VfRgO4OtqrQTwuB45a+8zL8uHV6rK1vbDNUKdfiO7NRmCQoelhWgREUJkhYn00NCQyUUhcBB+MtP4mk4vHHKT2ZdAU/DeNL5cKbet90t871enIrfOMxkIRiCRA5SLJVQp9vWlmfo2Da79DVjWohKIrngF6ydJ7zJd3Izw0bVt7ZoawvTfQhuIPdAd6bJ95kOYzoJbFjin0wY8ZF6Qkw==
run syndns.py script on master dns server to test
#su - named
$ /home/named/script/syndns.py
Already up-to-date.
server reload successful
reloading 61.160.235.203
named.conf.slave 100% 150 0.2KB/s 00:00
server reload successful
- setup authorized_keys on all master dns
#su - named
$vi .ssh/authorized_keys
# enable push from git server
from="61.160.235.208",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty,command="/home/named/script/syndns.py" ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEApclazU9YfjfahDYT2692PSWYvjTOoFMTfgyTRpN/c/bq+GNPrC9hBunpVrhHyQ439t3Zj4VIEweY4AOTRstf94+IRp7BvYC8etb4x+M7oPbsa0JQGnfFIYrzpo7e2+t3+i1VfRgO4OtqrQTwuB45a+8zL8uHV6rK1vbDNUKdfiO7NRmCQoelhWgREUJkhYn00NCQyUUhcBB+MtP4mk4vHHKT2ZdAU/DeNL5cKbet90t871enIrfOMxkIRiCRA5SLJVQp9vWlmfo2Da79DVjWohKIrngF6ydJ7zJd3Izw0bVt7ZoawvTfQhuIPdAd6bJ95kOYzoJbFjin0wY8ZF6Qkw==
- test pushing data to master:
on git server, you can trigger the script on master dns server:
$/usr/bin/ssh -i /home/git/.ssh/gitnamed [email protected] sleep 1
Already up-to-date.
server reload successful
server reload successful
add script to hooks:
$vi ~git/repositories/gitnamed.git/hooks/post-receive
/usr/bin/ssh -i /home/git/.ssh/gitnamed [email protected] sleep 1
you can clone the git repo to any workstation, edit zone file, commit and push it.
the data will push to the master and slave name server now.