Kerberos 和 T125 协议

发布于 2024-07-05 08:42:30 字数 369 浏览 6 评论 0原文

为什么 Kerberos 身份验证使用 T125 协议? 我相信 Kerberos 身份验证的行为方式如下:

  • 客户端向 Kerberos 授权机构请求票证
  • Kerberos 授权机构向客户端提供票证
  • 客户端尝试向服务器进行身份验证并向服务器发送此票证。
  • 服务器通过 Kerberos Authority 验证票证是否正确,并对客户端进行身份验证。

那么,在这个过程中,哪里使用了T125,为什么?
客户端是否在尝试访问(例如:每个 HTTP GET 页面)时向服务器发送票证,并且服务器随时检查该票证,还是仅在“对话”开始时检查一次?

谢谢你!

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!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岛徒 2024-07-12 08:42:30

不熟悉 T125,但您的 Kerberos 流程有点关闭。
大致:

  1. 用户向 KDC(Kerberos 授权)进行身份验证
  2. KDC 向用户授予 TGT(票证授予票证)
  3. 用户尝试访问服务器
  4. 服务器需要服务器票证,向用户发送一些信息(以识别服务器)
  5. 用户向 KDC 请求服务器票证,发送 TGT服务器信息
  6. KDC 向用户颁发服务器票证
  7. 用户在每次访问时向用户提交服务器票证。

我知道我没有直接回答您的 T125 问题,但我希望这对您有所帮助。

Not familiar with T125, but your Kerberos flow is off a little.
Roughly:

  1. User authenticates to KDC (Kerberos authority)
  2. KDC grants user a TGT (ticket granting ticket)
  3. user tries to access server
  4. Server demands server ticket, sends user some info (to identify the server)
  5. user asks KDC for ticket for server, sends TGT and server info
  6. KDC issues server ticket to user
  7. User submits server ticket to user on every access.

I know I didnt directly answer your T125 question, but I hope this helped anyway.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文