On 2020-04-26 16:05, ToddAndMargo via users wrote:
Hi All,
Tip: by default the dhcp leases file does not exist under Fedora32. You have to create it firs, then it gets uses
-T
My notes:
DHCP Client leases file:
The file does not exist by default.
# New to Fedora 32. Set up a leases file if it does not exist: if [ -n /var/lib/dhclient/dhclient.lease]; then touch /var/lib/dhclient/dhclient.lease; # release DHCP address dhclient -r # renew DHCP address dhclient fi
Opps, I forgot the "s" at the end of "leases"