* Help Translate

 How to setup my own DNS-Server?


Patrick, 2010-02-08 13:21:18
How to run my own DNS name server?
Hi all, I'm a webmaster and wan't to run an own name server. What do I need to do?
mj, 2010-02-08 22:06:55
Setting up a DNS Server
If your Server runs Linux or Unix you can use the free DNS-Server Bind. You may install it from the repository. for Debian:
apt-get install bind9


You then need to edit the name servers configuration file. An easy way to let your name server resolve the New-Nations domains is to set it as a slave-server for the domains:
                          
zone "ti" {
	type slave;
	file "cache.db.ti";
	masters { 88.84.130.20; 194.50.176.206; };
};

zone "te" {
        type slave;
        file "cache.db.te";
        masters { 88.84.130.20; 194.50.176.206; };
};

zone "uu" {
        type slave;
        file "cache.db.uu";
        masters { 88.84.130.20; 194.50.176.206; };
};
New Message
        Cancel
Security Code Captcha Image