Notes |
|
(0002414)
|
bonald
|
2011-11-01 10:51
|
|
not the best way but this will remove the error
$user_name =~ s/\//./g;
Add this to radius.pm line 219
It will replace / with . |
|
|
|
A radius-based work-around is also possible:
- use a realm that would strip the User-Name properly (/etc/raddb/modules/realm)
- override _parseRequest in lib/pf/radius/custom.pm to use Stripped-User-Name instead of User-Name
The advantage of the above work-around is that you will not loose it on upgrades. It's using stable extension points.
Deciding what's a proper pid (characters allowed) is the scope for a larger design problem we intend to solve down the road. |
|
|
|
Ok, we looked into it today and we decided that we are going to fix this. Hang on, it'll be fixed eventually. Meanwhile keep your s///g workaround. |
|
|
|
Fixed in trunk will be released in our next 'major' version which should be soon anyways. |
|
|
|
Released in version 3.1.0. |
|