Hello, my DHCP server is running Windows Server 2012 and whenever my PVE containers (re)boot they receive a different IP address despite having a reservation on the DHCP server (using the container's MAC address as shown in PVE > LXC > Network).
Executing the following in the container fixes the problem:
How can I fix this?
Executing the following in the container fixes the problem:
Bash:
# Wrong IP
ip addr show
# Release/renew
dhclient -r
dhclient
# Fixed now
ip addr show
How can I fix this?