Fix indentation fail

This commit is contained in:
Beu 2019-04-26 19:07:12 +02:00
parent 94754cfdd4
commit 9568521542
1 changed files with 25 additions and 25 deletions

View File

@ -1,7 +1,7 @@
## How to deploy : ## How to deploy :
* Delete all /etc/bind/ directory * Delete all /etc/bind/ directory
* git clone * git clone
* Run 'rndc-confgen | grep '^key "rndc-key" {' -A3 > rndc.key' * Run 'rndc-confgen | grep '^key "rndc-key" {' -A3 > rndc.key'
* Restart bind service * Restart bind service
@ -11,17 +11,17 @@ The repository is thought like this:
``` ```
. .
├── named.conf # default file, have only include ├── named.conf # default file, have only include
├── named.conf.keys # have all TSIG keys and rndc config ├── named.conf.keys # have all TSIG keys and rndc config
├── named.conf.options # have all bind options ├── named.conf.options # have all bind options
├── named.conf.view # have all views options ├── named.conf.view # have all views options
├── keys # directory with all DNSSEC keys ├── keys # directory with all DNSSEC keys
├── views ├── views
│   ├── local.conf # have all zones options of the "local" view │   ├── local.conf # have all zones options of the "local" view
│   └── public.conf # have all zones options of the "public" view │   └── public.conf # have all zones options of the "public" view
└── zones └── zones
├── local # directory with all zones records of the "local" view ├── local # directory with all zones records of the "local" view
└── public # directory with all zones records of the "public" view └── public # directory with all zones records of the "public" view
``` ```
@ -40,36 +40,36 @@ then add **zones/local/exemple.com.conf** file with all your records like this :
$ORIGIN example.com. $ORIGIN example.com.
$TTL 3600 $TTL 3600
@ SOA dns1.example.com. hostmaster.example.com. ( @ SOA dns1.example.com. hostmaster.example.com. (
2019010101 ; serial 2019010101 ; serial
86400 ; refresh 86400 ; refresh
7200 ; retry 7200 ; retry
3600000 ; expire 3600000 ; expire
172800 ) ; minimum TTL 172800 ) ; minimum TTL
; ;
; ;
@ NS dns1.example.com. @ NS dns1.example.com.
@ NS dns2.example.com. @ NS dns2.example.com.
dns1 A 10.0.1.1 dns1 A 10.0.1.1
dns1 AAAA aaaa:bbbb::1 dns1 AAAA aaaa:bbbb::1
dns2 A 10.0.1.2 dns2 A 10.0.1.2
dns2 AAAA aaaa:bbbb::2 dns2 AAAA aaaa:bbbb::2
; ;
; ;
@ MX 10 mail.example.com. @ MX 10 mail.example.com.
@ MX 20 mail2.example.com. @ MX 20 mail2.example.com.
mail A 10.0.1.5 mail A 10.0.1.5
mail AAAA aaaa:bbbb::5 mail AAAA aaaa:bbbb::5
mail2 A 10.0.1.6 mail2 A 10.0.1.6
mail2 AAAA aaaa:bbbb::6 mail2 AAAA aaaa:bbbb::6
; ;
; ;
@ A 10.0.1.7 @ A 10.0.1.7
@ AAAA aaaa:bbbb::7 @ AAAA aaaa:bbbb::7
services A 10.0.1.10 services A 10.0.1.10
services AAAA aaaa:bbbb::10 services AAAA aaaa:bbbb::10
ftp CNAME services.example.com. ftp CNAME services.example.com.
www CNAME services.example.com. www CNAME services.example.com.
``` ```