Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security, Veeam & DevOps

  • Home
  • About
  • Advertise With US
  • Reviews
  • Contact
  • Toggle search form

How to configure Kerberos for Ansible Authentication

Posted on 14/03/202017/08/2026 Christian By Christian 2 Comments on How to configure Kerberos for Ansible Authentication
  1. Home
  2. Configuration Management Tool
  3. How to configure Kerberos for Ansible Authentication
configure Kerberos

A Key Distribution Center (abbreviated KDC) is also known as the Trust Center in the Kerberos system, Kerberos server, issues an on-demand ID file(TGT) for logged-in users on request, which the user can use as an ID to protect their traffic. In this article, we shall learn how to configure Kerberos for Ansible Authentication. Please see What to note when settings up Ansible to work with Kerberos, and how to Fix cannot find KDC for realm while getting initial credentials and kinit configuration file does not specify default realm.

Ticket Granting Ticket (TGT)

The Ticket Granting Ticket (TGT) is a small file that provides access to a data exchange, similar to a password but more secure.

The TGT is considered more secure because it contains, in encrypted form, the client’s IP address, the lifetime of the TGT, and the previously generated session key, preventing a man-in-the-middle attack. Furthermore, The TGT is an essential part of the Kerberos system for data path backup.

The TGT is issued by the Key Distribution Center (KDC) for registered and designated (authenticated) users. This step is required for Kerberos to communicate with the domain effectively and this is achieved via the following path in my environment as shown below.

Modify the configuration files, krb5.conf to reflect the correct information, (such as domain-realm mappings to Kerberos servers’ names) for your realm. Edit the file using any of your desired editors and populate it as follow

C:\cygwin64\etc\crypto-policies\back-ends\krb5.config

Note: We will populate the file later, but for the initial test, this is absolutely ok.

Ansible Authentication

Authenticate to Kerberos Service

Before making your first connection in any Cygwin session. You need to authenticate to the Kerberos service. In a Cygwin bash shell, type.

kinit <yourusername>
Kerberos setup

Here, you will be prompted to enter your password. After you must have successfully authenticated, you will have acquired a Kerberos ticket-granting ticket

Now, we have tested and it works, let’s configure the Host Kerberos in details as shown below. This is necessary because Kerberos is reliant on a properly-configured environment to work.

Note: Ensure to enter the realm name in capital letters and pay specific attention to how the file is written here. Also see this lAnsible-ink for more information.

  • The [realm] should include the FQDNs of your DCs’.
  • The [domain_realm] Help map server hostname to Kerberos realm (This should include each domain that Ansible needs access to).
  • The [libdefaults] should contain various settings used by Kerberos V5 library
A terminal window displaying configuration settings for logging and realm settings in a Kerberos configuration file, including paths for log files and parameters like ticket lifetime and realm definitions.

Ensure to save before quitting by hitting the Esc key on your keyboard, followed by “:wq” in the test editor and then hit enter on your keyboard. Below is how the file on the screenshot is layout (written).

[logging]
default = FILE:/var/log/krb5libs.log
kdc = FILE:/var/log/krb5kdc.log
admin_server = FILE:/var/log/kadmind.log
[libdefaults]
default_realm = TECHDIRECT.LOCAL
dns_lookup_realm = false
dns_lookup_kdc = false
ticket_lifetime = 24h
renew_lifetime = 7d
forwardable = true
[realms]
TECHDIRECT.LOCAL = {
kdc = techdarchive.techdirect.local
admin_server = techdarchive.techdirect.local
}
[domain_realm]
.techdirect.com = TECHDIRECT.LOCAL
techdirect.com = TECHDIRECT.LOCAL

Note (Information Only)

Most setup has it in this location /etc/krb5.conf. For seamless operation, both Kerberos and SSH can be configured. For me there was no need to configure Ansible to work with SSH, so this was ignored.

Terminal window displaying a list of configuration files located in the /etc/crypto-policies/back-ends directory, with 'java.config', 'krb5.config', and 'openssh.config' highlighted.

Note: There are two types of Kerberos ticket management for Ansible. We will be using the manual Kerberos ticket management

  • Automatic Kerberos Ticket management and
  • Manual Kerberos Ticket Management.

Testing: Before making your first connection to a remote device in any Cygwin session, you need to authenticate to the Kerberos service by using your Kerberized credentials In a Cygwin bash shell, type: simply run kinit binary to acquire a new Kerberos ticket as shown below.

kinit <yourusername@DOMAIN.COM>

Test using kinit, it will work correctly.
$ kinit user@TECHDIRECT.LOCAL
Password for user@TECHDIRECT.LOCAL:
$
- You can run “klist” to list all your active Kerberos tickets and their expiration dates.)
A command line interface displaying commands for initializing a Kerberos ticket with 'kinit' and listing tickets with 'klist'.

