Hi,
the graphs I get from the Mikrotik right now is good. But is it possible for me to create a page to store this graphs from multiple firewalls?
I would like to browse to one page and be able to see graphs from each firewall
Hi,
the graphs I get from the Mikrotik right now is good. But is it possible for me to create a page to store this graphs from multiple firewalls?
I would like to browse to one page and be able to see graphs from each firewall
The images are always in a static location. Just make an HTML file that references them directly, you just need to fill in the IP addresses and the names of the interfaces you want to work with. If you are in Chrome or firefox, you can always right click on an image and select “Copy Image URL”
Here is a VERY ugly quick and dirty example:
Routerboard IPADDRESSHERE:<br>
CPU:<br>
<a href="http://IPADDRESSHERE/graphs/cpu/"><img border=0 src="http://IPADDRESSHERE/graphs/cpu/daily.gif"></a><BR>
RAM:<br>
<a href="http://IPADDRESSHERE/graphs/ram/"><img border=0 src="http://IPADDRESSHERE/graphs/ram/daily.gif"></a><BR>
INTERFACENAME:<br>
<a href="http://IPADDRESSHERE/graphs/iface/INTERFACENAME/"><img border=0 src="http://IPADDRESSHERE/graphs/iface/INTERFACENAME/daily.gif"></a><BR>
Edit: I’m sorry to anyone that makes web pages for a living. There is a reason I’m in networking and not design.
oh, thanks so much. Why didn´t I think of that ![]()