Craig Jensen wrote:
>
> This would be cool...
If you are talking about dhcp leases for the machines on your LAN, then it cannot be done. DHCP doesn't work that way. There is no way to revoke a DHCP lease. Once a client has a lease, it has a lease (until it expires). It may renew the lease, but the server can't ask it to do so. The same goes for relinquishing the lease. The client can do it; the server can do nothing but wait until is expires.
If you are talking about the DHCP lease your server has from your cable provider, then you can renew the lease by doing:
ifdown eth1
ifup eth1
from a root shell prompt.
Charlie