DHCPDISCOVER를 보내는 원격 클라이언트 시스템이 있습니다. 서버가 DHCPOFFER로 응답하고 있지만 DHCPACK이 없습니다.
동일한 호스트에서 약 30 초마다 반복됩니다. 원격으로 수행 할 수있는 작업이 있습니까, 아니면 누군가 재부팅해야합니까? 그것은 데이터 센터에 있기 때문에 그것을하기 위해 여행해야 할 수도 있습니다!
제안 해 주셔서 감사합니다. 모든 컴퓨터를 재부팅했지만 여전히 문제가 있습니다. 구성에 문제가 있다고 생각합니다. 이것이 올바르게 보입니까?
#
# /etc/dhcpd.conf for primary DHCP server
#
authoritative;
ddns-update-style none;
deny duplicates;
default-lease-time 600;
max-lease-time 3600;
# Our fixed hosts
host host2 { hardware ethernet xx:xx:xx:xx:xx:xx; fixed-address x.x.x.202; }
host host3 { hardware ethernet xx:xx:xx:xx:xx:xx; fixed-address x.x.x.203; }
host host4 { hardware ethernet xx:xx:xx:xx:xx:xx; fixed-address x.x.x.204; }
host host5 { hardware ethernet xx:xx:xx:xx:xx:xx; fixed-address x.x.x.205; }
subnet x.x.x.128 netmask 255.255.255.128 {
option subnet-mask 255.255.255.128;
option broadcast-address x.x.x.255;
option routers x.x.x.129;
option domain-name-servers 8.8.8.8, 8.8.4.4;
# Testing pool.
pool {
max-lease-time 300; # 5 minutes
range x.x.x.250 x.x.x.254;
deny known-clients;
}
# Our hosts - I didn't have this pool declaration before, do I need it if I want
# the hosts to be running dhcp but always get the same address?
pool {
max-lease-time 1800;
range x.x.x.200 x.x.x.220;
deny unknown-clients;
}
}