Skip to content

DHCP

DHCP advice will be updated and rolled out to this page.

Renew dhcp lease


Quote

dhcp renewal is when a dhcp client (your laptop, phone, tablet...) renews or updates its IP address cofniguration with the dhcp server. Often times in our homes the dhcp server is already packaged in our router source.

Unix (Mac OS):

This steps below are necessary since the renew button for mac os only does a shortened DHCP exchange.

  • Go to Network Preferences >> Select interface >> Advanced -> TCP/IP, Turn off IPv4 Addressing (hit OK + Apply)
  • Return to advanced settings and enable DHCP.

Windows:

  • Open a command prompt
  • run ipconfig /release Wi-Fi to release your IP address
  • then run ipconfig /renew to request a new one

Linux:

  • sudo dhclient -r eth0
  • sudo dhclient eth0
Back to top