You might have noticed there is a logo of the provider we use in the screenshot of the tool-tip.
This has to be configured in a config file of the RADIUSdesk server.
We have by default the three big providers in South Africa as a reference.
We use the MCC/MNC tuple to identify them and record it in the file /var/www/rdcore/cake4/rd_cake/config/MESHdesk.php
-
$config['MESHdesk']['mobile_providers'] = [
['mcc' => 655, "mnc" => 7, 'name' => 'Cell C', 'country' => 'ZA', 'logo' => 'za_cell_c.png' ],
['mcc' => 655, "mnc" => 10, 'name' => 'MTN', 'country' => 'ZA', 'logo' => 'za_mtn.png' ],
['mcc' => 655, "mnc" => 1, 'name' => 'Vodacom', 'country' => 'ZA', 'logo' => 'za_vodacom.png' ]
];
Simply add the providers you might use to that list.
The logo's are stored under /var/www/rdcore/cake4/rd_cake/webroot/img/mobile_providers/
The recommended height for the logo image is 24px.
Once they are added to the list the tool-tip should be able to source the logo since the router will report the MCC and MNC values that enable the code logic to do a lookup.