This repository has been archived by the owner on Jan 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnameservers.yaml
100 lines (94 loc) · 2.8 KB
/
nameservers.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
---
# file: nameservers.yaml
# vim:ft=ansible:
- name: ns1.tfb.net
hosts: theon.rbsov
tags: [ 'dns' ]
roles:
- role: network-interface
network_ether_interfaces:
- device: 'eth0:98'
bootproto: 'static'
address: '93.186.33.98'
netmask: '255.255.255.224'
gateway: '93.186.33.97'
- role: nameserver
nameserver_type: "master"
nameserver_query_source: '93.186.33.98'
tags: [ 'nameserver-role', 'ns1.tfb.net' ]
- name: ns2.tfb.net
hosts: tyrion.rbsov
tags: [ 'dns' ]
roles:
- role: network-interface
network_ether_interfaces:
- device: 'eth0:104'
bootproto: 'static'
address: '93.186.33.104'
netmask: '255.255.255.224'
gateway: '93.186.33.97'
- role: nameserver
nameserver_type: "slave"
nameserver_query_source: '93.186.33.104'
tags: [ 'nameserver-role', 'ns2.tfb.net' ]
- name: ns3.tfb.net
hosts: bran.mlt
tags: [ 'dns' ]
roles:
- role: network-interface
network_ether_interfaces:
- device: 'eth0:214'
bootproto: 'static'
address: '90.155.50.214'
netmask: '255.255.255.240'
gateway: '90.155.50.209'
- device: 'eth0:214v6'
netproto: 'inet6'
bootproto: 'static'
address: '2001:8b0:84c:717d:90:155:50:214'
netmask: '64'
gateway: '2001:8b0:84c:717d::1'
- device: 'eth0:1918b'
bootproto: 'static'
address: '10.1.4.214'
netmask: '255.255.255.0'
gateway: '10.1.4.1'
- role: nameserver
nameserver_type: "slave"
nameserver_query_source: '90.155.50.214'
nameserver_query_source_v6: '2001:8b0:84c:717d:90:155:50:214'
tags: [ 'nameserver-role', 'ns3.tfb.net' ]
- name: ns4.tfb.net
hosts: ns4.gce
tags: [ 'dns' ]
roles:
- role: nameserver
nameserver_type: "slave"
tags: [ 'nameserver-role', 'ns4.tfb.net' ]
- name: ns5.tfb.net
hosts: sansa.mlt
tags: [ 'dns' ]
roles:
- role: network-interface
network_ether_interfaces:
- device: 'eno1:222'
bootproto: 'static'
address: '90.155.50.222'
netmask: '255.255.255.240'
gateway: '90.155.50.209'
- device: 'eno1:222v6'
netproto: 'inet6'
bootproto: 'static'
address: '2001:8b0:84c:717d:90:155:50:222'
netmask: '64'
gateway: '2001:8b0:84c:717d::1'
- device: 'eno1:1918b'
bootproto: 'static'
address: '10.1.4.222'
netmask: '255.255.255.0'
gateway: '10.1.4.1'
- role: nameserver
nameserver_type: "slave"
nameserver_query_source: '90.155.50.222'
nameserver_query_source_v6: '2001:8b0:84c:717d:90:155:50:222'
tags: [ 'nameserver-role', 'ns5.tfb.net' ]