Kamis, 11 November 2010

Langkah membuat DHCP Server Fedora 8

1.download dan instal package dhcp-3.0.6.fc8
2.copykan dhcpd.conf.sample /etc/dhcpd.conf
3.edit file /etc/dhcpd.conf
ddns-update-style interim;
ignore client-updates;

subnet 192.168.40.129 netmask 255.255.255.0 {
# --- default gateway
option routers 192.168.40.1; >>>>>default gateway buat client
option subnet-mask 255.255.255.0; >>>>>> subnet mask buat client
option nis-domain "www.melda.com"; >>>>>>> DNS buat client
option domain-name "www.melda.com"; >>>>>>>> DNS buat client
option domain-name-servers 192.168.40.129; >>>>>> alamat IP DNS


# option time-offset -18000; # Eastern Standard Time
# option ntp-servers 192.168.1.1;
# option netbios-name-servers 192.168.1.1, 192.168.1.2;
# --- Selects point-to-point node (default is hybrid). Don't change this
unless;
# -- you understand Net bios very well
# option netbios-node-type 2;

range dynamic-bootp 192.168.40.1 192.168.40.50;
default-lease-time 21600;
max-lease-time 43200;
# we want the nameserver to appear at a fixed address
}

0 komentar:

Posting Komentar