I have a linux DHCP server running on my network. i recently found out that i can assign specific ip address to clients based on their mac address by modifying the dhcpd.conf file.

Now is there something i can do from the server side that would invalidate a specific clients lease forcing it to get a new one from the server (after i have added entries in dhcpd.conf) to make it get a particular ip address without releasing / renewing on the client side ?

thank you, ankit

link|improve this question
Assuming dhclient, use dhclient -l – OMG Ponies Nov 16 '10 at 1:38
i was looking for doing something on the server side, not on the client side. – ankit Nov 16 '10 at 1:48
feedback

migrated from stackoverflow.com Nov 16 '10 at 2:41

This question came from our site for professional and enthusiast programmers.

1 Answer

The problem is the client will not contact the DHCP server again until the lease has expired. You'll have to go to the client and tell it to try again.

link|improve this answer
makes sense. thanks – ankit Nov 16 '10 at 1:53
feedback

Your Answer

 
or
required, but never shown