Ales Komarek | 882ac7b | 2014-07-14 10:47:56 +0200 | [diff] [blame] | 1 | |
Ales Komarek | 77dbf03 | 2017-01-29 21:46:05 +0100 | [diff] [blame] | 2 | ============ |
| 3 | Bind formula |
| 4 | ============ |
Ales Komarek | 882ac7b | 2014-07-14 10:47:56 +0200 | [diff] [blame] | 5 | |
Ales Komarek | 77dbf03 | 2017-01-29 21:46:05 +0100 | [diff] [blame] | 6 | BIND is open source software that enables you to publish your Domain Name System (DNS) information on the Internet, and to resolve DNS queries for your users. The name BIND stands for “Berkeley Internet Name Domain”, because the software originated in the early 1980s at the University of California at Berkeley. |
| 7 | |
| 8 | Sample pillars |
| 9 | ============== |
| 10 | |
| 11 | .. code-block:: yaml |
Ales Komarek | 882ac7b | 2014-07-14 10:47:56 +0200 | [diff] [blame] | 12 | |
Ales Komarek | 712343b | 2014-09-22 11:36:17 +0200 | [diff] [blame] | 13 | bind: |
| 14 | server: |
| 15 | enabled: true |
Filip Pytloun | 5299d07 | 2016-10-06 11:23:21 +0200 | [diff] [blame] | 16 | key: |
| 17 | keyname: |
| 18 | secret: xyz |
| 19 | algorithm: hmac-sha512 |
Filip Pytloun | 57435b2 | 2016-10-06 11:30:16 +0200 | [diff] [blame] | 20 | server: |
| 21 | 8.8.8.8: |
| 22 | keys: |
| 23 | - keyname |
Ales Komarek | 712343b | 2014-09-22 11:36:17 +0200 | [diff] [blame] | 24 | zone: |
| 25 | sub.domain.com: |
Filip Pytloun | 52aa75d | 2016-02-26 17:14:54 +0100 | [diff] [blame] | 26 | ttl: 86400 |
| 27 | root: "hostmaster@domain.com" |
Ales Komarek | 712343b | 2014-09-22 11:36:17 +0200 | [diff] [blame] | 28 | type: master |
Ales Komarek | ce71bf9 | 2014-09-30 11:35:30 +0200 | [diff] [blame] | 29 | records: |
| 30 | - name: @ |
| 31 | type: A |
| 32 | ttl: 7200 |
| 33 | value: 192.168.0.5 |
Ales Komarek | 712343b | 2014-09-22 11:36:17 +0200 | [diff] [blame] | 34 | 1.168.192.in-addr.arpa: |
| 35 | type: master |
Ales Komarek | ce71bf9 | 2014-09-30 11:35:30 +0200 | [diff] [blame] | 36 | notify: false |
Filip Pytloun | faf8bbc | 2016-02-26 16:32:20 +0100 | [diff] [blame] | 37 | slave.domain.com: |
| 38 | type: slave |
| 39 | notify: true |
| 40 | masters: |
Filip Pytloun | 52aa75d | 2016-02-26 17:14:54 +0100 | [diff] [blame] | 41 | # Masters must be specified by IP address |
| 42 | - 8.8.8.8 |
| 43 | - 8.8.4.4 |
Filip Pytloun | faf8bbc | 2016-02-26 16:32:20 +0100 | [diff] [blame] | 44 | dnssec: |
| 45 | enabled: true |
| 46 | # Don't hide version |
| 47 | version: true |
| 48 | # Allow recursion, better don't on public dns servers |
| 49 | recursion: |
| 50 | hosts: |
| 51 | - localhost |
Ales Komarek | fbfa168 | 2014-09-22 11:31:14 +0200 | [diff] [blame] | 52 | |
Ales Komarek | 77dbf03 | 2017-01-29 21:46:05 +0100 | [diff] [blame] | 53 | Read more |
| 54 | ========= |
Ales Komarek | 2bf4332 | 2014-09-22 13:03:41 +0200 | [diff] [blame] | 55 | |
Ales Komarek | ce71bf9 | 2014-09-30 11:35:30 +0200 | [diff] [blame] | 56 | * https://github.com/theforeman/puppet-dns |
Filip Pytloun | faf8bbc | 2016-02-26 16:32:20 +0100 | [diff] [blame] | 57 | * https://help.ubuntu.com/community/BIND9ServerHowto |
Ales Komarek | 77dbf03 | 2017-01-29 21:46:05 +0100 | [diff] [blame] | 58 | * https://www.isc.org/downloads/bind/ |