dhcpd.conf
named.confCode:ddns-domainname "utopia.net";
ddns-update-style interim;
ddns-updates on;
ignore client-updates;
authoritative;
key "dhcpupdate" {
algorithm hmac-md5;
secret "YFvQAeHjqu60dnqOf8BqwA==";
};
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.10 192.168.1.200;
default-lease-time 86400;
max-lease-time 86400;
option routers 192.168.1.1;
option ip-forwarding off;
option broadcast-address 192.168.1.255;
option subnet-mask 255.255.255.0;
option domain-name-servers 192.168.1.1;
option domain-name "utopia.net";
}
zone utopia.net {
primary 127.0.0.1;
key dhcpupdate;
}
zone 1.168.192.in-addr.arpa {
primary 127.0.0.1;
key dhcpupdate;
}
host dc {
hardware ethernet 00:0C:29:18:FA:90;
fixed-address 192.168.1.2;
}
How I can focus on dhcpd logs?Code:controls {
inet 127.0.0.1 port 953
allow { 127.0.0.1; 192.168.1.1; } keys { "dhcpupdate"; };
};
key "dhcpupdate" {
algorithm hmac-md5;
secret "YFvQAeHjqu60dnqOf8BqwA==";
};
options {
listen-on-v6 { none; };
directory "/etc/bind/zone";
};
zone utopia.net {
type master;
file "db.utopia.net";
allow-update { key dhcpupdate; };
notify yes;
};
zone 1.168.192.in-addr.arpa {
type master;
file "db.utopia.net.rev";
allow-update { key dhcpupdate; };
notify yes;
};
I read about hosts have to send hostname to dhcp in order to update dns, is it right?

