Kamis, 22 Mei 2014

Konfigurasi DNS Server di Debian 6 Squeeze

Konfigurasi DNS Server di Debian 6 Squeeze



Konfigurasi DNS Server pada Debian 6 Squeeze DNS Server atau Domain Name System Server adalah sebuah teknik atau sistem di dunia Teknologi Informatika yang memungkinkan sebuah alamat IP dapat diakses dengan nama host. Misalnya adalah alamat IP 74.125.135.132 diubah menjadi sebuah nama host, yaitu gratisanterbaik.blogspot.com.

Fungsi DNS ini sangatlah penting untuk internet, karena dengan adanya Domain Name System ini, kita dimudahkan dengan banyak hal. Salah satunya adalah kemudahan menghafal sebuah nama host daripada sebuah alamat IP.

Install vim :
#apt-get install vim

Jika sudah, mulailah setting DNS Server :

1. Install pack DNS server terlebih dahulu.
    root@gratisanterbaik:# apt-get install bind9

2. Masuk ke direktori Bind.
    root@gratisanterbaik:# cd /etc/bind

3. Lihat semua file atau data yang ada di direktori bind.
    root@gratisanterbaik:/etc/bind# ls

     bind.keys      db.empty        named.conf.default-zones     zones.rfd1918
     db.0              db.local           named.conf.local
     db.127          db.root            named.conf.options
     db.255          named.conf     rndc.key

4. Lakukan konfigurasi dengan memasukkan perintah :
    root@gratisanterbaik:/etc/bind# vim named.conf.default-zones

         // prime the server with knowledge of the root servers
         zone "." {
           type hint;
           file "/etc/bind/db.root";
         };

        // be authoritative for the localhost forward and reverse zones, and for
        // broadcast zones as per RFC 1912

        zone "localhost" {
           type master;
           file "/etc/bind/db.local";
        };

        zone "127.in-addr.arpa" {
           type master;
           file "/etc/bind/db.127";

        };
        zone "0.in-addr.arpa" {
           type master;
           file "/etc/bind/db.0";
        };

        zone "255.in-addr.arpa" {
           type master;
           file "/etc/bind/db.255";
        };


   Ubah scriptnya dari :

        zone "localhost" {
           type master;
           file "/etc/bind/db.local";
        };

        zone "127.in-addr.arpa" {
           type master;
           file "/etc/bind/db.127";

        };

   Menjadi :

        zone "gratisanterbaik.com" {
           type master;
           file "db.sandi";
        };

        zone "192.in-addr.arpa" {
           type master;
           file "db.192";

        };


   Lalu save dengan "Ctrl+C" ":w" dan "Enter".

5. Copy/salin db.127 dan db.local dengan perintah :
    root@gratisanterbaik:/etc/bind# cp db.127 db.192
    root@gratisanterbaik:/etc/bind# cp db.local db.sandi

6. Pindahkan hasil salinan tersebut ke direktori /var/chache/bind dengan memasukkan perintah :
    root@gratisanterbaik:/etc/bind# mv db.192 db.sandi /var/chache/bind
7. Masuk ke direktori /var/cache/bind dan lihat hasilnya.
    root@gratisanterbaik:/etc/bind# cd /var/cache/bind
    root@gratisanterbaik:/var/cache/bind# ls
    db.192    db.sandi

8. Edit file db.192
    root@gratisanterbaik:/var/cache/bind# vim db.192

           ;
           ; BIND reverse data file for local loopback interface
           ;
          $TTL    604800
          @       IN      SOA     localhost. root.localhost. (
                                   1         ; Serial
                         604800         ; Refresh
                           86400         ; Retry
                       2419200         ; Expire

                         604800 )       ; Negative Cache TTL
           ;
          @           IN      NS        localhost.
           1.0.0    IN      PTR     localhost.


     Ubah script diatas menjadi :

               ;
           ; BIND reverse data file for local loopback interface
           ;
          $TTL    604800
          @       IN      SOA     gratisanterbaik.com. root.gratisanterbaik.com. (
                                   1         ; Serial
                         604800         ; Refresh
                           86400         ; Retry
                       2419200         ; Expire

                         604800 )       ; Negative Cache TTL
           ;
          @                 IN      NS     gratisanterbaik.com.
          168.2.50    IN      PTR    gratisanterbaik.com.

    Lalu save dengan "Ctrl+C" ":w" dan "Enter".

