认证、授权和记账? (PAM、半径)
Radius 和 PAM 有什么区别?
What is the difference between Radius and PAM?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
Radius 和 PAM 有什么区别?
What is the difference between Radius and PAM?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
PAM - 可插拔身份验证模块 - 是一种通用机制,允许您配置系统上的程序使用的身份验证机制,而无需重新编译相关程序。因此,例如,您可以更改系统的基本登录以使用 MD5 散列密码而不是 DES 加密密码,而无需更改(重新编译)登录程序。
RADIUS(远程身份验证拨入用户服务 - 但有人怀疑它是反义词)是一种特定的身份验证机制。有些 PAM 模块可以通过 RADIUS 进行身份验证,就像其他 PAM 模块可以使用 LDAP 或 Unix 密码文件或...进行身份验证一样。
PAM - Pluggable Authentication Modules - is a general mechanism which allows you to configure the authentication mechanism used by programs on your system, without requiring recompilation of the relevant programs. So, for example, you can change your system's basic login to use MD5 hashed passwords instead of DES encrypted passwords, without changing (recompiling) the login program.
RADIUS (Remote Authentication Dial-In User Service - but there's a suspicion it is a backronym) is a specific authentication mechanism. There are PAM modules that can authenticate via RADIUS, just as there are other PAM modules that can authenticate with LDAP or Unix password files or ...