Why does Kerberos authentication use T125 protocol? I believe Kerberos authentication behaves this way:
- Client asks for a ticket to the Kerberos authority
- The Kerberos authority provides a Ticket to the client
- The Client tries to authenticate towards a Server and sends to the server this Ticket.
- The Server verifies the Ticket is OK with the Kerberos Authority, and authenticates the Client.
Now, where, in this process, is used T125 and why?
And does the Client send the Ticket any time it tries to access (e.g: for each HTTP GET page) to the Server and the Server checks this Ticket any time, or is it just once at the beginning of the "conversation"?
Thank you!