Simple Template For Entertainment News

http://emo.huhiho.com

Headline

iklan

Sabtu, 15 Mei 2010

KONFIGURASI DNS


Ubuntu 9.10

-Instalasi Selesai-

Pemberian password root
login sebagai user biasa

#sudo passwd root
masukan password user
masukan password root
masukan password sama

untuk masuk ke root
ketikan perintah

#su
masukkan password root

SELAMAT MENGKONFIGURASI

Configure The Network
memberi IP static pada ubuntu

Edit /etc/network/interfaces

dan menyesuaikan dengan kebutuhan anda (pada contoh ini

konfigurasi saya akan menggunakan alamat IP 200.100.50.25 :


vim /etc/network/interfaces


# This file describes the network interfaces available o n your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 200.100.50.20
netmask 255.255.255.240

kemudian save (:wq)

Kemudian restart jaringan anda :
/etc/init.d/networking restart

DNS SERVER
menggunakan bind9

1.masuk ke directory bind

#cd /etc/bind

2.copy file "db.127" menjadi "25"

#cp db.127 25

3.copy file "db.local" menjadi "www.namasekolah.sch.id"

#cp db.local www.namasekolah.sch.id

4.edit file "25"

#vim 25

EDIT MENJADI SEPERTI INI :

;
; BIND reverse data file for local loopback interface
;
$TTL 604800
@ IN SOA www.namasekolah.com root.namasekolah.com (
1 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS www.namasekolah.com.
@ IN NS tkj.namasekolah.com.
50.100.200 IN PTR www.namasekolah.com.


Kemudian save (:wq)

5. edit file “www.namasekolah.com”

EDIT MENJADI SEPERTI INI :
;
; BIND reverse data file for local loopback interface
;
$TTL 604800
@ IN SOA www.namasekolah.com root.namasekolah.com (
1 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS www.namasekolah.com.
@ IN NS tkj.namasekolah.com.
@ IN A 200.100.50.20
@ IN AAAA ::1


Kemudian save (:wq)







6. edit file “named.conf.default-zones”

TAMBAHKAN DI BAGIAN PALING BAWAH :
zone "20.in-addr.arpa" {
type master;
file "/etc/bind/20";
};

zone "www.namasekolah.com" {
type master;
file "/etc/bind/www.namasekolah.com";
};

zone “tkj.namasekolah.com” {
type master;
file “/etc/bind/www.namasekolah.com”;
};

Kemudian save (:wq)

Setelah itu restart bind

#/etc/init.d/bind9 restart

PENAMBAHAN FILE “RESOLV.CONF”

#cd /etc

Buat dan tulis resolv.conf

#vim resolv.conf

Isi file seperti berikut ini :
search www.namasekolah.com
search tkj.namasekolah.com
nameserver 200.100.50.20
Kemudian save (:wq)

Restart Network dan bind

#/etc/init.d/networking restart
#/etc/init.d/bind9 restart

Cek dengan
#nslookup www.namasekolah.com
#nslookup tkj.namasekolah.com

Hingga Muncul :
Server : www.namasekolah.com
Address : 200.100.50.20

Name : www.namasekolah.com
Address : 200.100.50.20
Jika Muncul Server Cannot Fin / SERVERFAIL… Harap cek lagi konfigurasi dari awal…

Comments :

0 komentar to “KONFIGURASI DNS”

Posting Komentar

 

Copyright © 2009 by blog's Powered By Blogger Design by ET