Using DaloRADIUS 1.1-2 on CentOS 6.10 with freeradius 2.2.6 and mysql 14.14 distrib 5.1.73...
Having logged in as "administrator" I go to Management > Profiles > New Profile and create a profile with the following attributes (using the autocomplete feature to find them):-
| Header | Header | Header |
|---|---|---|
| Cell | Cell | Cell |
| Cell | Cell | Cell |
| Vendor | Attribute | Value | Op | Target |
|---|---|---|---|---|
| rfc2865 | Service-Type | Framed-User | = | reply |
| rfc2865 | Framed-Protocol | PPP | = | reply |
| rfc2865 | Framed-IP-Address | 192.168.254.0 | = | reply |
| rfc2865 | Framed-IP-Netmask 255.255.255.0 | = | reply | |
| rfc2865 | Framed-Compression | van-Jacobson-TCP-IP | = | reply |
| rfc2865 | Idle-Timeout | 28800 | = | reply |
| freeradius | Auth-Type | Accept | := | check |
The Service-Type and Framed-Protocol attributes don't get written to the radgroupreply table and Auth-Type doesn't get written to radgroupcheck. Why not? The other attributes get written to radgroupreply as expected.
If I manually add the attributes:-
mysql -uradius -p radius
mysql> insert into radgroupreply (groupname,attribute,op,value) values ('MyGroup', 'Service-Type','=', 'Framed-User');
mysql> insert into radgroupreply (groupname,attribute,op,value) values ('MyGroup',Framed-Protocol,'=','PPP');
mysql> insert into radgroupcheck (groupname,attribute,op,value) values ('MyGroup','Auth-Type',':=','Accept');
then Management > Profiles > Edit Profile shows the new ones.
Anonymous