Tôi vừa cấu hình một PC với máy chủ dhcp và máy chủ apache trên đó. Tôi muốn đặt tên máy chủ cho máy chủ của mình (ig "myserver") để có thể truy cập máy chủ web của nó bằng cách viết trên trình duyệt "myserver: 80". Đây là tập tin dhcpd.conf:
#option domain-name "example.org";
#option domain-name-servers ns1.example.org, ns2.example.org;
default-lease-time 600;
max-lease-time 7200;
log-facility local7;
subnet 192.0.2.0 netmask 255.255.255.0 {
range 192.0.2.2 192.0.2.254;
host myserver{
hardware ethernet xx:xx:xx:xx:xx:xx;
fixed-address 192.0.2.1;}
}
Cảm ơn!!