@sullrich:
Take a look at /etc/inc/pfsense-utils.inc
In paticular:
enable_rrd_graphing()
Thank you sullrich for the tip.
I am using pfsense in a very pequliar way, you can find in :
http://forum.pfsense.org/index.php/topic,772.msg4635.html#msg4635
Since my original post, the ethernet card of the LAN interface, totally useless to my wireless community application, gave it's seat on the PCI bus to a 3rd wireless card, shrinking to a vlan opt that serves nothing.
This, as an update.
The important thing is that by looking at your mentioned file, I now have quality rrd graphing on one of my wireless links.
My coding skills are just not existing, so my implementation is the "crude" way.
a) For my setup the quality of the WAN interface is of minimal importance. It is directly wired to the cisco router.
So, I changed the if statement :
if("$ifname" == "wan") {
/* create link quality database */
to the Atheros card interface :
if("$ifname" == "opt2")
b) Then, I had to change the ip address it is pinging to. I did this by "hardwiring" the ip of my peer's wireless card.
I know, it's not a very educated way, but it works.
out=$btick ping -c $numpings -q $gatewayip $btick
this was changed to :
out=$btick ping -c $numpings -q aaa.bbb.ccc.ddd $btick
The next thing I have to figure out is which part of the code I have to duplicate to provide the same service for the other two wireless interfaces.
Any help on this will be appreciated.
If I had the required programming skills, I would have included a parameter box in the wireless interface web page for setting the ip to be pinged.
But I am not a programmer, nor a purist, so even so it's a nice thing to have.