Shammer's Philosophy

My private adversaria

DNS/Bind

ムームードメインで取得したドメインをRoute53(Amazon DNS Cloud)で管理する

DNSがどのように動作するのか、実際に勉強してみたいと思って自分のドメインを取得したが、、、その勉強をやる前にある程度わかってしまい、勉強用途では不要になった。自分でVPSを2つ用意して、それぞれをPrimaryDNSとSlaveDNSとして動作させようと思ってい…

DNS Bind Configuration Index

This is an index for configuring bind. Bind Install & Configuration on Debian - Shammerism Bind Logging Configuration - Shammerism Bind forwarder option - Shammerism DNS Bind zone file configuration - Shammerism DNS Bind SOA file - Shammer…

DNS Bind SOA file

This article is about the SOA files which is referenced from zone file described at DNS Bind zone file configuration - Shammerism's article. SOA file should have some elements. Here is a sample of the SOA of examples.xyz, defined as /etc/b…

DNS Bind zone file configuration

This is a consecutive article of DNS forward and delegate - Shammerism, about zone file location, not zone file itself. This file includes authority domain and type, it is a master or slave, and forwarder. The forwarder in this section is …

DNS forward and delegate

Introduction I have a question about the difference between DNS forward and delegate, I referred this point in this article. And I found the article about DNS sub-domain, http://www.atmarkit.co.jp/fwin2k/win2ktips/740dnsdelegate/dnsdelegat…

Bind forwarder option

What is DNS forwarder? DNS forwarder is like an upper DNS servers. If some DNS server receives a query which is not owned as authority, the DNS server can forward the request to other DNS servers. Those other DNS servers who work as a reso…

Bind Logging Configuration

Steps mkdir /var/log/named chown bind /var/log/named chgrp bind /var/log/named generate /etc/bind/named.logging.conf with following content. add following line to /etc/bind/named.conf check config with "named-checkconf /etc/bind/named.conf…

Basic DNS Configuration

What DNS Server should do? Basic DNS server functions are below. DNS Server configuration files Manage own zone Resolver DNS Server configuration files are depended on the DNS Server. I use bind so I will write about bind config files. The…

Bind Install & Configuration on Debian

Install apt-get update apt-get install bind9 apt-get install dnsutils Config At default, only localhost is managed on this DNS server. I configured to manage my domain for other steps.