Note: To destroy all the tickets that have been acquired, use the following command:

$ kdestroy
Terminal screenshot displaying commands 'kdestroy' and 'klist' with corresponding outputs, indicating no credentials cache found.

I hope you found this blog post on how to configure Kerberos for Ansible Authentication helpful. If you have any questions, please let me know in the comment session.

Thank you for reading this post. Kindly share it with others.

  • Share on X (Opens in new window) X
  • Share on Reddit (Opens in new window) Reddit
  • Share on LinkedIn (Opens in new window) LinkedIn
  • Share on Facebook (Opens in new window) Facebook
  • Share on Pinterest (Opens in new window) Pinterest
  • Share on Tumblr (Opens in new window) Tumblr
  • Share on Telegram (Opens in new window) Telegram
  • Share on WhatsApp (Opens in new window) WhatsApp
  • Share on Mastodon (Opens in new window) Mastodon
  • Share on Bluesky (Opens in new window) Bluesky
Configuration Management Tool Tags:Kerberos, Windows 10

Post navigation

Previous Post: Kinit Error: Fix Malformed representation of principal when parsing name
Next Post: Install Kerberos packages via Cygwin in Windows

Related Posts

  • ansible 1
    How to fix no Python interpreters found for the host Configuration Management Tool
  • ansible vault
    Fix AttributeError ‘ShellModule’ Object Has No Attribute ‘ECHO’ Configuration Management Tool
  • opsworks for automate blog
    How to setup Chef Automate on AWS Configuration Management Tool
  • scandium
    How to Test Web Applications Using Scandium Configuration Management Tool
  • Screenshot 2020 05 14 at 19.43.13
    Repo: How to setup Chef Repository Configuration Management Tool
  • ansible
    KDC reply did not match expectations while getting initial credential Configuration Management Tool

More Related Articles

ansible 1 How to fix no Python interpreters found for the host Configuration Management Tool
ansible vault Fix AttributeError ‘ShellModule’ Object Has No Attribute ‘ECHO’ Configuration Management Tool
opsworks for automate blog How to setup Chef Automate on AWS Configuration Management Tool
scandium How to Test Web Applications Using Scandium Configuration Management Tool
Screenshot 2020 05 14 at 19.43.13 Repo: How to setup Chef Repository Configuration Management Tool
ansible KDC reply did not match expectations while getting initial credential Configuration Management Tool

Comments (2) on “How to configure Kerberos for Ansible Authentication”

  1. Avatar photo Josh says:
    04/10/2020 at 7:34 PM

    Amazing!

    Log in to Reply
    1. chris Christian says:
      25/11/2020 at 2:07 PM

      Thank you, I am glad you found this guide useful!

      Log in to Reply

Leave a Reply Cancel reply

You must be logged in to post a comment.

Microsoft MVP

VEEAMLEGEND

vexpert-badge-stars-5

Virtual Background

GoogleNews

Categories

veeaam100

Veeam Vanguard

  • Screenshot 2022 03 21 at 18.06.30
    How to Configure Virtual Host for Apache HTTP Web Server to Host Several Domains on Ubuntu 20.04 LTS Linux
  • FEATUREDC
    How to create Confidential VMs in Azure AWS/Azure/OpenShift
  • Local System Account
    How to Run a Program in Windows as the Local System Account Windows
  • Snapshot VMware vSphere
    How to Create a Snapshot on vSphere Web Client Virtualization
  • Windows server 2016 606x400 1
    How to install Windows Server 2016 Operating System on VirtualBox Windows Server
  • How to Register Devices to Microsoft Intune and EntraID Using My Company Portal
    Register Devices to Intune and EntraID Using Company Portal AWS/Azure/OpenShift
  • ghm
    Single App Kiosk Mode Configuration using MDM Bridge WMI Provider Windows
  • Temp Files
    Recover Temp Files using Disk Drill etc on Windows 10 and 11 Windows

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 1,762 other subscribers
  • RSS - Posts
  • RSS - Comments
  • About
  • Authors
  • Write for us
  • Contact
  • Advertise with us
  • General Terms and Conditions
  • Privacy policy
  • Feedly
  • Telegram
  • Youtube
  • Facebook
  • Instagram
  • LinkedIn
  • Tumblr
  • Pinterest
  • Twitter
  • mastodon
  • Bsky

Tags

Active Directory Azure Bitlocker Microsoft Windows PowerShell WDS Windows 10 Windows 11 Windows Deployment Services Windows Server 2016

Copyright © 2026 TechDirectArchive

Loading Comments...

You must be logged in to post a comment.