Internet Software Consortium DHCP Server 2.0pl5
Copyright 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium.
All rights reserved.
Please contribute if you find this software useful.
For info, please visit http://www.isc.org/dhcp-contrib.html No subnet declaration for vmnet8 (172.16.15.1).
Please write a subnet declaration in your dhcpd.conf file for the
network segment to which interface vmnet8 is attached.
exiting.
==========================================================
/etc/dhcpd.conf 파일 내용
allow unknown-clients;
option domain-name "xxxx.net";
option domain-name-servers 211.xxx.xxx.xxx;
default-lease-time 600;
max-lease-time 7200;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.1.255;
option routers 192.168.1.254;
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.100 192.168.1.200;
}
host xxx2 {
fixed-address 192.168.1.102;
hardware ethernet xx:xx:xx:xx:xx:xx;
}
위에 vmnet8은 VMWARE 설치할때 같이 설정된것인데
/etc/vmware/vmnet8/dhcpd/dhcpd.conf 파일이 또 있네여...
에러 이유를 모르겠습니다. 답변 부탁드립니다.