Ads 468x60px

Labels

Consectetuer

mr. T A KJ2DU comunitiarek kj2 ukehack juniorlove javadraggermr. T A KJ2mr. T A KJ2mr. T A KJ2mr. T A KJ2mr. T A KJ2mr. T A KJ2mr. T A KJ2mr. T A KJ2mr. T A KJ2mr. T A KJ2mr. T A KJ2mr. T A KJ2mr. T A KJ2mr. T A KJ2mr. T A KJ2

Popular

Blogroll

Recent Posts

Featured Video

Download

BTricks

BThemes

This is default featured slide 1 title

Easy to customize it, from your blogger dashboard, not needed to know the codes etc. Video tutorial is available, also a support forum which will help to install template correctly.

This is default featured slide 2 title

Easy to customize it, from your blogger dashboard, not needed to know the codes etc. Video tutorial is available, also a support forum which will help to install template correctly.

This is default featured slide 3 title

Easy to customize it, from your blogger dashboard, not needed to know the codes etc. Video tutorial is available, also a support forum which will help to install template correctly.

This is default featured slide 4 title

Easy to customize it, from your blogger dashboard, not needed to know the codes etc. Video tutorial is available, also a support forum which will help to install template correctly.

This is default featured slide 5 title

Easy to customize it, from your blogger dashboard, not needed to know the codes etc. Video tutorial is available, also a support forum which will help to install template correctly.

Comments

Rabu, 13 April 2011

Sebenarnya DHCP adalah suatu software dari linux
yang memungkinkan banyak client untuk mendapatkan IP secara otomatis.Akan terasa sekali efeknya bila jumlah clientnya melebihi dari 10 client seumpama,karena bila hanya digunakan untuk  2 atau 5 client saja.

 Manfaat yang dirasakan adalah kemudahan dalam setingan client karena tak perlu mengeset IP terlebih dahulu,dan sekarang saya akan berbagi cara untuk mengeset dhcp di debian 4.

Ini diaa...


1. Install paket dhcp server (bisa menggunakan repositori local ataupun Internet)

# apt-get install dhcp3-server

2. Konfigurasi dhcp server

# mcedit /etc/dhcp3/dhcp.conf

Konfigurasi utama DHCP Server terletak pada /etc/dhcp3/dhcpd.conf.

optiondomain-name-servers 192.168.254.1;
subnet 192.168.254.0 netmask 255.255.255.0 {
range 192.168.254.1 192.168.254.10;
optiondomain-name-servers 192.168.254.1;
option domain-name “testing.com”;
option routers 192.168.254.1;
option broadcast-address 192.168.252.15;
default-lease-time 3600;
max-lease-time 7200;
}

keterangan: pada baris pertama merupakan subnet dan netmask, baris kedua adalah range ip address yang kita alokasikan untuk klien, baris ketiga pemberian DNS untuk klien, baris keempat adalah name buat klien, baris kelima merupakan router ip, baris keenam merupakan broadcast ip, baris ketujuh adalah default waktu sewa dan baris terakhir maksimum waktu sewa.jangan sampai salah loowww...

3. Konfigurasi interface default

# mcedit /etc/default/dhcp

Konfigurasi utama DHCP server terletak pada /etc/default/dhcp

INTERFACE=”eth0″

(interface yang digubakan sbg dhcp server)

Restart DHCP server

$ /etc/init.d/dhcp3-server restart jika tidak ada error, berarti konfigurasi telah benar

4. Konfigurasi interface card

auto eth0
iface eth0 inet static
address 192.168.254.1
netmask 255.255.255.0
network 192.168.254.0
broadcast 192.168.254.255
gateway 192.168.254.1

5. Client konfigurasi

Rubah file berikut

# mcedit /etc/network/interfaces

masukkan konfigurasi:

auto eth0
iface eth0 inet dhcp

kemudian restart service networking

# /etc/init.d/networking restart

kemudian cek IP address

# ifconfig

0 komentar:

Posting Komentar