Table of Contents
DHCP 설치#
# rpm -ivh dhcp-3.0.4-21.fc6.i386.rpm
# vi /etc/dhcpd.conf
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
ddns-update-style ad-hoc;
option domain-name "krtms.co.kr";
#option domain-name-servers 168.126.63.1;
option domain-name-servers 192.168.0.80;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.0.255;
option routers 192.168.0.254;
default-lease-time 7200;
max-lease-time 14400;
subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.101 192.168.0.253;
}
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
Add new attachment
Only authorized users are allowed to upload new attachments.