/usr/local/etc/raddb/policy.d/filter:
-
60 filter_username {
-
61 #
-
62 # reject mixed case
-
63 # e.g. "UseRNaMe"
-
64 #
-
65 if (User-Name != "%{tolower:%{User-Name}}") {
-
66 reject
-
67 }
把65-67行注释掉。
如果想对用户名加以限制,可以在这儿加上,如不允许用户名出现“=”,这是许多路由器在拨号失败时会默认添加的一些特殊字符标志:
-
68
-
69 if (User-Name =~ /=/) {
-
70 reject
-
71 }
-
72
阅读(2783) | 评论(0) | 转发(0) |