1 | DNS Exercise - Delegation |
---|
2 | ------------------------- |
---|
3 | |
---|
4 | In this exercise, we will create a new TLD in our root. |
---|
5 | for example: MYTLD |
---|
6 | |
---|
7 | You will create a master nameservice on your own machine, and someone else |
---|
8 | will provide slave service. Then you will ask the administrator for the |
---|
9 | domain above you (the root) to delegate your domain to you. |
---|
10 | |
---|
11 | Note: the following should be done as the "root" superuser. |
---|
12 | |
---|
13 | Firstly, note that your hostname is configured correctly |
---|
14 | on your machine. Check that it is configured correctly by |
---|
15 | using the 'hostname' command - e.g. on auth1.grpXX.ws.nsrc.org, if you type: |
---|
16 | |
---|
17 | # hostname |
---|
18 | |
---|
19 | You should see: |
---|
20 | |
---|
21 | auth1.grpXX.ws.nsrc.org |
---|
22 | |
---|
23 | If not, then configure your server with its name: e.g. for |
---|
24 | auth1.grp25.ws.nsrc.org, type: |
---|
25 | |
---|
26 | |
---|
27 | # hostname auth1.grp25.ws.nsrc.org |
---|
28 | |
---|
29 | Remember to replace "grpXX" with the the proper group number! |
---|
30 | |
---|
31 | Edit the file /etc/rc.conf (using "vi" or "ee", i.e.: ee /etc/rc.conf), |
---|
32 | and update the "hostname": |
---|
33 | |
---|
34 | hostname="auth1.grpXX.ws.nsrc.org" |
---|
35 | |
---|
36 | In the file /etc/hosts, you should see a line: |
---|
37 | |
---|
38 | 10.10.X.1 auth1.grpXX auth1.grpXX.ws.nsrc.org |
---|
39 | |
---|
40 | |
---|
41 | Exercise |
---|
42 | -------- |
---|
43 | |
---|
44 | * Choose a new domain, write it down somewhere |
---|
45 | |
---|
46 | i.e.: "MYTLD" or "EARTH" - whatever you feel like. |
---|
47 | |
---|
48 | (Do NOT choose any of the PC names, e.g. `auth1.grpXX`, as your subdomain) |
---|
49 | |
---|
50 | This could for example be the name of your country code, country name, |
---|
51 | company name, etc... but REMEMBER that someone might pick the same name! |
---|
52 | First come, first serve. |
---|
53 | |
---|
54 | * Find someone who will agree to be slave for your domain. Please find someone |
---|
55 | across the room from you (not at your table) (Remember RFC2182: secondaries |
---|
56 | must be on remote networks but here we work on a flat network). You can have |
---|
57 | more than one slave if you wish. |
---|
58 | |
---|
59 | * Create your zone file in `/etc/namedb/master/MYTLD` |
---|
60 | (where MYTLD is your chosen domain) -- you can pretty much |
---|
61 | "copy and paste" the section below -- but remember to update |
---|
62 | the XXX with your IP: |
---|
63 | |
---|
64 | *** Remember, you will need to become root to create this file, |
---|
65 | *** so, e.g. |
---|
66 | *** |
---|
67 | *** $ cd /etc/namedb/master |
---|
68 | *** $ sudo vi MYTLD |
---|
69 | *** |
---|
70 | *** (feel free to use another editor instead of vi, e.g. joe, ee) |
---|
71 | |
---|
72 | - - - - - - - - - - - - - cut below - - - - - - - - - - - - |
---|
73 | |
---|
74 | $TTL 2m |
---|
75 | @ IN SOA auth1.grpXX.ws.nsrc.org. your@email.address. ( |
---|
76 | 2012022301 ; Serial |
---|
77 | 10m ; Refresh |
---|
78 | 5m ; Retry |
---|
79 | 4w ; Expire |
---|
80 | 2m ) ; Negative |
---|
81 | |
---|
82 | IN NS auth1.grpXXX.ws.nsrc.org. ; master |
---|
83 | IN NS auth1.grpYYY.ws.nsrc.org. ; slave |
---|
84 | |
---|
85 | www IN A 10.10.XXX.1 ; your own IP |
---|
86 | |
---|
87 | - - - - - - - - - - - - - cut above - - - - - - - - - - - - |
---|
88 | |
---|
89 | Replace `your@email.address.` with your home E-mail address. |
---|
90 | |
---|
91 | XXX and YYY are the IP of your group, and your slave's, respectively. |
---|
92 | |
---|
93 | We have chosen purposely low values for TTL, refresh, and retry to make |
---|
94 | it easier to fix problems in the classroom. For a production domain you |
---|
95 | might use higher values. |
---|
96 | |
---|
97 | * Edit `/etc/namedb/named.conf` and do the following: |
---|
98 | |
---|
99 | *** Remember, you will need to become root to edit this file, |
---|
100 | *** so, e.g. |
---|
101 | *** |
---|
102 | *** $ cd /etc/named |
---|
103 | *** $ sudo vi named.conf |
---|
104 | *** |
---|
105 | *** (feel free to use another editor instead of vi, e.g. joe, ee) |
---|
106 | |
---|
107 | - If it is still there, REMOVE the following line: |
---|
108 | |
---|
109 | listen-on { 127.0.0.1; }; |
---|
110 | |
---|
111 | ... and add another line in the options section: |
---|
112 | |
---|
113 | allow-query { any; }; |
---|
114 | |
---|
115 | ... so that your nameserver will now answer queries from the network |
---|
116 | |
---|
117 | - Add a section to configure your machine as master for |
---|
118 | your domain, by adding something like this at the end |
---|
119 | (the bottom) of the file: |
---|
120 | |
---|
121 | zone "MYTLD" { |
---|
122 | type master; |
---|
123 | file "/etc/namedb/master/MYTLD"; |
---|
124 | }; |
---|
125 | |
---|
126 | Pay attention to the ';' and '}' ! |
---|
127 | |
---|
128 | * Check that your config file and zone file are valid: |
---|
129 | |
---|
130 | # named-checkconf |
---|
131 | # named-checkzone MYTLD /etc/namedb/master/MYTLD |
---|
132 | |
---|
133 | * If there are any errors, correct them ! * |
---|
134 | |
---|
135 | * If this is not already done, enable named in your server's configuration, |
---|
136 | by editing the file /etc/rc.conf and adding, if this is not already done: |
---|
137 | |
---|
138 | ** Remember, again, you need to be root to edit this file |
---|
139 | |
---|
140 | named_chrootdir="" |
---|
141 | named_enable="YES" |
---|
142 | |
---|
143 | - Then start/restart named with |
---|
144 | |
---|
145 | # service named restart |
---|
146 | |
---|
147 | Check the result with |
---|
148 | |
---|
149 | # tail /var/log/messages |
---|
150 | |
---|
151 | Verify with dig that MYTLD is now configured on your host: |
---|
152 | |
---|
153 | # dig @10.10.XX.1 MYTLD. NS |
---|
154 | |
---|
155 | Where "XX" is the address of your machine. |
---|
156 | |
---|
157 | You can also check the nameserver status using rndc: |
---|
158 | |
---|
159 | # rndc status |
---|
160 | |
---|
161 | - If there are any errors, correct them. Some configuration errors can |
---|
162 | cause the daemon to die completely, in which case you may have to |
---|
163 | start it again: |
---|
164 | |
---|
165 | # /etc/rc.d/named restart |
---|
166 | |
---|
167 | * Assist your slaves to configure themselves as slave for your domain, and |
---|
168 | configure yourself as a slave if asked to do so by another table. |
---|
169 | |
---|
170 | Here is most of what you need to add to the end of the named.conf file: |
---|
171 | |
---|
172 | zone "MYTLD" { |
---|
173 | type slave; |
---|
174 | masters { 10.10.XXX.1; }; |
---|
175 | file "/etc/namedb/slave/MYTLD"; |
---|
176 | }; |
---|
177 | |
---|
178 | ... where XXX is the group where the master is located. |
---|
179 | |
---|
180 | If you have changed your `named.conf` so that you are a slave for |
---|
181 | someone else, make sure that there are no errors in `/var/log/messages` after |
---|
182 | you restart your nameserver. |
---|
183 | |
---|
184 | You will need a slave directory with proper permissions and ownership where |
---|
185 | bind can write the zone file received from the master. |
---|
186 | |
---|
187 | * Check that you and your slaves are giving authoritative answers for |
---|
188 | your domain: |
---|
189 | |
---|
190 | # dig +norec @10.10.XXX.1 MYTLD. SOA |
---|
191 | # dig +norec @10.10.YYY.1 MYTLD. SOA |
---|
192 | |
---|
193 | Check that you get an AA (authoritative answer) from both, and that |
---|
194 | the serial numbers match. |
---|
195 | |
---|
196 | * You will not get delegation until the instructor has checked: |
---|
197 | |
---|
198 | - Your nameservers are all authoritative for your domain |
---|
199 | - They all have the same SOA serial number |
---|
200 | - The NS records within the zone match the list of servers you are |
---|
201 | requesting delegation for |
---|
202 | - The slave(s) are across the room from you :) |
---|
203 | |
---|
204 | => This is called policy! |
---|
205 | |
---|
206 | * Delegate your zone by logging into the RZM classroom web site. Use MYTLD |
---|
207 | as username and password "nsrcws". Click "Edit" under the nameserver |
---|
208 | record section and procceed to cut-and-paste your nameserver names |
---|
209 | (auth1.grpXX.ws.nsrc.org auth1.grpYY.ws.nsrc.org) and coresponding |
---|
210 | IP addresses into the proper fields. For each nameserver, click "Add |
---|
211 | Record" after entering data. After reviewing the data for both |
---|
212 | nameservers click "Commit". The updates will show up in the root |
---|
213 | in a few seconds. |
---|
214 | |
---|
215 | * Once you have delegation, try to resolve www.MYTLD: |
---|
216 | |
---|
217 | - On your own machine |
---|
218 | - On someone else's machine (who is not slave for you): |
---|
219 | |
---|
220 | # dig @10.10.XXX.1 www.MYTLD (where MYTLD is your domain) |
---|
221 | |
---|
222 | * Add a new resource record to your zone file. Remember to update the |
---|
223 | serial number. Check that your slaves have updated. Try resolving this |
---|
224 | new name. |
---|