-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path04-dns.html
104 lines (94 loc) · 2.9 KB
/
04-dns.html
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
100
101
102
103
104
<section id="dns">
<section>
<h2>DNS</h2>
<h3>Domain Name Server</h3>
</section>
<section>
<h3>DNS</h3>
<p>Système permettant de traduire un nom de domaine en adresse IP.</p>
<p>
<a href="http://www.digital-campus.fr">www.digital-campus.fr</a> → 52.174.188.136
</p>
</section>
<section>
<h3>Hiérarchie DNS</h3>
<img src="assets/images/dns-hierarchy.png" alt="Hiérarchie DNS">
</section>
<section>
<h3>Fichier hosts</h3>
<p>Utilisé avec ARPANET</p>
<p>Exemples</p>
<table>
<thead>
<tr>
<th>IP</th>
<th>DNS</th>
</tr>
</thead>
<tbody>
<tr>
<td>127.0.0.1</td>
<td>localhost</td>
</tr>
<tr>
<td>195.25.111.223</td>
<td>dc.fr</td>
</tr>
</tbody>
</table>
</section>
<section>
<h3>Résolution DNS</h3>
<img src="assets/images/dns-resolution.png" alt="Résolution DNS">
</section>
<section>
<h3>Propagation DNS</h3>
<img src="assets/images/dns-propagation.png" alt="Propagation DNS">
</section>
<section>
<h3>Registrar</h3>
<div class="container">
<div class="col">
<img src="assets/images/orange-business.png" alt="Orange Business">
</div>
<div class="col">
<img src="assets/images/ovh.png" alt="OVH">
</div>
<div class="col">
<img src="assets/images/1&1.png" alt="1&1">
</div>
</div>
<div class="container">
<div class="col">
<img src="assets/images/gandi.png" alt="Gandi">
</div>
<div class="col">
<img src="assets/images/godaddy.png" alt="Go Daddy">
</div>
</div>
</section>
<section>
<h3>Enregistrements DNS</h3>
<ul>
<li>A : Lien entre un nom d’hôte et une adresse IP (AAAA utilisé pour IP v6)</li>
<li>CNAME : Alias d’un nom d’hôte vers un autre</li>
<li>MX : Serveur mail</li>
<li>NS : Serveur DNS</li>
</ul>
<p>Accepte les wildcards</p>
</section>
<section>
<h3>Migration d'un nom de domaine</h3>
<div class="container" style="align-items: center;">
<div class="col">
<img src="assets/images/orange-business.png" alt="Orange Business">
</div>
<div class="col" style="font-size: 4em">→</div>
<div class="col">
<img src="assets/images/ovh.png" alt="OVH">
</div>
</div>
<p><a href="http://who.is">http://who.is</a></p>
<p>authcode</p>
</section>
</section>