Project

General

Profile

DNS » History » Version 3

Denis 'GNUtoo' Carikli, 04/13/2020 05:33 PM

1 1 Denis 'GNUtoo' Carikli
h1. DNS
2
3 2 Denis 'GNUtoo' Carikli
In the Gandi web interface we assigned the NS and SOA to the git.replicant.vm.
4
5
See the "Infrastructure page on the main Replicant wiki":https://redmine.replicant.us/projects/replicant/wiki/Infrastructure for who has access to it.
6
7
The DNS zones are hosted on the git.replicant.us vm by bind.
8
9
The Replicant zone is at /etc/bind/db.replicant.us and we don't have a reverse ip zone.
10 3 Denis 'GNUtoo' Carikli
11
12
h2. Quick HOWTO
13
14
First edit the zone file:
15
<pre>
16
# vim /etc/bind/db.replicant.us
17
</pre>
18
19
Then do the modifications you have to do
20
21
Then there is a line with a serial like that:
22
<pre>
23
1590000005      ; serial
24
</pre>
25
26
Increase that serial by at least 1, like here you can make it 1590000005 or 1600000000 but make sure to never go backward (I don't know why, however every documentation that I ready say that it could cause issues).
27
28
Then make bind take into account the modifications:
29
<pre>
30
systemctl reload bind9
31
</pre>
32
33
And wait for the information to propagate.