At present I am using AD groups to assign roles to my users<br>and rejecting users who are not members of the defined groups.<br>    This is being done via the users file which looks like this:<br><br><br>#If you are not in either group, no access is allowed<br>
#FreeRADIUS 2.1<br><br><br>#These are the groups we are checking for Lunar Building staff<br>DEFAULT         Ldap-Group == "lunar-staff"<br>                Aruba-User-Role = "employee"<br><br>DEFAULT         Ldap-Group == "lunar-member"<br>
                Aruba-User-Role = "member"<br><br>DEFAULT         Ldap-group != "lunar-staff", Auth-Type := Reject<br>DEFAULT         Ldap-group != "lunar-member", Auth-Type := Reject<br><br>
#End<br><br>I now want to also include guest users whose credentials are in <br>a MySQL database, what statement do I need to include in my users file<br>to also allow the guest users to authenticate, since my current config<br>
allows only the Ldap Groups. I did have SQL working before I added the<br>reject statements.<br><br>thanks in advance.<br>