• DHCP 서버

dhcp 서버가 하는 역할은 자신의 네트워크 안에 있는 클아이언트 컴퓨터가 부팅될 때 자동으로 IP주소, 서브넷마스크, 게이트웨이 주소, DNS 서버 주소를 할당해 주는 것

관리하기 편하고 이용자가 편함

동적 할당 : 네트워크 관리자가 일정 범위의 IP주소를 예약하고 클라이언트의 요청에 따라 IP를 할당하는 방식

자동 할당 : 동적 할당과 비슷하지만, 클라이언트 요청에 따라 할당된 IP가 그 클라이언트에게 영구적으로 사용되는 점이 차이

수동 할당 : BOOTP 프로토콜처럼 클라이언트의 MAC 주소에 기반을 두고 한 서브넷 범위 안에서 고정 IP를 할당하는 방식

client

dhcp로 설정

server

# yum -y install dhcp

# ps -ef | grep dnsmasq

# kill -9 dns process id

# vim /etc/dhcp/dhcpd.conf

ddns-update-style interim;
subnet 192.168.111.0 netmask 255.255.255.0
{
        option routers 192.168.111.2;
        option subnet-mask 255.255.255.0;
        range dynamic-bootp 192.168.111.30 192.168.111.50;
        option domain-name-servers 8.8.8.8;
        default-lease-time 10000;
        max-lease-time 50000;

host ubuntu001{
        option host-name "ubuntu001";
        hardware ethernet 00:0c:29:85:2a:68;
        fixed-address 192.168.111.55;}
host centos002{
        option host-name "centos002";
        hardware ethernet 00:0c:29:bf:81:e9;
        fixed-address 192.168.111.55;}
}

추가

# systemctl stop firewalld

# systemctl restart dhcpd

# cat /var/lib/dhcpd/dhcpd.leases 로 확인 가능

client

# nmcli networking off

# nmcli networking on

# ifconfig

'🔐 [정보보안] 모의해킹 침해대응 전문가 취업캠프 > Server' 카테고리의 다른 글

[Linux] Mail Server  (2) 2023.09.13
[Linux] DNS  (0) 2023.09.12
[Linux] NFS, Samba  (0) 2023.09.12
[Linux] FTP  (0) 2023.09.12
[Linux] Dos 공격 방어  (0) 2023.09.12