Install Bind dengan perintah
$sudo apt-get install bind9
edit file named.conf.local. Tambahkan sintak berikut
zone “belong.com” {
type master;
file “/etc/bind/db.belong.com”;
};
zone “0.168.192.in-addr.arpa” {
type master;
file “/etc/bind/0.168.192.in-addr.arpa”;
};
Edit file named.conf.options
modifikasi pada baris yang bertuliskan forwarders. ini ditujukan untuk request query yang tidak terdapat di dns kita.
forwarders {
202.134.0.155;
};
Tambahkan file definisi.
buat file yang kita definisikan untuk domain yang telah ditambahkan.
Pada konfigurasi diatas kita membutuhkan file db.belong.com
sudo vi /etc/bind/db.belong.com
Tambahkan sintak yang diinginkan
@ IN SOA ns.belong.com. admin@belong.com. (
1 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS ns.belong.com.
@ IN A 192.168.0.115
@ IN MX 192.168.0.116
ns IN A 192.168.0.118
adm IN A 192.168.0.117
Tambahkan juga file Reverse nya
sudo vi /etc/bind/0.0.168.192.in-addr.arpa
@ IN SOA ns.belong.com. admin@belong.com. (
1 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS ns.admin.belong.com.
115.200 PTR belong.com.
Restart deh bind nya
sudo /etc/init.d/bind9 restart
untuk testing apakah domain yang dibuat sudah jalan apa belum bisa dengan menggunakan nslookup
selamat mencoba
There are 2 ways to mount iso file in hp-ux 1) using LVM method (to copy ISO into a logical volume) is the same as for older HP-UX releases: 1. Find out the size of the ISO image: # du -k /data/myImage.iso NOTE: The size will be in Kb. 2. Create a logical volume for the ISO image: # lvcreate -L -n iso /dev/vg00 NOTE: The name of the logical volume will be /dev/vg00/iso 3. Copy the ISO file to the raw logical volume: # dd if=/data/myImage.iso of=/dev/vg00/riso bs=64k 4. Create a temporary directory and mount the /dev/vg00/iso volume # mkdir /iso_image # mount /dev/vg00/iso /iso_image NOTE: For HP-UX 11.11 you must install the latest CDFS patches: PHCO_25841 Add Rock Ridge extension to mount_cdfs(1M) PHKL_26269 Rock Ridge extension for ISO-9660 PHKL_34153 CDFS cumulative patch 2) Available in HP-UX 11.31 0909: ISOIMAGE-ENH. Provides a new DLKM module fspd. Required to mount, read and umount the ISO image file. The comm...
Comments