Online / Offline Status Notification System via push
-
you may might be able to utilize some code from interfaces>assign or status>interfaces. Both these screens show information on which nic is assigned to which uinterfacename.
-
do you refer to PHP pages?
-
Yes.
-
I'm there now, still cant find the file weher intergface assigments are stored… unles its webguiconfig.in
-
$g['varrun_path'] . "/lan.conf.dirty";
Is that config I need? what tha value of g[varrun_path]?
-
/etc/inc/globals.inc
-
actually I was fullish and miss the part in the main confog file that is cleraly saying LAN=eth1 etc in the XML file, just as usual…. so now im looking on how to read XML w/ bash script... aperantly i have no idea how to do that...
-
Erm, I dont think there is a EASY way to do this. Good luck!
-
Good, so at the end you wont tell me that my script is too easy :-P
-
Technically you could call php from your bash script and echo out the values after parsing but this is going to be SLLLOOOW.
-
well besides slow it will eat extra ~15% of CPU, for wrap that is not an option. And in combination to the fact that the script does HTTP request to the external server I definettly dont want to call PHP XML parser… in my case I will have to call it min 2 times and the 3rd will be external HTTP request.
Well lets see what i end up with. Im sure linux/bsd shuld have ability to read xml files.
-
lets take a look at it from a difrent side and use the pfsense rules file and get there the lan and wan from
#!/bin/sh lan=`awk '/lan = "\{ /{ print $0 }' /tmp/rules.debug | sed -e 's/lan = "{ //' | sed -e 's/ }"//'` wan=`awk '/wan = "\{ /{ print $0 }' /tmp/rules.debug | sed -e 's/wan = "{ //' | sed -e 's/ }"//'` echo "lan interface=" $lan echo "wan interface=" $wan
-
nice that screept does work.. i was doing almost the same w/ xml just now… but as I see in that example it uses temp dir? is that dor will be included in future releases? is that dir exist in mono, and finally what rules does it refering to? firewall rules? what if NAT is disabled?
Tnx -
i have made that script on a running pfsense embedded 1.01 soekris
/tmp/rules.debug is the running firewall config of pfsense
mono will have it to i think
nat on or off will not chance the lan of wan interface on the firewall -
ok if that folder is permament and present on both mono and pfSense I will use it …
Less hedeach reading XML file for me..Tnx
-
Ok, operational script partd is done! Now time to build user enterface. PHP time :-) well almowst php + DNS, I hate my DNS…
-
Ok, good part of Webinterface is done now.
One problem, I was trying to use fetch instead of wget (as sudgested earlier) but a) I cant make it to work b) it doesnt work as spiderSo, is it posible to install WGET to the system and include it in the distribution?
-
What doesn't work with fetch?
-
everithing, I tryed all posible syntax and never got it to work …
Can you give me a sample code on using fatch to open lets say http://example.com and do not download any info?
-
What do you mean "do not download any info?"
Do you mean quiet?