Xin chào ! Nếu đây là lần đầu tiên bạn đến với diễn đàn, xin vui lòng danh ra một phút bấm vào đây để đăng kí và tham gia thảo luận cùng VnPro.

Announcement

Collapse
No announcement yet.

pro nao cho minh xin tai lieu Cau hinh DHCP tren linux k a

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • pro nao cho minh xin tai lieu Cau hinh DHCP tren linux k a

    minh la newbe nen can it tai lieu tuong doi de hieu ve setup1 DHCP chol linux
    thanks so much

  • #2
    Tôi gửi bạn chi tiết cách dựng DHCP trên Cent OS, trên các distro khác cũng tương tự thôi, chỉ khác là file cấu hình để ở đâu, vấn đề này bạn tự tìm hiểu trên distro của mình.
    cài đặt:
    #yum -y install dhcpd
    Tạo file cấu hình:
    #cp /usr/share/doc/dhcp-3.0.5/dhcpd.conf.sample /etc/dhcpd.conf
    #vi /etc/dhcpd.conf
    ddns-update-style interim;
    ignore client-updates;

    subnet 172.27.1.0 netmask 255.255.255.0 {

    # --- default gateway
    option routers 172.27.1.1;
    option subnet-mask 255.255.255.0;

    # option nis-domain "domain.org";
    option domain-name "hau.com";
    option domain-name-servers 172.27.1.101;
    option time-offset 25200; # Hanoi Bangkok Jakatta Time
    option ip-forwarding off; #khong cho no forward dhcp request toi NIC khac
    option broadcast-address 172.27.1.255;



    # option ntp-servers 192.168.1.1;
    # option netbios-name-servers 192.168.1.1;
    # --- Selects point-to-point node (default is hybrid). Don't change this unless
    # -- you understand Netbios very well
    # option netbios-node-type 2;

    range dynamic-bootp 172.27.1.100 172.27.1.200;
    default-lease-time 864000; #10 ngay
    max-lease-time 864000; #10 ngay

    # we want the nameserver to appear at a fixed address
    host vip {
    #next-server marvin.redhat.com;
    hardware ethernet 12:34:56:78:AB:CD; //chỗ này tôi điền đại 1 MAC nào //đó, trong thực tế bạn nên điền MAC nào mà bạn muốn fix
    fixed-address 172.27.1.201;
    }
    } #het subnet 172.27.1.0/24

    Tạo file chứa database cho dhcp server nếu nó chưa có:
    #touch /var/lib/dhcpd/dhcpd.leases
    Khởi động service dhcpd và cấu hình cho nó auto start
    #/etc/init.d/dhcpd start
    #chkconfig dhcpd on
    Cho máy client nhận IP động và test.

    :106:

    Comment


    • #3
      Originally posted by sinhnn View Post
      minh la newbe nen can it tai lieu tuong doi de hieu ve setup1 DHCP chol linux
      thanks so much
      Bạn có thể xem ở đây nhé!!!!

      Cấu hình DHCP trên Linux

      Comment


      • #4
        http://adminvietnam.vn/showthread.php?t=14105 . ban len do doc thu di

        Comment

        Working...
        X