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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head xmlns="http://www.w3.org/1999/xhtml">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title xmlns="">Riferimenti</title>
<link rel="stylesheet" href="../../libs/ubuntu-book.css" type="text/css" />
<link rel="home" href="index.html" title="Guida a Ubuntu Server" />
<link rel="up" href="dns.html" title="Capitolo 7. DNS (Domain Name Service)" />
<link rel="prev" href="dns-troubleshooting.html" title="Risoluzione problemi" />
<link rel="next" href="security.html" title="Capitolo 8. Sicurezza" />
<link rel="copyright" href="legal.html" title="Riconoscimenti e licenza" />
</head>
<link href="http://help.ubuntu-it.org/favicon.ico" rel="shortcut icon" />
<body>
<div id="page-border-left-repeat">
<div id="page-border-right-repeat">
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-8147493-2");
pageTracker._trackPageview();
} catch(err) {}</script>
<div id="page-border-top-repeat">
<div id="header">
<div id="header-navigation">
<ul>
<li>
<a href="http://www.ubuntu-it.org">Web</a>
</li>
<li>
<a href="http://wiki.ubuntu-it.org">Documentazione</a>
</li>
<li>
<a href="http://forum.ubuntu-it.org">Forum</a>
</li>
<li>
<a href="http://planet.ubuntu-it.org">Planet</a>
</li>
</ul>
</div>
<form action="http://help.ubuntu-it.org/11.04/ubuntu/search.php" id="cse-search-box">
<div>
<input type="text" name="s" size="28" title="search" />
<input type="submit" value="Cerca" title="search" />
</div>
</form>
</div>
</div>
<div>
<div id="bodyarea">
<div class="pagelocation"><a href="http://help.ubuntu-it.org/">Documentazione di Ubuntu</a> > <a href="http://help.ubuntu-it.org/11.04/ubuntu/index.html">Ubuntu 11.04</a> > <span class="breadcrumb-link"><a href="index.html">Guida a Ubuntu Server</a></span> > <span class="breadcrumb-link"><a href="dns.html">DNS (Domain Name Service)</a></span> > <span class="breadcrumb-node">Riferimenti</span></div>
<div xmlns="http://www.w3.org/1999/xhtml" class="sect1" title="Riferimenti">
<div class="titlepage">
<div>
<div>
<h2 class="title" style="clear: both"><a id="dns-references"></a>Riferimenti</h2>
</div>
</div>
</div>
<div class="sect2" title="Tipi di record comuni">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a id="dns-record-types"></a>Tipi di record comuni</h3>
</div>
</div>
</div>
<p>Questa sezione descrive i più comuni tipi di record DNS.</p>
<div class="itemizedlist">
<ul class="itemizedlist" type="disc">
<li class="listitem">
<p>Record <span class="emphasis"><em>A</em></span>: mappa un indirizzo IP con un nome host.</p>
<pre class="programlisting">
www IN A 192.168.1.12
</pre>
</li>
<li class="listitem">
<p>Record <span class="emphasis"><em>CNAME</em></span>: usato per creare un alias di un record "A" esistente. Non è possibile creare un record CNAME che punti a un altro record CNAME.</p>
<pre class="programlisting">
web IN CNAME www
</pre>
</li>
<li class="listitem">
<p>Record <span class="emphasis"><em>MX</em></span>: usato per definire dove dovrebbero essere inviate le email. Deve puntare a un record A, non a uno CNAME.</p>
<pre class="programlisting">
IN MX 1 mail.example.com.
mail IN A 192.168.1.13
</pre>
</li>
<li class="listitem">
<p>Record <span class="emphasis"><em>NS</em></span>: usato per definire quali server dispongono di copie di una zona. Deve puntare a un record A, non a un CNAME. Qui vengono definiti i server primario e secondario.</p>
<pre class="programlisting">
IN NS ns.example.com.
IN NS ns2.example.com.
ns IN A 192.168.1.10
ns2 IN A 192.168.1.11
</pre>
</li>
</ul>
</div>
</div>
<div class="sect2" title="Ulteriori informazioni">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a id="dns-more-info"></a>Ulteriori informazioni</h3>
</div>
</div>
</div>
<div class="itemizedlist">
<ul class="itemizedlist" type="disc">
<li class="listitem">
<p>Il <a class="ulink" href="http://www.tldp.org/HOWTO/DNS-HOWTO.html" target="_top">DNS HOWTO</a> dispone di maggiori informazioni sulla configurazione di BIND9.</p>
</li>
<li class="listitem">
<p>Per un approfondimento di <span class="emphasis"><em>DNS</em></span> e <span class="application"><strong>BIND9</strong></span>, consultare <a class="ulink" href="http://www.bind9.net/" target="_top">Bind9.net</a>.</p>
</li>
<li class="listitem">
<p><a class="ulink" href="http://www.oreilly.com/catalog/dns5/index.html" target="_top">DNS and BIND</a> è un libro molto comune giunto ormai alla quinta edizione.</p>
</li>
<li class="listitem">
<p>Un ottimo posto per richiedere assistenza riguardo <span class="application"><strong>BIND9</strong></span>, e per partecipare nella comunità di Ubuntu Server, è il canale IRC <span class="emphasis"><em>#ubuntu-server</em></span> su <a class="ulink" href="http://freenode.net" target="_top">freenode</a>.</p>
</li>
<li class="listitem">
<p>Consultare anche la <a class="ulink" href="https://help.ubuntu.com/community/BIND9ServerHowto" target="_top">documentazione di bind9 online</a>.</p>
</li>
</ul>
</div>
</div>
</div>
<div xmlns="http://www.w3.org/1999/xhtml" class="navfooter">
<hr />
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left"><a accesskey="p" href="dns-troubleshooting.html"><img src="../../libs/navig/prev.png" alt="Indietro" /></a> </td>
<td width="20%" align="center">
<a accesskey="u" href="dns.html">
<img src="../../libs/navig/up.png" alt="Risali" />
</a>
</td>
<td width="40%" align="right"> <a accesskey="n" href="security.html"><img src="../../libs/navig/next.png" alt="Avanti" /></a></td>
</tr>
<tr>
<td width="40%" align="left" valign="top">Risoluzione problemi </td>
<td width="20%" align="center">
<a accesskey="h" href="index.html">
<img src="../../libs/navig/home.png" alt="Partenza" />
</a>
</td>
<td width="40%" align="right" valign="top"> Capitolo 8. Sicurezza</td>
</tr>
</table>
</div>
</div>
</div>
<div id="page-border-bottom-repeat">
<div id="footer">
<div id="copyright">
Ubuntu e Canonical sono marchi registrati da Canonical Ltd.
</div>
</div>
</div>
<div id="page-border-right-top"></div>
<div id="page-border-right-bottom"></div>
</div>
<div id="page-border-left-top"></div>
<div id="page-border-left-bottom"></div>
</div>
<p></p>
</body>
</html>