Writable parameters

Hello guys,

Could I writable parameters set to unwritable ? There is my screen. I want delete this “pencil”

IP Wan and IP Mgmt N are parameters from HGU unit

Thank you

TP

hi,

Writable parameters arent changeable from acs server because those attributes are defined and enforced by the firmware of the CPE, u can make virtual parameter for ip wan and change in return { writable: false,value: [inform_message, “xsd:string”]};

1 Like

Hi,

something like this ?

i created virtual parameters with name “VirtualWANIP”

“let realParam = declare(“InternetGatewayDevice.WANDevice.1.WANConnectionDevice.2.WANIPConnection.1.ExternalIPAddress”, {value: 1});

return {value: [realParam.value[0], “xsd:string”],writable: false};”

Thank You

Hi

That’s should be correct script , after this modify device page and add your created virtual parameter.

“let realParam = declare(“InternetGatewayDevice.WANDevice.1.WANConnectionDevice.2.WANIPConnection.1.ExternalIPAddress”,{value: Date.now() });

return {value: [realParam.value[0], “xsd:string”],writable: false};”

1 Like