嗨,我正在尝试使用Kerberos建立到安慰队列的安全连接。我已经使用Solace开发了一个客户端应用程序。据我所知,为了实现安全连接,我们需要实现以下步骤:
1)在Solace目录中添加一个keytab
2)使用SolAdmin在Solace上执行某些配置命令
3)导入Kerberos库并在客户端应用程序上设置某些属性。
以下是我对这个话题的怀疑
1)我想知道这些是否是我们需要遵循的安全连接步骤?
2)键标签在建立安全连接中扮演什么角色?
3)如何为使用kerberos的安全连接设置用户名和密码,还是默认情况下提供?
4)除了导入kerberos库和设置一些属性之外,还有什么应该作为客户端应用程序的一部分来完成吗?
发布于 2017-02-02 21:01:07
使用keytab是因为Solace设备作为一个“应用程序”不能使用用户/通过身份验证,所以所有的auth都在Keytab中。
Kerberos和Solace之间的逻辑交互如下:
要使用Kerberos对连接到Solace路由器的客户端进行身份验证,需要进行以下配置:
客户端配置
安慰路由器配置
1. SolOS 7.0 or greater must be used.
2. A Kerberos Keytab must be loaded on the router.
3. Kerberos authentication must be configured and enabled for any Message VPNs that Kerberos-authenticated clients will connect to.
4. Optionally, a Kerberos Service Principal Name (SPN) can be assigned to the IP address for the message backbone VRF that will be
used for Kerberos authenticated clients.https://stackoverflow.com/questions/41960459
复制相似问题