Ostatnio co¶ tam rzeŒbi³em z integracj± freeradius-a z lms-em. No i w trakcie walk natchn±³em siê na problem z tym ¿e widok nas w kokumnie type pokazywa³ cyferki a freeradius (bynajmniej mój) ich nie rozumie.
Poni¿ej zamieszczam poprawkê w postaci sql-a który przerabia widok nas tak aby pokazywa³ w polu type nazwê typu a nie numerek.
CREATE or REPLACE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `nas` AS SELECT `n`.`id` AS `id` , inet_ntoa( `n`.`ipaddr` ) AS `nasname` , `d`.`shortname` AS `shortname` , `nt`.`name` AS `type` , `d`.`clients` AS `ports` , `d`.`secret` AS `secret` , `d`.`community` AS `community` , `d`.`description` AS `description` FROM (`nodes` `n` JOIN `netdevices` `d` ON ( `n`.`netdev` = `d`.`id` ) JOIN `nastypes` `nt` ON ( `nt`.`id` = `d`.`nastype` ) )WHERE (`n`.`nas` =1)