9. Edit file db.sandi
    root@gratisanterbaik:/var/cache/bind# vim db.sandi

           ;
               ; BIND data file for local loopback interface
               ;
              $TTL    604800
              @       IN      SOA     localhost. root.localhost. (
                                   1         ; Serial
                         604800         ; Refresh
                           86400         ; Retry
                       2419200         ; Expire
                         604800 )       ; Negative Cache TTL
               ;
              @               IN      NS      localhost.
              @               IN      A        127.0.0.0

       Ubah script diatas menjadi :

               ;
               ; BIND data file for local loopback interface
               ;
              $TTL    604800
              @       IN      SOA     gratisanterbaik.com. root.gratisanterbaik.com. (
                                   2         ; Serial
                         604800         ; Refresh
                           86400         ; Retry
                       2419200         ; Expire
                         604800 )       ; Negative Cache TTL
               ;
              @               IN      NS      gratisanterbaik.com.
              @               IN      A        192.168.2.50                                              <<< IP address

              www           IN      A        192.168.2.50                                              <<< IP address

       Lalu save dengan "Ctrl+C" ":w" dan "Enter".

10. Masuk ke resolv.conf
      root@gratisanterbaik:/var/cache/bind# vim /etc/resolv.conf

      Masukkan :

      domainserver gratisanterbaik.com
      nameserver 192.168.2.50
      search domain gratisanterbaik.com

      Lalu Save.

11. Lakukan restart Bind
      root@gratisanterbaik:/var/cache/bind# /etc/init.d/bind9 restart

12. Install pack DNS Server yang lainnya.
      root@gratisanterbaik:/var/cache/bind# apt-get install apache2 php5

13. Cek konfigurasi apakah sudah berhasil atau belum.
      root@gratisanterbaik:/var/cache/bind# nslookup gratisanterbaik.com
      Server:       192.168.2.50
      Address:     192.168.2.50#53

      Name:         gratisanterbaik.com
      Address:     192.168.2.50

14. Jika sudah seperti diatas, maka konfigurasi DNS berhasil.
15. Untuk memastikan cek di web browser dan masukkan domain gratisanterbaik.com , jika
      terdapat bacaan "It Works" maka konfigurasi DNS anda telah berhasil.
Read More..

Minggu, 20 April 2014

Lirik Lagu Steps_Hand On Your Heart

STEPS – HAND ON YOUR HEART



On the phone for hours at a time,
Has your voice changed or is it a trick of the line?
All alone, I'm losing my mind,
Wonderin' what you'll be doin' tonight,

I still feel you hodin' me as clear as the day we said goodbye,
Words can change so easily when they cross a million miles,

Hand on your heart, heart on your sleeve,
Are you tellin' me,
When we're apart you still believe,
We are meant to be?
Even if you say the words you know I long to hear,
I wanna be sure so tell me once more,
Hand on your heart


Losin' sleep, can't take anymore,
Tired of wonderin' if you really miss me at all,
I just need to be reassured,
If you love me what you waitin' for?

I still feel you holdin' me as clear as the day we said goodbye,
Memories fade so easily, but am I still in yours like you're in mine?
You know that's all I need, baby tell me honestly....

Hand on your heart, heart on your sleeve,
Are you tellin' me,
When we're apart you still believe,
We are meant to be?
Even if you say the words you know I long to hear,
I wanna be sure so tell me once more,
Hand on your heart


I still feel you holdin' me, tellin'me love will always be....
Don't know if I can wait,
Until I see your face,
I need you to tell me,



Hand on your heart, heart on your sleeve,
Are you tellin' me,
When we're apart you still believe,
We are meant to be?
Even if you say the words you know I long to hear,
I wanna be sure so tell me once more,
Hand on your hearth
Read More..

Sabtu, 12 April 2014

Cara Download Video Youtube Dengan Firefox

Cara Download Video Youtube Dengan Firefox



