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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
|
# File '../../src/include/dns-server/helps.rb', line 12
def initialize_dns_server_helps(include_target)
textdomain "dns-server"
Yast.import "DnsServer"
@HELPS = {
"read" => _(
"<p><b><big>Initializing DNS Server Configuration</big></b><br>\nPlease wait...<br></p>"
) +
_(
"<p><b><big>Aborting Initialization</big></b><br>\nSafely abort the configuration utility by pressing <b>Abort</b> now.</p>"
),
"write" => _(
"<p><b><big>Saving DNS Server Configuration</big></b><br>\nPlease wait...<br></p>"
) +
_(
"<p><b><big>Aborting Saving</big></b><br>\n" +
"Abort the save procedure by pressing <b>Abort</b>.\n" +
"An additional dialog informs you whether it is safe to do so.</p>"
),
"start" => _(
"<p><b><big>Start DNS Server</big></b><br>\n" +
"To run the DNS server every time your computer is started, set\n" +
"<b>Start DNS Server</b>.</p>"
),
"chroot" => _(
"<p><b><big>Chroot Jail</big></b><br>\n" +
"To run the DNS server in chroot jail, set\n" +
"<b>Run DNS Server in Chroot Jail</b>. Starting any daemon in a chroot jail\n" +
"is more secure and strongly recommended.</p>"
),
"zones" => _(
"<p><b><big>Editing DNS Zones</big></b><br>\n" +
"To edit settings of a DNS zone, choose the appropriate\n" +
"entry of the table and click <B>Edit</B>.\n" +
"To add a new DNS zone, use <B>Add</B>. To remove\n" +
"a configured DNS zone, select it and click <B>Delete</B>.</P>"
),
"adv_mbutton" => _(
"<p><b><big>Advanced Functions</big></b><br>\n" +
"To edit global options,\n" +
"adjust firewall settings,\n" +
"manage the TSIG keys for dynamic updates of the zones,\n" +
"or display the log of the DNS server,\n" +
"use <b>Advanced</b>.</p>"
),
"zone_name" => _(
"<p><b><big>Zone Name</big></b><br>\nEnter the name of the zone (domain) in <b>Zone Name</b>.</p>"
),
"allow_ddns" => _(
"<p><b><big>Dynamic DNS Zone Updates</big></b><br>\n" +
"The zone can be updated automatically, usually because of dynamically\n" +
"assigned IP addresses by DHCP server. To allow DDNS updates, set\n" +
"<b>Allow Dynamic Updates</b> and the <b>TSIG Key</b>\n" +
"to use for authentication. The key must be the same for\n" +
"both DHCP and DNS servers.</p>"
),
"master_zone" => _(
"<p><b><big>Editing a DNS Zone</big></b><br>\n" +
"To edit the zone settings, choose the appropriate\n" +
"entry of the table then click <b>Edit</b>.</p>"
) +
_(
"<p>To add a new record to the zone, click <b>Add</b>. To remove\na record, select it and click <b>Delete</b>.</p>"
),
"soa_button" => _(
"<p><b><big>SOA Record</big></b><br>\n" +
"To edit the SOA (Start of Authority) record of the zone, click\n" +
"<b>Edit SOA</b>.</p>"
),
"zone_masters" => _(
"<p><b><big>Master Servers</big></b><br>\n" +
"Set the IP addresses of the master name servers for this zone. Use <b>Add</b>\n" +
"to add a new master name server. Select an existing one then click <b>Delete</b>\n" +
"to remove an existing one.</p>"
),
"zone_type" => _(
"<p><b><big>Zone Type</big></b><br>\n" +
"To make this name server the primary source of the data of the zone,\n" +
"select <b>Master</b>. To make it the secondary name server, select <b>Slave</b>\n" +
"or <b>Stub</b>, so the data of the zone will be mirrored from the master\n" +
"server.</p>"
),
"zone_direction" => _(
"<p><b><big>Zone Direction</big></b><br>\n" +
"DNS is used both for translating from domain names to IP addresses and back.\n" +
"Select if this zone will be used to translate from domain names to IP\n" +
"addresses (<b>Forward</b>) or from IP addresses to domain names\n" +
"(<b>Reverse</b>).</p>\n"
),
"iface_classes" => _(
"<p><b><big>Interface Classes</big></b><br>\n" +
"Select which interface classes should have access to the DNS server. The\n" +
"interface classes are defined in the firewall configuration component.</p>\n"
),
"adapt_firewall" => _(
"<p><b><big>Adapting Firewall Settings</big></b><br>\n" +
"To adapt the firewall settings so that the DNS server can be accessed\n" +
"via all network interfaces to which it listens, check\n" +
"<b>Adapt Firewall Settings</b>.</p>\n"
),
"soa" => _(
"<p><b><big>SOA Record Configuration</big></b><br>\nSet the entries of the SOA record.</p>"
) +
_(
"<p><b>$TTL</b> specifies the time to live for all records in the\nzone that do not have an explicit TTL.</p>"
) +
_(
"<p><b>Primary Source</b> must contain the fully qualified domain name\nof the primary name server.</p>"
) +
_(
"<p><b>Administrator's Mail</b> must contain the e-mail address of\nthe administrator responsible for the zone.</p>\n"
) +
_(
"<p><b>Serial</b> number is used for determining if the zone has changed on\n" +
"the master servers (so that slave servers do not always need to synchronize the\n" +
"entire zone).</p>\n"
) +
_(
"<p><b>Refresh</b> sets how often the zone should be synchronized from\nmaster name server to slave name servers.</p>"
) +
_(
"<p><b>Retry</b> sets how often slave servers try to synchronize\nthe zone from the master server if synchronization fails.</p>"
) +
_(
"<p><b>Expiry</b> means the period after which the zone expires on slave\n" +
"servers and slave servers stop answering replies until it is synchronized.\n" +
"</p>"
) +
_(
"<p><b>Minimum</b> sets for how long the slave servers should cache\nnegative answers (name resolution failed).</p>"
),
"ddns_keys" => _(
"<p><b><big>TSIG Key Management</big></b><br>\n" +
"Define TSIG keys used for dynamic zone updates.\n" +
"To add a new TSIG key, use the \n" +
"<b>File Name</b> text field or the <b>Browse</b> button then click <b>Add</b>.\n" +
"To delete an existing TSIG key, select it in the list and click <b>Delete</b>.\n" +
"</p>"
),
"start_up" => _(
"<p><b><big>Booting</big></b><br>\n" +
"To start the DNS server every time your computer is booted, set\n" +
"<b>On</b>. Otherwise set <b>Off</b>.</p> "
) +
(DnsServer.ExpertUI ?
_(
"<p><b><big>LDAP Support</big></b><br>\n" +
"To store the DNS zones in LDAP instead of native configuration files,\n" +
"set <b>LDAP Support Active</b>.</p>"
) :
"") +
_(
"<p><b><big>Switch On or Off</big></b><br>\n" +
"To start or stop the DNS server immediately, use \n" +
"<b>Start DNS Server Now</b> or\n" +
"<b>Stop DNS Server Now</b>.</p>\n"
),
"forwarders" => _(
"<p><b><big>Forwarders</big></b><br>\n" +
"Forwarders are DNS servers to which your DNS server should send queries\n" +
"it cannot answer.</p>\n"
) +
_(
"<p>To add a new forwarder, set its <b>IP Address</b> and click <b>Add</b>.\nTo delete a configured forwarder, select it and click <b>Delete</b>.</p>"
),
"basic_options" => _(
"<p><b><big>Edit DNS Server Options</big></b><br>\nUse this dialog to edit options of the DNS server.</p>"
) +
_(
"<p>To add new options, select the <b>Option</b>,\n" +
"enter its <b>Value</b>, and click <b>Add</b>.</p>\n" +
"<p>To modify a configured option, select it in the table,\n" +
"change the <b>Value</b>, and click <b>Change</b>.</p>\n"
) +
_("<p>To remove an option, select it and click <b>Delete</b>.</p>"),
"logging" => _(
"<p><b><big>Logging</big></b><br>\nUse this dialog to define various options of the DNS server logging.</p>"
) +
_(
"<p>\n" +
"Select <b>Log to System Log</b> to save DNS server log messages to the system log. \n" +
"To save the DNS server log messages to a separate file, select \n" +
"<b>Log to File</b> and set the <b>Filename</b> to which to save the log and \n" +
"the <b>Maximum Size</b> of the log file.\n" +
"The DNS server automatically rotates the log files. Use <b>Maximum Versions</b>\n" +
"to specify how many log files should be saved.</p>\n"
) +
_(
"<p>In <b>Additional Logging</b>,\n" +
"set which actions should be logged. Common actions are always logged.\n" +
"<b>Log All DNS Queries</b> logs all queries from clients to the DNS server.\n" +
"<b>Log Zone Updates</b> logs when DNS has been updated.\n" +
"<b>Log Zone Transfers</b> logs when zone is completely transferred to the \n" +
"secondary\n" +
"name server.</p>\n"
),
"acls" => _(
"<p><b><big>ACLs</big></b><br>\n" +
"In this dialog, define access control lists to control\n" +
"access to zones.</p>\n"
) +
_(
"<p>To add a new ACL entry, just enter the option's <b>Name</b>\n" +
"and <b>Value</b> then click <b>Add</b>. To remove an \n" +
"ACL entry, select it and click <b>Delete</b>.</p>\n"
),
"keys" => _(
"<p><b><big>TSIG Keys</big></b><br>\n" +
"TSIG keys are used for authentication when remotely\n" +
"changing the configuration of the DNS server. This is needed\n" +
"for the dynamic updates of DNS zones (DDNS).</p>\n"
) +
_(
"<p>To add an already created key, set the <b>Filename</b>\n" +
"(or use the <b>Browse</b> button to select it) and click <b>Add</b>.\n" +
"To generate a new key, enter the <b>Filename</b> and the <b>Key ID</b>\n" +
"then click <b>Generate</b>. The new key will be generated and also added.</p>\n"
) +
_(
"<p>To remove an existing key, select it and\nclick <b>Delete</b>.</p>"
),
"zones" => Ops.add(
Ops.add(
_(
"<p><b><big>DNS Zones</big></b><br>\nUse this dialog to manage the DNS zones.</p>\n"
) +
_(
"<p>To add a new zone, enter its <b>Zone Name</b>, select the <b>Zone Type</b>,\nand click <b>Add</b>.</p>\n"
) +
_(
"<p>To add a new IPv4 reverse zone, enter a part of the reverse IPv4 address followed by\n" +
"<tt>.in-addr.arpa</tt> as its <b>Zone Name</b> (for example, zone name\n" +
"<tt>0.168.192.in-addr.arpa</tt> for network <tt>192.168.0.0/24</tt>), select\n" +
"the <b>Zone Type</b>, and click <b>Add</b>.</p>\n"
),
Builtins.sformat(
_(
"<p>To add a new IPv6 reverse zone, enter a part of the reverse IPv6 address followed by\n" +
"<tt>%1</tt> as its <b>Zone Name</b>. Several formats for entering the zone name are\n" +
"supported: Standard form: <tt>%2</tt>;\n" +
"Forward form: <tt>%3</tt>;\n" +
"Forward form without netmask bits: <tt>%4</tt>\n" +
"(by default <tt>64</tt> netmask bits are used).</p>\n"
),
".ip6.arpa.",
"4.5.0.0.0.0.0.0.8.b.d.0.1.0.0.2.ip6.arpa.",
"2001:db8:0:54::/64",
"2001:db8:0:54::"
)
),
_(
"<p>To modify settings for a zone, such as zone transport and name and\n" +
"mail servers, select it, and click <b>Edit</b>.\n" +
"To remove a configured zone, select it and click <b>Delete</b>.</p>\n"
)
),
"zone_editor_basics" => (DnsServer.ExpertUI ?
_(
"<p><b><big>DDNS and Zone Transport</big></b><br>\n" +
"Use this dialog to change dynamic DNS settings of the zone and control access\n" +
"to the zone.</p>\n"
) :
"") +
(DnsServer.ExpertUI ?
_(
"<p>\n" +
"To allow dynamic updates of the zone, set <b>Allow Dynamic Updates</b>\n" +
"and select the <b>TSIG Key</b>. At least one TSIG key must be defined\n" +
"before the zone can be updated dynamically.</p>\n"
) :
"") +
_(
"<p>\n" +
"To allow transports of the zone, set <b>Enable Zone Transport</b>\n" +
"and select the <b>ACLs</b> to check when a remote host\n" +
"attempts to transfer the zone. At least one ACL must be defined\n" +
"to allow zone transports.</p>"
) +
_(
"<p>\n" +
"Reverse zone records can be generated from another master zone.\n" +
"Select the <b>Automatically Generate Records From</b>\n" +
"check-box and choose the zone to generate the records from.</p>\n"
) +
_(
"<p>\n" +
"If this is not a reverse zone, you can see which zones are generated\n" +
"from the current on in the <b>Connected Reverse Zones</b> field.</p>"
),
"zone_editor_nameservers" => _(
"<p><b><big>NS Records</big></b><br>\n" +
"To add a new name server, enter the name server address and click <b>Add</b>.\n" +
"To remove one of the listed name servers, select it and click\n" +
"<b>Delete</b>.</p>\n"
),
"zone_editor_mailservers" => _(
"<p><b><big>MX Records</big></b><br>\n" +
"To add a new mail server, enter the <b>Address</b> and <b>Priority</b>\n" +
"and click <b>Add</b>.\n" +
"To remove one of the listed mail servers, select it and click\n" +
"<b>Delete</b>.</p>\n"
),
"zone_editor_soa" => _(
"<p><b><big>SOA Record Configuration</big></b><br>\nSet the entries of the SOA record.</p>"
) +
_(
"<p><b>Serial</b> is the number used for determining if the zone has \n" +
"changed on\n" +
"the master servers (then slave servers do not always need to synchronize the\n" +
"entire zone).</p>\n"
) +
_(
"<p><b>TTL</b> specifies the time to live for all records in the\nzone that do not have an explicit TTL.</p>"
) +
_(
"<p><b>Refresh</b> sets how often the zone should be synchronized from\nmaster name server to slave name servers.</p>"
) +
_(
"<p><b>Retry</b> sets how often slave servers try to synchronize\nthe zone from the master server if synchronization fails.</p>"
) +
_(
"<p><b>Expiration</b> means the period after which the zone expires on slave\n" +
"servers and slave servers stop answering replies until it is synchronized.\n" +
"</p>"
) +
_(
"<p><b>Minimum</b> sets for how long the slave servers should cache\nnegative answers (name resolution failed).</p>"
),
"zone_editor_records" => _(
"<p><b><big>Records</big></b><br>\n" +
"In this dialog, edit the resource records of the zone. To add new resource\n" +
"records, set the <b>Record Key</b>, <b>Type</b>, and <b>Value</b> then\n" +
"click <b>Add</b>.</p>"
) +
_(
"<p>To change an existing record, select it, modify the desired entries,\n" +
"and click <b>Change</b>. To delete a record, select it and click\n" +
"<b>Delete</b>.</p>"
) +
_(
"<p>\nEach type of record has its own syntax defined in the RFC.</p>\n"
),
"zone_editor_records_forward" => _(
"<p><b>A: Domain Name Translation</b>:\n" +
"<b>Record Key</b> is a hostname without domain or a fully qualified \n" +
"hostname followed by a dot.\n" +
" <b>Value</b> is an IP address.</p>"
) +
_(
"<p><b>CNAME: Alias for Domain Name</b>:\n" +
"<b>Record Key</b> is a hostname relative to the current zone or a fully\n" +
"qualified hostname followed by a dot.\n" +
"<b>Value</b> is a hostname relative to the current zone or a fully\n" +
"qualified hostname followed by a dot. It must be represented by\n" +
"an A record.</p>\n"
) +
_(
"<p><b>NS: Name Server</b>:\n" +
"<b>Record Key</b> is a zone name relative to the current zone or an absolute\n" +
"domain name followed by a dot.\n" +
"<b>Value</b> is a hostname relative to the current zone or fully qualified\n" +
"hostname followed by a dot. It must be represented by an A record.</p>\n"
) +
_(
"<p><b>MX: Mail Relay</b>:\n" +
"<b>Record Key</b> is a hostname or zone name relative to the current zone\n" +
"or an absolute hostname or zone name followed by a dot.\n" +
"<b>Value</b> is a hostname relative to the current zone or fully qualified\n" +
"hostname followed by a dot. It must be represented by an A record.</p>\n"
),
"zone_editor_records_reverse" => _(
"<p><b>PTR: Reverse Translation</b>:\n" +
"<b>Record Key</b> is a full reverse zone name (derived from the IP address)\n" +
"followed by a dot\n" +
"(such as <tt>1.0.168.192.in-addr.arpa.</tt> for IP address <tt>192.168.0.1</tt>)\n" +
" or a part of reverse zone name relative to the current zone\n" +
"(such as <tt>1</tt> for IP address <tt>192.168.0.1</tt> in zone\n" +
"<tt>0.168.192.in-addr.arpa.</tt>).\n" +
"<b>Value</b> is a fully qualified hostname followed by a dot.</p>\n"
) +
_(
"<p><b>NS: Name Server</b>:\n" +
"<b>Record Key</b> is a zone name relative to the current zone or an absolute\n" +
"domain name followed by a dot.\n" +
"<b>Value</b> is a hostname relative to the current zone or fully qualified\n" +
"hostname followed by a dot. It must be represented by an A record.</p>\n"
),
"installwizard_step3" => _(
"<p><b><big>Finishing the Configuration</big></b></p>\n<p>Check the entered settings before finishing the configuration.</p> \n"
) +
_(
"<p>Select <b>Open Port in Firewall</b> to adapt the\nSuSEfirewall2 settings to allow all connections to your DNS server.</p>"
) +
_(
"<p>\n" +
"To start the DNS server every time your computer is booted, set the \n" +
"start-up behavior to <b>On</b>. Otherwise set it to <b>Off</b>.</p> \n"
) +
(DnsServer.ExpertUI ?
_(
"<p>\n" +
"To store the DNS zones in LDAP instead of native configuration files,\n" +
"set <b>LDAP Support Active</b>.</p>"
) :
"") +
_(
"<p>\n" +
"To enter the expert mode of the DNS server configuration, click\n" +
"<b>DNS Server Expert Configuration</b>.</p>"
),
"slave_zone" => _(
"<p><big><b>Slave DNS Zone</b></big><br>\n" +
"Each slave zone must have the master name server defined. Use\n" +
"<b>Master DNS Server IP</b> to define the master name server.</p>"
) +
_(
"<p><big><b>Zone Transport</b></big><br>\n" +
"To allow transports of the zone, set <b>Enable Zone Transport</b>\n" +
"and select the <b>ACLs</b> to check when a remote host\n" +
"attempts to transfer the zone. At least one ACL must be defined\n" +
"to allow zone transports.</p>"
),
"forward_zone" => _(
"<p><big><b>Forward DNS Zone</b></big><br>\n" +
"This type of DNS zone only forwards DNS queries to forwarders\n" +
"defined in it.</p>"
) +
_(
"<p>If there are no forwarders defined, all DNS queries\n" +
"for the respective zone are denied, because there is no DNS\n" +
"server to which that query should be forwarded.</p>"
)
}
end
|