Hi guys,
I have an error trying to read a simple value from CPE (Wlan SSID) on bootstrap event in v1.2.3
In previous version (v1.1.3), to read this value on bootstrap, i was using this script:
const now = Date.now();
declare("InternetGatewayDevice.LANDevice.1.WLANConfiguration.1.SSID", {value:now});
This script works well without problems in v1.1.3 but now, i have installed the new version 1.2.3 and the same script is throwing me this error:
faultCode: “9002”
faultString: Internal error
setParameterValuesFault: null
I have tried with some functions like:
declare("InternetGatewayDevice.LANDevice.1.WLANConfiguration.1.SSID", {value:now});
declare("InternetGatewayDevice.LANDevice.1.WLANConfiguration.1.SSID", {path:now}, {value:now});
declare("InternetGatewayDevice.LANDevice.1.WLANConfiguration.1.SSID", {path:1}, {value:1});
In all of them i get the same “9002 error” but if i wait some time (about 10 minutes), the value is readed sucessfully and log says:
ACS request; acsRequestId="176d1b146b40000" acsRequestName="GetParameterValues"
There are some missing previous step to let me read this values?
Thanks!