Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 freeradius mysql 数据库的 radcheck 表中,我可以添加几种密码。
对于 crypt 密码,我可以在哪里存储盐?
通常盐是由 crypt 函数自动添加到散列的,所以你不需要单独存储它。
如果您希望一切都“正常工作”,您应该能够使用以下格式:
Password-With-Header := '{crypt}<crypt output>'
然后:
authorize { sql pap }