Switch to desktop version  
Volume PPPCLIn and PPPCLOut Reset - Printable Version

+- Ewon Technical Forum (https://techforum.ewon.biz)
+-- Forum: Development (https://techforum.ewon.biz/forum-50.html)
+--- Forum: BASIC Script (https://techforum.ewon.biz/forum-52.html)
+--- Thread: Volume PPPCLIn and PPPCLOut Reset (/thread-2568.html)



Volume PPPCLIn and PPPCLOut Reset - Oestelle - 10-09-2024

Hello everybody,

I would like to reset the 2 PPPCL counters by script.
I saw that this values in the INF file are Read Only.

So, is there a solution to do this action ?

Thank you for your answers

Olivier


RE: Volume PPPCLIn and PPPCLOut Reset - simon - 17-09-2024

Hi Olivier,

There is no build in function to do it.
However you could do a call to http://<ip>/rcgi.bin/wsdForm?svr_PppClRst=1
In BASIC, you can execute this call on the Ewon itself :
GETHTTP "http://adm:adm@10.0.0.53", "/usr/result.txt", "/rcgi.bin/wsdForm?svr_PppClRst=1"


RE: Volume PPPCLIn and PPPCLOut Reset - Oestelle - 25-10-2024

(17-09-2024, 11:30 AM)simon Wrote: Hi Olivier,

There is no build in function to do it.
However you could do a call to http://<ip>/rcgi.bin/wsdForm?svr_PppClRst=1
In BASIC, you can execute this call on the Ewon itself :
GETHTTP "http://adm:adm@10.0.0.53", "/usr/result.txt", "/rcgi.bin/wsdForm?svr_PppClRst=1"

Hi Simon,

thank you for this help.

I will try it quickly.