मेरे पास एक दूरस्थ क्लाइंट मशीन है जो डीएचसीपीआईएससीओओआरवी के बाहर भेज रही है। सर्वर 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;
}
}