30 May
2006
30 May
'06
10:50 a.m.
Alexander Serkin <als@cell.ru> wrote:
/opt/fr/etc/raddb/huntgroups[87]: Parse error (check) for entry UNKNOWN: Illegal regular expression in attribute: Calling-Station-Id: ?, *, +, or { } not preceded by valid regular expression
The string contains: Calling-Station-Id =~ "*"
That's not a valid regular expression. * is a modifier that matches zero or more previous tokens. You don't have a previous token, so it's an invalid regex. Alan DeKok.