summaryrefslogtreecommitdiffstats
path: root/server_wizard/server.wiz
blob: 301d31fd45f34714f6c2f33a51f67e89c91c8f9f (plain)
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
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
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
<?xml version="1.0"?>


<Wizard
	name="general"
	libScript="__WIZ_HOME__/common/scripts/functions.sh"
	wizardTitle="Server Wizard"
	imagePosition="top"
	defaultImage="__WIZ_HOME__/server_wizard/images/intranet.png"
	perlModule="__WIZ_HOME__/server_wizard/scripts/Serverconf.pm"
>

	<Variable
		name="hostname"
		comment="The host name of the server"
		shellVariable="wiz_host_name"
		valueIsTranslated="false"
	>
	</Variable>

	<Variable
		name="domainname"
		comment="Domain name, usually derived from the server"
		shellVariable="wiz_domain_name"
		defaultValue="domain"
		valueIsTranslated="false"
	>
	</Variable>

	<Variable
		name="network_address"
		comment="The network address"
		shellVariable="wiz_ip_net"
		valueIsTranslated="false"
	>
	</Variable>

	<Variable
		name="server_address"
		comment="The server IP address"
		shellVariable="wiz_ip_server"
		valueIsTranslated="false"
	>
	</Variable>

	<Variable
		name="net_device"
		comment="The device used to the network connection"
		shellVariable="wiz_device"
		valueIsTranslated="false"
	>
	</Variable>

	<Variable
		name="wiz_extn_device"
		shellVariable="wiz_extn_device"
		valueIsTranslated="false"
	>
	</Variable>

	<Variable
		name="wiz_extn_gateway"
		shellVariable="wiz_extn_gateway"
		valueIsTranslated="false"
	>
	</Variable>

	<Page
		name="Welcome"
		helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-basics.html"
		jumpScript="__WIZ_HOME__/common/scripts/check.sh root"
		executionLevel="NORMAL"
		nextFinish="false"
		canBack="true"
		canCancel="true"
	>

		<Target
			targetName="error_need_root"
			jumpIndex="1"
		>
		</Target>

		<Target
			targetName="Warning"
			jumpIndex="0"
		>
		</Target>

		<Info
			helpText="Basic Network Configuration Wizard"
		>
		</Info>


		<Info
			helpText="This wizard will help you in configuring the basic networking services of your server."
		>
		</Info>

	</Page>

	<Page
		name="Warning"
		helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-basics.html"
		executionLevel="NORMAL"
		nextFinish="false"
		jumpPage="Note"
		canBack="true"
		canCancel="true"
	>

		<Info
			helpText="Warning"
		>
		</Info>


		<Info
			helpText="This wizard will set the basic networking parameters of your server."
		>
		</Info>


		<Info
			helpText="You should not run any other applications while running this wizard and at the end of the wizard you should exit your session and login again."
		>
		</Info>
	</Page>

	<Page
		name="Note"
		helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-basics.html"
		jumpScript="__WIZ_HOME__/server_wizard/scripts/check_config.sh"
		executionLevel="NORMAL"
		nextFinish="false"
		canBack="true"
		canCancel="true"
	>

		<Info
			helpText="Note about networking"
		>
		</Info>


		<Info
			helpText="In regards to these wizards, your computer is seen as a server managing his own local network (C class network)."
		>
		</Info>

		<Info
			helpText="So, it's very probable that domain name and IP adresses for this local network are DIFFERENT from the server \qexternal\q connection."
		>
		</Info>

		<Info
			helpText="External connection is a network from which the computer is client (Internet or upstream network), connected using another network card or a modem."
		>
		</Info>
	</Page>

	<Page
		name="load_hostname_value"
		helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-basics.html"
		jumpPage="ask_hostname"
		executionLevel="DEBUG"
		nextFinish="false"
		canBack="true"
		canCancel="true"
	>

		<Freetext
			name="freetext"
			variableName="hostname"
			fillfunc="get_hostname"
			editable="true"
		>
		</Freetext>
	</Page>

	<Page
		name="ask_hostname"
		helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-basics.html"
		func="check_domain"
		executionLevel="NORMAL"
		nextFinish="false"
		canBack="true"
		canCancel="true"
	>

		<Target
			targetName="error_in_hostname"
			jumpIndex="1"
		>
		</Target>

		<Target
			targetName="choose_net_device"
			jumpIndex="10"
		>
		</Target>

		<Info
			helpText="Host Name"
		>
		</Info>


		<Info
			helpText="The hostname is the name under which your server will be known from the other workstations in your network and maybe on the Internet (depending of your upstream configuration)."
		>
		</Info>


		<Freetext
			name="hostnameInput"
			comment="Host name input field"
			variableName="hostname"
			fillfunc="get_hostname"
			helpText="Host Name:"
			editable="true"
		>
		</Freetext>

		<Info
			helpText="Host names must be in the form \qhost.domain.domaintype\q; if your server will be an Internet server, the domain name should be the name registered with your provider. If you will only have intranet any valid name is OK, like \qcompany.net\q."
		>
		</Info>
	</Page>

	<Page
		name="choose_net_device"
		helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-basics.html"
		func="set_ip"
		jumpPage="load_net_address"
		executionLevel="NORMAL"
		nextFinish="false"
		canBack="true"
		canCancel="true"
	>

		<Info
			helpText="Network Device"
		>
		</Info>


		<Info
			helpText="Choose the network device (usually a card) the server should use to connect to your network. It's the device for the local network, probably not the same device used for internet access."
		>
		</Info>

		<Chooser
			name="deviceChooser"
			variableName="net_device"
			defaultOptionScript="__WIZ_HOME__/firewall_wizard/scripts/compute_ext_device.sh"
			fillScript="__WIZ_HOME__/server_wizard/scripts/liste_device.sh"
			helpText="Device:"
			helpFontName="Default"
			helpFontStyle="plain"
			helpFontSize="12"
		>
		</Chooser>

		<Info
			helpText="Devices are presented with the Linux name and, if known, with the card description."
		>
		</Info>
	</Page>

	<Page
		name="_compute_domainname"
		helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-basics.html"
		executionLevel="DEBUG"
		nextFinish="false"
		canBack="true"
		canCancel="true"
	>

		<Info
			helpText="This page computes the domainname; it should be invisible"
		>
		</Info>
		<Freetext
			name="net_deviceField"
			variableName="net_device"
			fillfunc="get_device"
			helpText="net device"
			editable="false"
		>
		</Freetext>

		<Freetext
			name="domainnameField"
			variableName="domainname"
			fillScript="__WIZ_HOME__/server_wizard/scripts/compute_domain.sh"
			helpText="Computed domain Name"
			editable="false"
		>
		</Freetext>
	</Page>

	<Page
		name="load_net_address"
		helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-basics.html"
		executionLevel="DEBUG"
		nextFinish="false"
		canBack="true"
		canCancel="true"
	>

		<Freetext
			name="freetext1"
			variableName="network_address"
			fillfunc="get_net"
			editable="true"
		>
		</Freetext>
	</Page>

	<Page
		name="ask_network_address"
		helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-basics.html"
		func="check_network"
		executionLevel="NORMAL"
		nextFinish="false"
		canBack="true"
		canCancel="true"
	>

		<Target
			targetName="error_in_network_address"
			jumpIndex="1"
		>
		</Target>

		<Target
			targetName="_compute_server_address"
			jumpIndex="10"
		>
		</Target>

		<Info
			helpText="Network Address"
		>
		</Info>


		<Info
			helpText="The network address is a number identifying your network; the proposed value is designed for a configuration not connected to Internet, or connected using IP masquerading; unless you know what you are doing, accept the default value."
		>
		</Info>


		<Freetext
			name="freetext2"
			variableName="network_address"
			fillfunc="get_net"
			helpText="IP net address:"
			editable="true"
		>
		</Freetext>


		<Info
			helpText="Network addresses are a list of four numbers smaller than 256, separated by dots; the last number of the list must be zero."
		>
		</Info>
	</Page>

	<Page
		name="error_in_network_address"
		helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-basics.html"
		jumpPage="load_net_address"
		nextButtonText="Fix it"
		executionLevel="NORMAL"
		nextFinish="false"
		canBack="true"
		canCancel="true"
	>

		<Info
			helpText="The network address is wrong"
		>
		</Info>
	</Page>

	<Page
		name="_compute_server_address"
		helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-basics.html"
		executionLevel="DEBUG"
		nextFinish="false"
		canBack="true"
		canCancel="true"
	>

		<Info
			helpText="This page computes the default server address; it should be invisible."
		>
		</Info>

		<Freetext
			name="freetext3"
			variableName="server_address"
			fillfunc="compute_server_ip"
			editable="false"
		>
		</Freetext>
	</Page>

	<Page
		name="read_gatewaydev"
		helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-basics.html"
		executionLevel="DEBUG"
		nextFinish="false"
		canBack="true"
		canCancel="true"
	>

		<Freetext
			name="freetext4"
			variableName="wiz_extn_device"
			fillScript="echo `get_var wiz_extn_device`"
			editable="true"
		>
		</Freetext>
	</Page>

	<Page
		name="read_gatewayip"
		helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-basics.html"
		executionLevel="DEBUG"
		nextFinish="false"
		canBack="true"
		canCancel="true"
	>

		<Freetext
			name="freetext5"
			variableName="wiz_extn_gateway"
			fillScript="echo `get_var wiz_extn_gateway`"
			editable="true"
		>
		</Freetext>
	</Page>

	<Page
		name="ask_server_address"
		helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-basics.html"
		func="check_server_ip"
		executionLevel="NORMAL"
		nextFinish="false"
		canBack="true"
		canCancel="true"
	>

		<Target
			targetName="error_in_server_address"
			jumpIndex="1"
		>
		</Target>

		<Target
			targetName="external_gateway"
			jumpIndex="10"
		>
		</Target>

		<Info
			helpText="Server Address"
		>
		</Info>


		<Info
			helpText="The server IP address is a number identifing your server in your network; the proposed value designed for a private network , with no internet visibility, or connected using IP masquerading; unless you know what you are doing, accept the default value."
		>
		</Info>


		<Freetext
			name="serverAddressInput"
			variableName="server_address"
			fillfunc="compute_server_ip"
			helpText="Server IP address:"
			editable="true"
		>
		</Freetext>


		<Info
			helpText="IP addresses are a dotted list of four numbers smaller than 256."
		>
		</Info>
	</Page>

	<Page
		name="error_in_server_address"
		helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-basics.html"
		jumpPage="ask_server_address"
		nextButtonText="Fix It"
		executionLevel="NORMAL"
		nextFinish="false"
		canBack="true"
		canCancel="true"
	>

		<Info
			helpText="The Server IP address is incorrect"
		>
		</Info>
	</Page>


	<Page
		name="external_gateway"
		helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-basics.html"
		executionLevel="NORMAL"
		nextFinish="false"
		canBack="true"
		canCancel="true"
	>

		<Info
			helpText="External gateway"
		>
		</Info>


		<Info
			helpText="Here is your current value for the external gateway (value specified during the initial installation). The device (network card or modem) should be different from the one used for the internal network."
		>
		</Info>

		<Info
			helpText="Note: the gateway IP address should be non empty if you want an access to outside world."
		>
		</Info>

		<Info
			helpText="(you can change here these values if you know exactly what you're doing)"
		>
		</Info>


		<Freetext
			name="get_gatewaydev"
			variableName="wiz_extn_device"
			helpText="Gateway device:"
			fillfunc="get_gateway_dev"
			editable="true"
		>
		</Freetext>

		<Freetext
			name="get_ipgateway"
			variableName="wiz_extn_gateway"
			fillfunc="get_gateway"
			helpText="Gateway IP:"
			editable="true"
		>
		</Freetext>
	</Page>

	<Page
		name="doit"
		helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-basics.html"
		func="do_it"
		nextButtonText="Configure"
		executionLevel="NORMAL"
		nextFinish="false"
		canBack="true"
		canCancel="true"
	>

		<Target
			targetName="done"
			jumpIndex="10"
		>
		</Target>

		<Info
			helpText="Configuring your network"
		>
		</Info>


		<Info
			helpText="The wizard collected the following parameters needed to configure your network"
		>
		</Info>


		<Freetext
			name="serverNameConfirm"
			variableName="hostname"
			helpText="Server Name:"
			editable="false"
		>
		</Freetext>

		<Freetext
			name="networkIPConfirm"
			variableName="network_address"
			helpText="Network Address:"
			editable="false"
		>
		</Freetext>

		<Freetext
			name="serverIPConfirm"
			variableName="server_address"
			fillfunc="compute_server_ip"
			helpText="Server Address:"
			editable="false"
		>
		</Freetext>

		<Freetext
			name="deviceConfirm"
			variableName="net_device"
			helpText="Device:"
			editable="false"
		>
		</Freetext>

		<Freetext
			name="gatewayip_confirm"
			variableName="wiz_extn_gateway"
			helpText="Gateway IP:"
			editable="false"
		>
		</Freetext>

		<Freetext
			name="gatewaydev_confirm"
			variableName="wiz_extn_device"
			helpText="Gateway device:"
			editable="false"
		>
		</Freetext>


		<Info
			helpText="To accept these values, and configure your server, click the Next button or use the Back button to correct them."
		>
		</Info>
	</Page>

	<Page
		name="catastrophic_exit1"
		comment="Exit in case of catastrophhic system error"
		helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-basics.html"
		nextButtonText="Exit"
		executionLevel="NORMAL"
		nextFinish="true"
		canBack="false"
		canCancel="false"
	>

		<Info
			helpText="Wizard Error."
		>
		</Info>
	</Page>

	<Page
		name="done"
		helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-basics.html"
		nextButtonText="Quit"
		executionLevel="NORMAL"
		nextFinish="true"
		canBack="false"
		canCancel="false"
	>

		<Info
			helpText="Congratulations"
		>
		</Info>


		<Info
			helpText="The wizard successfully configured the basic networking services of your server."
		>
		</Info>
	</Page>

	<Page
		name="error_need_root"
		comment="Error: this wizard must run as root."
		helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-basics.html"
		nextButtonText="OK"
		executionLevel="NORMAL"
		nextFinish="true"
		canBack="false"
		canCancel="false"
	>

		<Info
			helpText="This Wizard needs to run as root"
		>
		</Info>
	</Page>

	<Page
		name="error_in_hostname"
		comment="Error message for an incorrect hostname"
		helpURL="file:/usr/share/doc/mandrake/${LANG}/ref.html/wiz-basics.html"
		jumpPage="load_hostname_value"
		nextButtonText="Fix it"
		executionLevel="NORMAL"
		nextFinish="false"
		canBack="true"
		canCancel="true"
	>

		<Info
			helpText="The host name is not correct"
		>
		</Info>
	</Page>

</Wizard>