Hello, i just ran the lastest VM RADIUSdesk-2016-5-1.ova . I assume everything here is already setup. I created an permanent user (with radius autherntication and accounting checked) profile and added "check" attribute Simultaneous-Use:=1 . And i am still able to use more devices to connect with the same user profile.
Also i have tried to add only a specific MAC address with check attribute Calling-Station-Id , but i am still able to connect with outher devices.
Also tried to add a device via BYOD manager and checked "Connect only from listed devices". but still able to connect with other devices.
Am i missing something ?
Thanks.
Last edit: Dulus 2016-11-24
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello, i just ran the lastest VM RADIUSdesk-2016-5-1.ova . I assume everything here is already setup. I created an permanent user (with radius autherntication and accounting checked) profile and added "check" attribute Simultaneous-Use:=1 . And i am still able to use more devices to connect with the same user profile.
Also i have tried to add only a specific MAC address with check attribute Calling-Station-Id , but i am still able to connect with outher devices.
Also tried to add a device via BYOD manager and checked "Connect only from listed devices". but still able to connect with other devices.
Am i missing something ?
Thanks.
Last edit: Dulus 2016-11-24
check your mysql file. ../raddb/mods-config/sql/main/mysql/queries.conf
Uncomment simul_count_query to enable simultaneous use checking
simul_count_query = "\
SELECT COUNT(*) \
FROM ${acct_table1} \
WHERE username = '%{SQL-User-Name}' \
AND acctstoptime IS NULL"
simul_verify_query = "\
SELECT \
radacctid, acctsessionid, username, nasipaddress, nasportid, framedipaddress, \
callingstationid, framedprotocol \
FROM ${acct_table1} \
WHERE username = '%{SQL-User-Name}' \
AND acctstoptime IS NULL"
I havent found the path you have mentioned, but i have found :
/etc/freeradius/mods-config/sql/main/mysql/queries.conf
and in that file that line is uncommented as you can see below:
Last edit: Dulus 2016-12-06