Hi,
Following the instructions for configuring Munin on the Wiki, I have been able to connect my RB951G running RouterOS 5.24 to my Munin-Master. At the moment, scripts which rely on Telnet access are working fine for me. However, I think there is an issue with a couple of the scripts which use the PHP API.
For the script Firewall Count, the key command appears to be the following:
23: $API->write('/ip/firewall/filter/getall');
However, when I check via SSH there does not appear to be a getall option under ip/firewall/filter anymore:
[admin@MikroTik] /ip firewall filter>
add comment disable edit enable export find move print remove reset-counters reset-counters-all set unset
Any suggestions on an alternative command that will yield the same output as what the script is expecting?
For the script Interface Transfer Rate, the key command appears to be the following:
30: $API->write('/interface/print',false);
31: $API->write('=stats=');
I’m not sure how the command in Line 31 is supposed to be executed, but the script seems to depend on the response returned by this command. Is there a new command that works in a similar manner?