22.2. 마지막으로 성공한 Kerberos 인증 추적 활성화
성능상의 이유로 Red Hat Enterprise Linux 7.4 이상에서 실행되는 IdM은 사용자의 마지막 성공적인 Kerberos 인증의 타임스탬프를 저장하지 않습니다. 결과적으로 ipa user-status 와 같은 특정 명령이 타임 스탬프를 표시하지 않습니다.
사용자의 마지막으로 성공한 Kerberos 인증을 추적하려면 다음을 수행합니다.
- 현재 활성화된 암호 플러그인 기능을 표시합니다.
# ipa config-show | grep "Password plugin features" Password plugin features: AllowNThash, KDC:Disable Last Success
다음 단계에서ECDHE :Disable Last Success 를 제외한 기능의 이름이 필요합니다. - 모든 기능에 대한
--ipaconfigstring=feature
매개변수를 현재 활성화되어 있는 ipa config-mod 명령에 전달합니다. 단, Last Success 는 제외합니다.# ipa config-mod --ipaconfigstring='AllowNThash'
이 명령은 AllowNThash 플러그인만 활성화합니다. 여러 기능을 활성화하려면--ipaconfigstring=feature
매개변수를 여러 번 지정합니다. 예를 들어 AllowNThash 및ECDHE :Disable Lockout 기능을 활성화하려면 다음을 수행합니다.# ipa config-mod --ipaconfigstring='AllowNThash' --ipaconfigstring='KDC:Disable Lockout'
- IdM을 다시 시작합니다.
# ipactl restart