Pages

This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Konfigurasi DNS

Konfigurasi DNS

0. example
  
     192.168.100.1  <-------> sambalgoreng.pedas

1. Installasi bind9

   # apt-get install bind9

2. Konfigurasi file named.conf.default.zones.old
    (boleh juga pada file named.conf)

# nano /etc/bind/named.conf.default-zones

3. Tambahkan berikut:

 zone "sambalgoreng.pedas" {                                          // zone domain
        type master;
        file "/var/cache/bind/forward";                                  //lokasi file forward
    };

    zone "100.168.192.in-addr.arpa" {                             // 3 blok ip secara terbalik
         type master;
        file "/var/cache/bind/reverse";                                  //lokasi file reverse
   };


    
4. Buat file forward & reverse
  
    # cp –a /etc/bind/db.local /var/chace/bind/forward

   #cp –a /etc/bind/db.255 /var/chace/bind/reverse


5.  Konfigurasi file forward
 
   BERSAMBUNG...... :-)

  

Konfigurasi repo

Konfigurasi Repositori

1. setiap paket aplikasi di install dari alamat repositori
2. secara default alamat repositori mengambil dari web repo server yang ada di internet
3. bisa diganti dengan alamat repo lokal agar proses intallasi lebih cepat
4. yang tidak terhubung dengan internet bisa lewat server lokal atau dvd repo atau harddsik yang berisi repo
5. konfigurasi repo dengan mengedit file resources.list
 
     # nano /etc/apt/sources.list

6. bisa di edit atau ditambahkan alamat repo loka

   deb cdrom:[Debian GNU/Linux 7.1.0 _Wheezy_ - Official i386 DVD Binary-1 2013061$

   deb http://security.debian.org/ wheezy/updates main contrib
   deb-src http://security.debian.org/ wheezy/updates main contrib



   #Repo kambing UI
   deb http://kambing.ui.ac.id/debian/ wheezy main non-free contrib
   deb-src http://kambing.ui.ac.id/debian/ wheezy main non-free contrib



7. update repo

  # apt-get update

8. cmiiw

9. ok. thx.

Konfigurasi Interfaces

Topologi dan Konfigurasi Interfaces

1. Topologi

2. Semua konfigurasi di lakukan lewat terminal (ctrl+alt+t)
    Login sebagai root dengan perintah sudo su

3. Konfigurasi interfaces

    # nano /etc/network/interfaces

4. Konfigurasi sebagai berikut (sesuaikan ip address-nya)
 
auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
address 192.168.1.100

netmask 255.255.255.0
network 192.168.100.0
broadcast 192.168.100.255
gateway 192.168.1.1
dns-nameservers 192.168.1.1

dns-nameservers 8.8.8.8
dns-search google.com




auto eth0
iface eth0 inet static
address 192.168.100.1

netmask 255.255.255.0
network 192.168.100.0
broadcast 192.168.100.255
dns-nameservers 192.168.100.1

dns-nameservers 8.8.8.8
dns-search google.com



5. Restart interfaces / networking

 #/etc/init.d/networking restart

   atau

 #service networking restart

6. Melihat hasil konfigurasi

   #inconfig

7. Test Koneksi

   #ping ke ip pc sendiri
   #ping ke ip gateway
   #ping ke google.com (jika konek internet)

 8. cmiiw

 9. thx


original post by alagso :-)

Pageviews