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"
_______________________________________________
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org

Reply via email to