DHCP 관련 서비스 구축 및 구성

1. DHCP 서비스
1. 패키지:dhcp
2. 서비스 이름:dhcpd(주 프로그램),dhcrelay(중계 서비스)
3, 포트:udp 67udp 68
4, 프로필:
        /etc/dhcp/dhcpd.conf 
        /etc/sysconfig/dhcrelay 
        /usr/share/doc/dhcp*/dhcpd.conf.sample 

5, 일반 구성 항목
                   ……
6. DHCP 및 DHCP 트렁킹 서비스 구축
실험 과정:
실험 환경:
DHCP 서버 복제 IP 및 게이트웨이 192.168.1.3
게이트웨이 192.168.1.2
중계, 두 개의 서로 다른 네트워크 카드의 IP 구성 및 활성화
Eth0 192.168.1.2     eth1 200.200.200.1
게이트웨이 192.168.1.2 게이트웨이 200.200.200.1
클라이언트: 네트워크 카드 자동 가져오기 설정
192.168.
DHCP 서버 구축:
서버 측:
1、yum -yinstall dhcp
2、cp/usr/share/doc/dhcp*/dhcpd.conf.sample /etc/dhcp/dhcpd.conf
3、vim /etc/dhcp/dhcpd.conf , subnet 
subnet192.168.1.0 netmask 255.255.255.0 {
      option routers192.168.1.2;# eth0 ip 
      option subnet-mask255.255.255.0;
      optiondomain-name-servers 192.168.1.2;DNS
      range 192.168.1.10192.168.1.100;
      default-lease-time21600;
      max-lease-time23200;
      }
4、servicedhcpd restart

클라이언트:
1、vim/etc/sysconfig/network-scripts/ifcfg-eth0
         DEVICE=eth0
         ONBOOT=yes
         BOOTPROTO=dhcp
2、servicenetwork restart

DHCP Trunking 서비스 구축:
서버 측:
1、yum -yinstall dhcp
2、cp/usr/share/doc/dhcp*/dhcpd.conf.sample /etc/dhcp/dhcpd.conf
3、vim/etc/dhcp/dhcpd.conf  , subnet 
subnet192.168.1.0 netmask 255.255.255.0 {
      option routers192.168.1.2;# eth0 ip 
      option subnet-mask255.255.255.0;
      optiondomain-name-servers 192.168.1.2;
      range 192.168.1.10192.168.1.100;
      default-lease-time21600;
      max-lease-time23200;
     }
subnet200.200.200.0 netmask 255.255.255.0 {
      option routers200.200.200.1;# eth1 IP 
      option subnet-mask255.255.255.0;
      optiondomain-name-servers 200.200.200.1;
      range200.200.200.10 200.200.200.100;
      default-lease-time21600;
      max-lease-time23200;
      }
      host faa {     MAC 
 hardware ethernet 00:0c:29:25:ed:0c; ip mac
      fixed-address 200.200.200.25;  IP
}  
 
4、servicedhcpd restart        
5、route adddefault gw 192.168.1.2# eth0 ip 

트렁크 엔드:
1、yum -yinstall dhcp
2、vim/etc/sysctl.conf
      ip.net.ipv4_forward1
3、sysctl -p
4、vim/etc/sysconfig/dhcrelay
      INTERFACE= "eth0  eth1"
      DH7CPSERVER= "192.168.1.3"#DHCP ip 
5、servicedhcrelay restart

클라이언트:
1、vim/etc/sysconfig/network-scripts/ifcfg-eth0
             DEVICE=eth0
             ONBOOT=yes
             BOOTPROTO=dhcp
2、servicenetwork restart

2. MAC 바인딩 IP 주소
DHCP 서버에서
host faa {   
 hardware ethernet 00:0c:29:25:ed:0c;
 fixed-address 200.200.200.25;
}
7 subnet   netmask mac  {
 48  range 10.5.5.26 10.5.5.30;( )
 49  option domain-name-servers ns1.internal.example.org;(dns )
 50  option domain-name "internal.example.org";
 51  option routers 10.5.5.1;( )
 52  option broadcast-address 10.5.5.31;( )
 53  default-lease-time 600;( )
 54  max-lease-time 7200;( )
 55 }

좋은 웹페이지 즐겨찾기