-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmodul.sh
594 lines (503 loc) · 16.6 KB
/
modul.sh
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
#!/bin/bash
Foosha(){
apt-get update
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE -s 10.45.0.0/16
}
EniesLobby() {
echo "nameserver 192.168.122.1" > /etc/resolv.conf
apt-get update
apt-get install bind9 -y
echo 'zone "franky.t07.com" {
type master;
file "/etc/bind/kaizoku/franky.t07.com";
};'
# nomor 2
echo 'zone "franky.t07.com" {
type master;
file "/etc/bind/kaizoku/franky.t07.com";
};' > /etc/bind/named.conf.local
mkdir /etc/bind/kaizoku
echo "
\$TTL 604800
@ IN SOA franky.t07.com. root.franky.t07.com. (
2021100401 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS franky.t07.com.
@ IN A 10.45.2.2 ; IP EniesLobby
www IN CNAME franky.t07.com.
" > /etc/bind/kaizoku/franky.t07.com
service bind9 restart
# nomor 3
echo "
\$TTL 604800
@ IN SOA franky.t07.com. root.franky.t07.com. (
2021100401 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS franky.t07.com.
@ IN A 10.45.2.2 ; IP EniesLobby
www IN CNAME franky.t07.com.
super IN A 10.45.2.4 ; IP skype
www.super IN CNAME super.franky.t07.com.
" > /etc/bind/kaizoku/franky.t07.com
service bind9 restart
# nomor 4
echo '
zone "franky.t07.com" {
type master;
file "/etc/bind/kaizoku/franky.t07.com";
};
zone "2.45.10.in-addr.arpa" {
type master;
file "/etc/bind/kaizoku/2.45.10.in-addr.arpa";
};' > /etc/bind/named.conf.local
echo "
\$TTL 604800
@ IN SOA franky.t07.com. root.franky.t07.com. (
2021100401 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
2.45.10.in-addr.arpa. IN NS franky.t07.com.
2 IN PTR franky.t07.com.
"> /etc/bind/kaizoku/2.45.10.in-addr.arpa
service bind9 restart
# nomor 5
echo '
zone "franky.t07.com" {
type master;
notify yes;
also-notify {10.45.2.3;}; //Masukan IP Water7 tanpa tanda petik
allow-transfer {10.45.2.3;}; // Masukan IP Water7 tanpa tanda petik
file "/etc/bind/kaizoku/franky.t07.com";
};
zone "2.45.10.in-addr.arpa" {
type master;
file "/etc/bind/kaizoku/2.45.10.in-addr.arpa";
};' > /etc/bind/named.conf.local
service bind9 restart
# nomor 6
echo "
\$TTL 604800
@ IN SOA franky.t07.com. root.franky.t07.com. (
2021100401 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS franky.t07.com.
@ IN A 10.45.2.4 ; IP skypea
www IN CNAME franky.t07.com.
super IN A 10.45.2.4 ; IP skypea
www.super IN CNAME super.franky.t07.com.
ns1 IN A 10.45.2.3; IP Water7
mecha IN NS ns1
"> /etc/bind/kaizoku/franky.t07.com
echo "
options {
directory \"/var/cache/bind\";
allow-query{any;};
auth-nxdomain no; # conform to RFC1035
listen-on-v6 { any; };
};
" > /etc/bind/named.conf.options
echo '
zone "franky.t07.com" {
type master;
//notify yes;
//also-notify {10.45.2.3;}; Masukan IP Water7 tanpa tanda petik
file "/etc/bind/kaizoku/franky.t07.com";
allow-transfer {10.45.2.3;}; // Masukan IP Water7 tanpa tanda petik
};
zone "2.45.10.in-addr.arpa" {
type master;
file "/etc/bind/kaizoku/2.45.10.in-addr.arpa";
};
' > /etc/bind/named.conf.local
service bind9 restart
}
Water7(){
echo "nameserver 192.168.122.1" > /etc/resolv.conf
apt-get update
# nomor 5
apt-get update
apt-get install bind9 -y
echo '
zone "franky.t07.com" {
type slave;
masters { 10.45.2.2; }; // Masukan IP EniesLobby tanpa tanda petik
file "/var/lib/bind/franky.t07.com";
};
' > /etc/bind/named.conf.local
service bind9 restart
# nomor 6
echo "
options {
directory \"/var/cache/bind\";
allow-query{any;};
auth-nxdomain no; # conform to RFC1035
listen-on-v6 { any; };
};
" > /etc/bind/named.conf.options
echo '
zone "franky.t07.com" {
type slave;
masters { 10.45.2.2; }; // Masukan IP EniesLobby tanpa tanda petik
file "/var/lib/bind/franky.t07.com";
};
zone "mecha.franky.t07.com"{
type master;
file "/etc/bind/sunnygo/mecha.franky.t07.com";
};
'> /etc/bind/named.conf.local
mkdir /etc/bind/sunnygo
echo "
\$TTL 604800
@ IN SOA mecha.franky.t07.com. root.mecha.franky.t07.com. (
2021100401 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS mecha.franky.t07.com.
@ IN A 10.45.2.4 ;ip skypie
www IN CNAME mecha.franky.t07.com.
" > /etc/bind/sunnygo/mecha.franky.t07.com
service bind9 restart
# Nomor 7
echo "
\$TTL 604800
@ IN SOA mecha.franky.t07.com. root.mecha.franky.t07.com. (
2021100401 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS mecha.franky.t07.com.
@ IN A 10.45.2.4 ;ip skypie
www IN CNAME mecha.franky.t07.com.
general IN A 10.45.2.4 ;IP skypie
www.general IN CNAME general.mecha.franky.t07.com.
" > /etc/bind/sunnygo/mecha.franky.t07.com
service bind9 restart
}
Loguetown(){
echo "nameserver 192.168.122.1" > /etc/resolv.conf
apt-get update
apt-get install dnsutils -y
apt-get install lynx -y
# nomor 5
echo "
nameserver 10.45.2.2
nameserver 10.45.2.3
nameserver 10.45.2.4
" > /etc/resolv.conf
}
Alabasta(){
echo "nameserver 192.168.122.1" > /etc/resolv.conf
apt-get update
apt-get install dnsutils -y
apt-get install lynx -y
# nomor 5
echo "
nameserver 10.45.2.2
nameserver 10.45.2.3
nameserver 10.45.2.4
" > /etc/resolv.conf
}
Skypie(){
echo "nameserver 192.168.122.1" > /etc/resolv.conf
apt-get update
# nomor 8
apt-get install apache2 -y
service apache2 start
apt-get install php -y
apt-get install libapache2-mod-php7.0 -y
service apache2
apt-get install ca-certificates openssl -y
apt-get install git -y
apt-get install unzip -y
git clone https://github.com/FeinardSlim/Praktikum-Modul-2-Jarkom.git
unzip -o /root/Praktikum-Modul-2-Jarkom/\*.zip -d /root/Praktikum-Modul-2-Jarkom
echo "
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/franky.t07.com
ServerName franky.t07.com
ServerAlias www.franky.t07.com
ErrorLog \${APACHE_LOG_DIR}/error.log
CustomLog \${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
" > /etc/apache2/sites-available/franky.t07.com.conf
a2ensite franky.t07.com
mkdir /var/www/franky.t07.com
cp -r /root/Praktikum-Modul-2-Jarkom/franky/. /var/www/franky.t07.com
service apache2 restart
# nomor 9
a2enmod rewrite
service apache2 restart
echo "
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) /index.php/\$1 [L]
" >/var/www/franky.t07.com/.htaccess
echo "
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/franky.t07.com
ServerName franky.t07.com
ServerAlias www.franky.t07.com
ErrorLog \${APACHE_LOG_DIR}/error.log
CustomLog \${APACHE_LOG_DIR}/access.log combined
<Directory /var/www/franky.t07.com>
Options +FollowSymLinks -Multiviews
AllowOverride All
</Directory>
</VirtualHost>
" > /etc/apache2/sites-available/franky.t07.com.conf
service apache2 restart
# nomor 10
echo "
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/super.franky.t07.com
ServerName super.franky.t07.com
ServerAlias www.super.franky.t07.com
ErrorLog \${APACHE_LOG_DIR}/error.log
CustomLog \${APACHE_LOG_DIR}/access.log combined
<Directory /var/www/franky.t07.com>
Options +FollowSymLinks -Multiviews
AllowOverride All
</Directory>
</VirtualHost>
" > /etc/apache2/sites-available/super.franky.t07.com.conf
a2ensite super.franky.t07.com
mkdir /var/www/super.franky.t07.com
cp -r /root/Praktikum-Modul-2-Jarkom/super.franky/. /var/www/super.franky.t07.com
service apache2 restart
echo "<?php echo 'yes nomor 10' ?>" > /var/www/super.franky.t07.com/index.php
# nomor 11
echo "
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/super.franky.t07.com
ServerName super.franky.t07.com
ServerAlias www.super.franky.t07.com
<Directory /var/www/super.franky.t07.com/public>
Options +Indexes
</Directory>
ErrorLog \${APACHE_LOG_DIR}/error.log
CustomLog \${APACHE_LOG_DIR}/access.log combined
<Directory /var/www/franky.t07.com>
Options +FollowSymLinks -Multiviews
AllowOverride All
</Directory>
</VirtualHost>
" > /etc/apache2/sites-available/super.franky.t07.com.conf
service apache2 restart
# nomor 12
echo "
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/super.franky.t07.com
ServerName super.franky.t07.com
ServerAlias www.super.franky.t07.com
ErrorDocument 404 /error/404.html
ErrorDocument 500 /error/404.html
ErrorDocument 502 /error/404.html
ErrorDocument 503 /error/404.html
ErrorDocument 504 /error/404.html
<Directory /var/www/super.franky.t07.com/public>
Options +Indexes
</Directory>
ErrorLog \${APACHE_LOG_DIR}/error.log
CustomLog \${APACHE_LOG_DIR}/access.log combined
<Directory /var/www/franky.t07.com>
Options +FollowSymLinks -Multiviews
AllowOverride All
</Directory>
</VirtualHost>
" > /etc/apache2/sites-available/super.franky.t07.com.conf
service apache2 restart
# nomor 13
echo "
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/super.franky.t07.com
ServerName super.franky.t07.com
ServerAlias www.super.franky.t07.com
ErrorDocument 404 /error/404.html
ErrorDocument 500 /error/404.html
ErrorDocument 502 /error/404.html
ErrorDocument 503 /error/404.html
ErrorDocument 504 /error/404.html
<Directory /var/www/super.franky.t07.com/public>
Options +Indexes
</Directory>
Alias \"/js\" \"/var/www/super.franky.t07.com/public/js\"
ErrorLog \${APACHE_LOG_DIR}/error.log
CustomLog \${APACHE_LOG_DIR}/access.log combined
<Directory /var/www/franky.t07.com>
Options +FollowSymLinks -Multiviews
AllowOverride All
</Directory>
</VirtualHost>
" > /etc/apache2/sites-available/super.franky.t07.com.conf
service apache2 restart
# nomor 14
echo "
<VirtualHost *:15000>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/general.mecha.franky.t07.com
ServerName general.mecha.franky.t07.com
ServerAlias www.general.mecha.franky.t07.com
ErrorLog \${APACHE_LOG_DIR}/error.log
CustomLog \${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
<VirtualHost *:15500>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/general.mecha.franky.t07.com
ServerName general.mecha.franky.t07.com
ServerAlias www.general.mecha.franky.t07.com
ErrorLog \${APACHE_LOG_DIR}/error.log
CustomLog \${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
" > /etc/apache2/sites-available/general.mecha.franky.t07.com.conf
a2ensite general.mecha.franky.t07.com
service apache2 restart
mkdir /var/www/general.mecha.franky.t07.com
cp -r /root/Praktikum-Modul-2-Jarkom/general.mecha.franky/. /var/www/general.mecha.franky.t07.com/
echo "
<?php
echo 'selamat 14';
?>
" > /var/www/general.mecha.franky.t07.com/index.php
echo "
# If you just change the port or add more ports here, you will likely also
# have to change the VirtualHost statement in
# /etc/apache2/sites-enabled/000-default.conf
Listen 80
Listen 15000
Listen 15500
<IfModule ssl_module>
Listen 443
</IfModule>
<IfModule mod_gnutls.c>
Listen 443
</IfModule>
" > /etc/apache2/ports.conf
service apache2 restart
# nomor 15
htpasswd -c -b /etc/apache2/.htpasswd luffy onepiece
echo "
<VirtualHost *:15000>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/general.mecha.franky.t07.com
ServerName general.mecha.franky.t07.com
ServerAlias www.general.mecha.franky.t07.com
<Directory \"/var/www/general.mecha.franky.t07.com\">
AuthType Basic
AuthName \"Restricted Content\"
AuthUserFile /etc/apache2/.htpasswd
Require valid-user
</Directory>
ErrorLog \${APACHE_LOG_DIR}/error.log
CustomLog \${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
<VirtualHost *:15500>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/general.mecha.franky.t07.com
ServerName general.mecha.franky.t07.com
ServerAlias www.general.mecha.franky.t07.com
<Directory \"/var/www/general.mecha.franky.t07.com\">
AuthType Basic
AuthName \"Restricted Content\"
AuthUserFile /etc/apache2/.htpasswd
Require valid-user
</Directory>
ErrorLog \${APACHE_LOG_DIR}/error.log
CustomLog \${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
" > /etc/apache2/sites-available/general.mecha.franky.t07.com.conf
service apache2 restart
# nomor 16
echo "
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
RewriteEngine On
RewriteCond %{HTTP_HOST} !^franky.t07.com$
RewriteRule /.* http://franky.t07.com/ [R]
ErrorLog \${APACHE_LOG_DIR}/error.log
CustomLog \${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
" > /etc/apache2/sites-available/000-default.conf
service apache2 restart
# nomor 17
echo "
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/public/images/(.*)franky(.*)
RewriteCond %{REQUEST_URI} !/public/images/franky.png
RewriteRule /.* http://super.franky.t07.com/public/images/franky.png [L]
" > /var/www/super.franky.t07.com/.htaccess
echo "
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/super.franky.t07.com
ServerName super.franky.t07.com
ServerAlias www.super.franky.t07.com
ErrorDocument 404 /error/404.html
ErrorDocument 500 /error/404.html
ErrorDocument 502 /error/404.html
ErrorDocument 503 /error/404.html
ErrorDocument 504 /error/404.html
<Directory /var/www/super.franky.t07.com/public>
Options +Indexes
</Directory>
Alias \"/js\" \"/var/www/super.franky.t07.com/public/js\"
<Directory /var/www/super.franky.t07.com>
Options +FollowSymLinks -Multiviews
AllowOverride All
</Directory>
ErrorLog \${APACHE_LOG_DIR}/error.log
CustomLog \${APACHE_LOG_DIR}/access.log combined
<Directory /var/www/franky.t07.com>
Options +FollowSymLinks -Multiviews
AllowOverride All
</Directory>
</VirtualHost>
" > /etc/apache2/sites-available/super.franky.t07.com.conf
service apache2 restart
}
if [ $HOSTNAME == "Foosha" ]
then
Foosha
elif [ $HOSTNAME == "EniesLobby" ]
then
EniesLobby
elif [ $HOSTNAME == "Water7" ]
then
Water7
elif [ $HOSTNAME == "Loguetown" ]
then
Loguetown
elif [ $HOSTNAME == "Alabasta" ]
then
Alabasta
elif [ $HOSTNAME == "Skypie" ]
then
Skypie
fi