1. Yang pertama pastikan anda mempunyai browser Mozilla Firefox, jika belum punya silakan download disini
2. Jika sudah mempunyai Firefox, install pug in add on easy Youtube Video downloader dialamat dibawah ini.
https://addons.mozilla.org/en-US/firefox/addon/easy-youtube-video-downl-10137/
3. Ikuti petunjuk yang diberikan dalam proses download dan install
4. Jika sudah mendapatkan add on tersebut, segera masuk ke youtube untuk mendownload video yang anda inginkan
5. Perhatikan Dibawah video yang anda pilih, disana terdapat tombol download 
6. Klik tombol download tersebut dan pilih extention file yang anda mau
Cara download video youtube dengan Addons Firefox
 
6. Sekarang anda hanya tinggal menunggu sejenak sampai proses download video youtube anda selesai

Jika dalam video youtube tersebut belum keluar tombol download, maka sebaiknya anda restart lagi browser mozilla nya agar add on bisa aktif dengan sempurna.
Read More..

Cara Menginstall Linux Debian 6 Text (Squeeze)

Cara Menginstall Linux Debian 6 Text (Squeeze)



1. Booting dari CD atau DVD



2. Pilih Install
3. Tekan enter

4. Pilih bahasa yang ingin agan pilih
5. Tekan enter


6. Pilih dimana agan sekarang tinggal
7. Tekan enter


8. Pilih American English
9. Tekan enter


10. Karena konfigurasi jaringan secara otomatis gagal maka saya menggunakan dengan cara manual
11. Pilih Continue


12. Pilih Configure network manually
13. Tekan enter, supaya pada waktu mengecek konfigurasi ip address tidak kosong


14. Isikan IP Address sesuai dengan yang agan inginkan, bisa kelas a, kelas b, kelas c. Saya memakai kelas c, misal: 192.168.4.1


15. Isi Subnetmask dengan mengetikkan 255.255.255.0


16. Isi Gateway dengan mengetikkan 192.168.4.1


17. Name server address sama dengan Gateway jadi agan ketikkan 192.168.4.1


18. Hostname bisa agan isi dengan keinginan agan sendiri, bisa nama agan atau yang lain


19. Domain Name bisa agan isi dengan domain yang agan miliki


20. Isi Root Password sesuai keinginan agan


21. Isi Re-enter password to verify dengan password yang sudah agan isi sebelumnya


22. Isi Full name for the new user dengan yang agan inginkan, sama dengan Hostname juga tidak apa-apa. Saya memakai nama Belajar Komputer dan Jaringan


23. Isi Username for your account dengan yang anda inginkan asalkan jangan sama dengan Full Name
 for the New User karena akan terjadi error


24. Isi Choose a password for the new user dengan yang agan inginkan, boleh sama boleh tidak dengan password yang sudah agan isi waktu mengisi FASWORD USER yang sebelumnya


25. Isi Re-enter password to verify dengan password yang sudah agan isi sebelumnya


26. Pilih Eastern
27. Tekan enter


28. Agar cepat dalam menginstall debian 6 text sebaiknya agan memilih yang paling atas yaitu Guide use entire disk
29. Tekan enter


30. Jika dalam komputer agan ada 2 buah harddisk agan bisa memilih yang atas maupun yang bawah karena komputer saya cuma memiliki 1 harddisk jadi tidak ada pilihan
31. Tekan enter


32. Pilih All files in one partition (recomended for new user)
33. Tekan enter


34. Pilih Finish partitioning and write changes to disk
35. Tekan enter


36. Pilih Yes
37. Tekan enter


38. Tunggu proses kira-kira kurang lebih 5 menit


39. Pilih No
40. Tekan enter


41. Pilih No
42. Tekan enter


43. Pilih No
44. Tekan enter


45. Centang semua kecuali yang paling atas
46. Tekan enter


47. Tunggu proses kira-kira kurang lebih 10 menit


48. Pilih Yes
49. Tekan enter


50. Tekan enter


51. Pilih yang atas atau biarkan saja dalam waktu 5 detik agan akan langsung masuk
52. Tekan enter


53. Isikan Login dengan user yang sudah agan isikan waktu menginstall debian 6
54. Isikan Password user dengan password yang sudah agan isikan waktu menginstall debian 6 text
55. Jika berhasil masuk maka muncul tulisan Last login: Wed Apr 4 17:55:08 EDT 2012 i686, dst.
Read More..

You can replace this text by going to "Layout" and then "Page Elements" section. Edit " About "

Diberdayakan oleh Blogger.

Popular Posts

Followers