I have been studying Kerberos, and I am confused with which component sent the Ticket Granting Ticket(TGT) from KDC back to the Client?
Some of the source I come across says, TGT originated from Ticket Granting Service(TGS), which I think is very logically sounded, since it make sense that a ticket(i.e. TGT) is granted by a Ticker granting service.
However, some other source like these (https://software.intel.com/sites/manageability/AMT_Implementation_and_Reference_Guide/default.htm?turl=WordDocuments%2Fintroductiontokerberosauthentication.htm)
The Authorization Server verifies the user’s access rights in the user database and creates a TGT and session key. The Authorization Sever encrypts the results using a key derived from the user’s password and sends a message back to the user workstation.
implies that TGT originated from Authentication Service (AS).
So, my question is: where does Kerberos TGT originated from? AS or TGS? I am more toward AS myself based on the above source but would like more input on this topic, thanks.