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 服务器,并且我想检查用户文件是否具有某个属性,我将如何去做。
我尝试了以下语句,但似乎没有达到拒绝用户的预期效果。
if ("%{wifi_key}" != 'true' { 拒绝 }
感谢您的帮助。
如果它是一个检查项目,它需要是:
if (control:wifi_key != true) { reject }