Force DHCP to assign the same ip always to the same client?

5,819

This is called a "DHCP reservation", or sometimes "static DHCP".

How it's configured will depend on your router, but many consumer routers do have this capability.

Share:
5,819

Related videos on Youtube

Bevor
Author by

Bevor

Updated on September 18, 2022

Comments

  • Bevor
    Bevor over 1 year

    I'm behind a router with at least 1 client and at most 3 clients. My "main" client runs some services like Apache2 so I port forwarded in router configuration the incoming traffic to its IP address 10.0.0.2 assigned by the router's dhcp. Sometimes it happens that the routers assigns 10.0.0.3 to my main client so i have to change all the forwarding. Are there any possibilities to avoid this?

    I thought about something like

    ifconfig eth1 down
    ifconfig eth1 10.0.0.2 up
    

    but this doesn't help. I still have 10.0.0.3.

    This doesn't work either.

    dhclient -r
    ifconfig eth1 down
    ifconfig eth1 10.0.0.2 up
    

    I have still 10.0.0.3 after reconnecting.

    Maybe there are another solutions? By the way, this must not be a perfect solution because it's just a home network, but the target is to not change all the forwardings all the time.

  • Bevor
    Bevor about 12 years
    You were right, my router supports such an option. Works now, thanks.
  • Zdenek
    Zdenek almost 6 years
    Some routers actually keep the assigned IPs stored until the pool is needed for more new devices. This makes DHCP addresses de-facto constant out of the box.
  • Zdenek
    Zdenek almost 6 years
    DHCP has built-in resiliency against IP collision, so it should work properly even without changing the start of the DHCP pool. That said, I'm always safe rather than sorry.