vi /etc/dhcp/dhcpd.conf

### vi ###
subnet 10.0.10.0 netmask 255.255.255.0 {
        range 10.0.10.100 10.0.10.254;
        option routers 10.0.10.3;
        option domain-name-servers 10.0.10.250;
}

host fantasia {
  hardware ethernet 00:0c:29:d4:fb:db;
  fixed-address 10.0.10.250;
}
### vi ###

systemctl restart dhcpd

이렇게 작성해주게 되면 VM Net에서 같은 인터페이스에 있는 서버들에게 dhcp를 뿌려주게 된다.

**host fantasia**는 dhcp로 받는 서버들 중 **hardware ethernet**에 적혀있는 mac을 가지고 있는 서버에게 IP를 고정적으로 할당해준다.