the files in /var/lib/NetworkManager/dhclient-*.lease give "renew" "rebind" "expire" dates and times of DHCP leases. the time zone, unspecified in the file, is UTC. (it is documented in man 5 dhcpd.leases).
this can be verified with "nmcli -f DHCP4 c show YourAccessPointName" which will give a Unix time for expiry. https://unix.stackexchange.com/a/507753
an easy way to convert Unix time to UTC is
date -u --date="@1234567890"
No comments :
Post a Comment