nerdexam
Linux_Foundation

LFCS · Question #596

The following output is generated when trying to obtain tickets from the Kerberos realm: # kinit [email protected] Password for [email protected] kinit(v5): Clock skew too great while getting…

The correct answer is A. ntpdate domaincontroller; hwclock -systohc E. Modify the clockskew value in the krb5.conf file. The "Clock skew too great" error in Kerberos indicates a time synchronization issue between the client and the Kerberos Key Distribution Center (KDC), which can be resolved by synchronizing system clocks and/or adjusting the allowed clock skew.

Submitted by naveen.iyer· Apr 18, 2026Service Configuration

Question

The following output is generated when trying to obtain tickets from the Kerberos realm: # kinit [email protected] Password for [email protected] kinit(v5): Clock skew too great while getting initial credentials How can the problem be fixed? (Choose TWO correct answers.)

Options

  • Antpdate domaincontroller; hwclock -systohc
  • Bkinit -t
  • Ckillall -HUP krb5kdc
  • DModify the time_sync value in the kdc.conf file.
  • EModify the clockskew value in the krb5.conf file.

How the community answered

(25 responses)
  • A
    76% (19)
  • B
    4% (1)
  • C
    8% (2)
  • D
    12% (3)

Why each option

The "Clock skew too great" error in Kerberos indicates a time synchronization issue between the client and the Kerberos Key Distribution Center (KDC), which can be resolved by synchronizing system clocks and/or adjusting the allowed clock skew.

Antpdate domaincontroller; hwclock -systohcCorrect

Running `ntpdate domaincontroller` will synchronize the client's system clock with the Kerberos domain controller, and `hwclock -systohc` will save the synchronized system time to the hardware clock, resolving the clock skew.

Bkinit -t

`kinit -t` is used to specify a ticket cache, which does not address clock skew errors.

Ckillall -HUP krb5kdc

`killall -HUP krb5kdc` would restart the KDC process, but it does not fix underlying clock synchronization problems causing the error.

DModify the time_sync value in the kdc.conf file.

`kdc.conf` is for KDC server configuration and does not contain a `time_sync` parameter relevant to client-side clock skew errors.

EModify the clockskew value in the krb5.conf file.Correct

The `clockskew` parameter in the `krb5.conf` file defines the maximum allowed time difference (in seconds) between the client and the KDC; increasing this value can mitigate issues where exact synchronization is difficult to maintain.

Concept tested: Kerberos clock skew resolution

Source: https://web.mit.edu/kerberos/krb5-1.5/krb5-1.5.4/doc/krb5-user/Troubleshooting-Kerberos.html

Topics

#Kerberos#Time Synchronization#Troubleshooting#Configuration Files

Community Discussion

No community discussion yet for this question.

Full LFCS Practice