DHCPRelease
DHCPRELEASE is a DHCP message used by a client to release a previously allocated IP address back to the DHCP server. Defined for IPv4 in RFC 2131, the message type is DHCPDISCOVER, OFFER, REQUEST, ACK, NAK, and RELEASE, with RELEASE being the seventh message type. The primary purpose of DHCPRELEASE is to inform the server that the client no longer needs the lease, allowing the server to return the address to the pool for reallocation.
In a DHCPRELEASE, the client typically sends a BOOTREQUEST (op=1) with the ciaddr field set to the
Transmission generally uses UDP from client port 68 to server port 67. If the client cannot determine
Common implementations include client commands such as dhclient -r on Unix-like systems and ipconfig /release on
---