Parameters removed after summon

Hi everyone,

we have been using GenieACS for a few years and recently got a new firmware for our routers. Now, we have to edit all the provisions and add the new settings. I would therefore like to obtain all the device parameters in order to look at the new structure.

For this I do the following in the summon for the device:
declare(“InternetGatewayDevice.*.*.*.*.*.*”, {path: now});
In the next step I want to get all the possible values. The best I can get is one after another or as a start
declare(“InternetGatewayDevice.*.*.*.*”, {value: now});

Now it shows “Displaying 1040 out of 1040 parameters” in the list, but if I scan the “wrong tree” (maybe with too many parameters) or execute the commands again in the next summon, it goes down to “Displaying 638 out of 638 parameters.”
I looked at the database, and with 1,040 parameters, the device has 5,018 lines. After the new summon, this number drops to 4,655. Some parameters have been deleted, and some have lost their attributes, such as ‘timestamp’ or ‘value’.
When I try to retrieve the parameters individually, sometimes the number goes up to 2,000, but a moment later it drops back down to around 600.
In this state, I cannot get more parameters with a summon, and I have to delete and re-add the device.

What can cause this problem? In the logs I don’t see anything about it. Sometimes it’s “Too many RPC requests” but this shouldn’t delete the parameters.
Does anyone have any ideas on how to solve the problem, or any better ideas for finding the right settings in the parameters?

WHY are you refreshing every parameter? GenieACS is designed to only pull back the minimum amount data needed from the CPE to perform the operation at hand.

How can I find the path to the values I need for a provisioning script to get or set without a test device where I can see the full structure?

For example, the name value for the first 5 GHz Wifi of the old device is under “InternetGatewayDevice.X_00507F_WirelessLAN_5G.General.SSID.1.ESSID”
On the new device it’s (only guesses) “InternetGatewayDevice.X_001DAA.Configuration.Wireless_LAN.SSID”
or maybe under the “InternetGatewayDevice.X_001DAA.Wireless.Device” section.

Manually refresh the tree for the model in question in your development environment. There is no need to refresh the entire data model for every device in your network. It will swell the amount of (useless) data stored in your Mongo instance.

Why do you have to use vendor specific params for SSID? The TR-069 spec has a WLANConfiguration param that holds the SSID.

It’s not about “every device in my network”. This is just for one device so I can find every settings of the device. Manually refreshing every single tree and parameter (what would took me days to find every parameter) doesn’t sound like a good solution compared to writing two lines to get a list of everything I need. If you mean refreshing the entire tree with one click, that isn’t possible. I only get a few parameters with this method.
After I created the scripts I delete the dev device.

The reason I have to use vendor-specific parameters for most of the options is because setting them otherwise doesn’t work for most of them. The manufacturer has its own paid acs and does not explicitly like other systems.

For what its worth, it takes me 5 mins to manually refresh all the trees of interest. There are only a few dozen parameters that live off of InternetGatewayDevice./Device.

I’m going to call out your vendor DrayTek as terrible.

So…are you saying that DrayTek is the reason why the parameters in the database got deleted if I refresh too many of them in GenieACS?

No, I’m saying DrayTek is terrible for not implementing the TR-069 spec.

Now I was going back to this problem again.
I found the specific parameter for the lan-ip and the next time I tried to get the value of it, most of the parameters in genieacs got wiped (before 750, now 540) from the list and I get the error “Cannot read properties of undefined”.

If it’s not a genieacs problem, how is the router able to tell genieacs to delete a list of parameters?

Sounds like the problem is in a provision script. I’d check there. Maybe turn on debug.

I have already excluded this device from every provision script because its parameters are completely different from those of the other devices I have. For now I am only trying to get some values.

This is the debug log for one periodic inform:

---
event: incoming HTTP request
timestamp: 2026-09-21T09:30:23.251Z
remoteAddress: ******
deviceId: 001DAA-Vigor2767ax-1449BC9CF618
connection: 2026-09-21T09:30:23.251Z
localPort: 7547
method: POST
url: /
headers: 
  host: ******:7547
  user-agent: CPE Agent
  accept: */*
  content-type: text/xml; charset=utf-8
  content-length: "4940"
body: >
  <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"
  xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/"
  xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
  xmlns:xsd="http://www.w3.org/1999/XMLSchema"
  xmlns:cwmp="urn:dslforum-org:cwmp-1-0">
  <soap-env:Header>
  <cwmp:ID soap-env:mustUnderstand="1">6</cwmp:ID>
  </soap-env:Header>
  <soap-env:Body>
  <cwmp:Inform>
  <DeviceId xsi:type="cwmp:DeviceIdStruct">
  <Manufacturer xsi:type="xsd:string">DrayTek</Manufacturer>
  <OUI xsi:type="xsd:string">001DAA</OUI>
  <ProductClass xsi:type="xsd:string">Vigor2767ax</ProductClass>
  <SerialNumber xsi:type="xsd:string">1449BC9CF618</SerialNumber>
  </DeviceId>
  <Event soap-enc:arrayType="cwmp:EventStruct[1]">
  <EventStruct>
  <EventCode xsi:type="xsd:string">2 PERIODIC</EventCode>
  <CommandKey></CommandKey>
  </EventStruct>
  </Event>
  <MaxEnvelopes xsi:type="xsd:unsignedInt">1</MaxEnvelopes>
  <CurrentTime xsi:type="xsd:dateTime">2026-09-21T11:30:23</CurrentTime>
  <RetryCount xsi:type="xsd:unsignedInt">0</RetryCount>
  <ParameterList soap-enc:arrayType="cwmp:ParameterValueStruct[21]">
  <ParameterValueStruct>
  <Name xsi:type="xsd:string">InternetGatewayDevice.DeviceSummary</Name>
  <Value xsi:type="xsd:string"></Value>
  </ParameterValueStruct>
  <ParameterValueStruct>
  <Name xsi:type="xsd:string">InternetGatewayDevice.DeviceInfo.Manufacturer</Name>
  <Value xsi:type="xsd:string">DrayTek</Value>
  </ParameterValueStruct>
  <ParameterValueStruct>
  <Name xsi:type="xsd:string">InternetGatewayDevice.DeviceInfo.ProductClass</Name>
  <Value xsi:type="xsd:string">Vigor2767ax</Value>
  </ParameterValueStruct>
  <ParameterValueStruct>
  <Name xsi:type="xsd:string">InternetGatewayDevice.DeviceInfo.ModelName</Name>
  <Value xsi:type="xsd:string">Vigor2767ax</Value>
  </ParameterValueStruct>
  <ParameterValueStruct>
  <Name xsi:type="xsd:string">InternetGatewayDevice.DeviceInfo.SerialNumber</Name>
  <Value xsi:type="xsd:string">1449BC9CF618</Value>
  </ParameterValueStruct>
  <ParameterValueStruct>
  <Name xsi:type="xsd:string">InternetGatewayDevice.DeviceInfo.SpecVersion</Name>
  <Value xsi:type="xsd:string">V1.0</Value>
  </ParameterValueStruct>
  <ParameterValueStruct>
  <Name
  xsi:type="xsd:string">InternetGatewayDevice.DeviceInfo.HardwareVersion</Name>
  <Value xsi:type="xsd:string">V1.0</Value>
  </ParameterValueStruct>
  <ParameterValueStruct>
  <Name
  xsi:type="xsd:string">InternetGatewayDevice.DeviceInfo.SoftwareVersion</Name>
  <Value xsi:type="xsd:string">5.4.4.1</Value>
  </ParameterValueStruct>
  <ParameterValueStruct>
  <Name
  xsi:type="xsd:string">InternetGatewayDevice.DeviceInfo.ProvisioningCode</Name>
  <Value xsi:type="xsd:string">Vigor2767ax</Value>
  </ParameterValueStruct>
  <ParameterValueStruct>
  <Name
  xsi:type="xsd:string">InternetGatewayDevice.DeviceInfo.SupportCommonUI</Name>
  <Value xsi:type="xsd:string">true</Value>
  </ParameterValueStruct>
  <ParameterValueStruct>
  <Name xsi:type="xsd:string">InternetGatewayDevice.DeviceInfo.isDrayOS5</Name>
  <Value xsi:type="xsd:string">true</Value>
  </ParameterValueStruct>
  <ParameterValueStruct>
  <Name
  xsi:type="xsd:string">InternetGatewayDevice.ManagementServer.ConnectionRequestURL</Name>
  <Value xsi:type="xsd:string">https://******:8069</Value>
  </ParameterValueStruct>
  <ParameterValueStruct>
  <Name
  xsi:type="xsd:string">InternetGatewayDevice.ManagementServer.ParameterKey</Name>
  <Value xsi:type="xsd:string"></Value>
  </ParameterValueStruct>
  <ParameterValueStruct>
  <Name
  xsi:type="xsd:string">InternetGatewayDevice.ManagementServer.ConnectionRequestUsername</Name>
  <Value xsi:type="xsd:string">vigor</Value>
  </ParameterValueStruct>
  <ParameterValueStruct>
  <Name xsi:type="xsd:string">InternetGatewayDevice.ManagementServer.URL</Name>
  <Value xsi:type="xsd:string">http://******:7547/</Value>
  </ParameterValueStruct>
  <ParameterValueStruct>
  <Name
  xsi:type="xsd:string">InternetGatewayDevice.ManagementServer.STUNEnable</Name>
  <Value xsi:type="xsd:string">true</Value>
  </ParameterValueStruct>
  <ParameterValueStruct>
  <Name
  xsi:type="xsd:string">InternetGatewayDevice.ManagementServer.UDPConnectionRequestAddress</Name>
  <Value xsi:type="xsd:string"></Value>
  </ParameterValueStruct>
  <ParameterValueStruct>
  <Name
  xsi:type="xsd:string">InternetGatewayDevice.ManagementServer.NATDetected</Name>
  <Value xsi:type="xsd:string">false</Value>
  </ParameterValueStruct>
  <ParameterValueStruct>
  <Name xsi:type="xsd:string">InternetGatewayDevice.XMPP.Connection.Status</Name>
  <Value xsi:type="xsd:string">Disabled</Value>
  </ParameterValueStruct>
  <ParameterValueStruct>
  <Name
  xsi:type="xsd:string">InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.ExternalIPAddress</Name>
  <Value xsi:type="xsd:string">******</Value>
  </ParameterValueStruct>
  <ParameterValueStruct>
  <Name xsi:type="xsd:string">InternetGatewayDevice.DeviceInfo.AuthKey</Name>
  <Value xsi:type="xsd:string">******</Value>
  </ParameterValueStruct>
  </ParameterList>
  </cwmp:Inform>
  </soap-env:Body>
  </soap-env:Envelope>
---
event: outgoing HTTP response
timestamp: 2026-09-21T09:30:23.251Z
remoteAddress: ******
deviceId: 001DAA-Vigor2767ax-1449BC9CF618
connection: 2026-09-21T09:30:23.251Z
statusCode: 200
headers: 
  content-length: 521
  server: GenieACS/1.2.16+26033038e9
  soapserver: GenieACS/1.2.16+26033038e9
  content-type: text/xml; charset="utf-8"
  set-cookie: session=593e95e20aa55a51
body: >-
  <?xml version="1.0" encoding="UTF-8"?>
  <soap-env:Envelope xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/"
  xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"
  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:cwmp="urn:dslforum-org:cwmp-1-0"><soap-env:Header><cwmp:ID
  soap-env:mustUnderstand="1">6</cwmp:ID></soap-env:Header><soap-env:Body><cwmp:InformResponse><MaxEnvelopes>1</MaxEnvelopes></cwmp:InformResponse></soap-env:Body></soap-env:Envelope>
---
event: incoming HTTP request
timestamp: 2026-09-21T09:30:23.255Z
remoteAddress: ******
deviceId: 001DAA-Vigor2767ax-1449BC9CF618
connection: 2026-09-21T09:30:23.251Z
localPort: 7547
method: POST
url: /
headers: 
  host: ******:7547
  user-agent: CPE Agent
  accept: */*
  content-type: text/xml; charset=utf-8
  content-length: "0"
  cookie: session=593e95e20aa55a51
body: ""
---
event: outgoing HTTP response
timestamp: 2026-09-21T09:30:23.263Z
remoteAddress: ******
deviceId: 001DAA-Vigor2767ax-1449BC9CF618
connection: 2026-09-21T09:30:23.251Z
statusCode: 200
headers: 
  content-length: 615
  server: GenieACS/1.2.16+26033038e9
  soapserver: GenieACS/1.2.16+26033038e9
  content-type: text/xml; charset="utf-8"
body: >-
  <?xml version="1.0" encoding="UTF-8"?>
  <soap-env:Envelope xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/"
  xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"
  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:cwmp="urn:dslforum-org:cwmp-1-0"><soap-env:Header><cwmp:ID
  soap-env:mustUnderstand="1">1a0c34d60890100</cwmp:ID></soap-env:Header><soap-env:Body><cwmp:GetParameterNames><ParameterPath>InternetGatewayDevice.X_001DAA.Configuration.LAN.</ParameterPath><NextLevel>0</NextLevel></cwmp:GetParameterNames></soap-env:Body></soap-env:Envelope>
---
event: incoming HTTP request
timestamp: 2026-09-21T09:30:23.267Z
remoteAddress: ******
deviceId: 001DAA-Vigor2767ax-1449BC9CF618
connection: 2026-09-21T09:30:23.251Z
localPort: 7547
method: POST
url: /
headers: 
  host: ******:7547
  user-agent: CPE Agent
  accept: */*
  content-type: text/xml; charset=utf-8
  content-length: "4944"
  cookie: session=593e95e20aa55a51
body: >
  <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"
  xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/"
  xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
  xmlns:xsd="http://www.w3.org/1999/XMLSchema"
  xmlns:cwmp="urn:dslforum-org:cwmp-1-0">
  <soap-env:Header>
  <cwmp:ID soap-env:mustUnderstand="1">1a0c34d60890100</cwmp:ID>
  </soap-env:Header>
  <soap-env:Body>
  <cwmp:GetParameterNamesResponse>
  <ParameterList soap-enc:arrayType="cwmp:ParameterInfoStruct[27]">
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.X_001DAA.Configuration.LAN.</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.X_001DAA.Configuration.LAN.LAN_StatusNumberOfEntries</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name
  X_001DAA_MENU="leaf">InternetGatewayDevice.X_001DAA.Configuration.LAN.LAN_Status.</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.X_001DAA.Configuration.LAN.Port_UsageNumberOfEntries</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name
  X_001DAA_MENU="leaf">InternetGatewayDevice.X_001DAA.Configuration.LAN.Port_Usage.</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.X_001DAA.Configuration.LAN.LAN_Status_IPv6NumberOfEntries</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name
  X_001DAA_MENU="leaf">InternetGatewayDevice.X_001DAA.Configuration.LAN.LAN_Status_IPv6.</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.X_001DAA.Configuration.LAN.LAN_Status_TabsNumberOfEntries</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name
  X_001DAA_MENU="leaf">InternetGatewayDevice.X_001DAA.Configuration.LAN.LAN_Status_Tabs.</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.X_001DAA.Configuration.LAN.LAN_Networks_RNumberOfEntries</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name
  X_001DAA_MENU="leaf">InternetGatewayDevice.X_001DAA.Configuration.LAN.LAN_Networks_R.</Name>
  <Writable>1</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.X_001DAA.Configuration.LAN.Bind_IPNumberOfEntries</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name
  X_001DAA_MENU="leaf">InternetGatewayDevice.X_001DAA.Configuration.LAN.Bind_IP.</Name>
  <Writable>1</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.X_001DAA.Configuration.LAN.LAN_DHCP_OPTIONSNumberOfEntries</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name
  X_001DAA_MENU="leaf">InternetGatewayDevice.X_001DAA.Configuration.LAN.LAN_DHCP_OPTIONS.</Name>
  <Writable>1</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.X_001DAA.Configuration.LAN.LAN_INTER_ROUTENumberOfEntries</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name
  X_001DAA_MENU="leaf">InternetGatewayDevice.X_001DAA.Configuration.LAN.LAN_INTER_ROUTE.</Name>
  <Writable>1</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.X_001DAA.Configuration.LAN.ETH_VLANNumberOfEntries</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name
  X_001DAA_MENU="leaf">InternetGatewayDevice.X_001DAA.Configuration.LAN.ETH_VLAN.</Name>
  <Writable>1</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.X_001DAA.Configuration.LAN.INTERFACE_VLANNumberOfEntries</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name
  X_001DAA_MENU="leaf">InternetGatewayDevice.X_001DAA.Configuration.LAN.INTERFACE_VLAN.</Name>
  <Writable>1</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.X_001DAA.Configuration.LAN.LAN_PORT_dot1XNumberOfEntries</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name
  X_001DAA_MENU="leaf">InternetGatewayDevice.X_001DAA.Configuration.LAN.LAN_PORT_dot1X.</Name>
  <Writable>1</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.X_001DAA.Configuration.LAN.LAN_MirrorNumberOfEntries</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name
  X_001DAA_MENU="leaf">InternetGatewayDevice.X_001DAA.Configuration.LAN.LAN_Mirror.</Name>
  <Writable>1</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.X_001DAA.Configuration.LAN.LAN_OBJECT_BACKUP_RESTORENumberOfEntries</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name
  X_001DAA_MENU="leaf">InternetGatewayDevice.X_001DAA.Configuration.LAN.LAN_OBJECT_BACKUP_RESTORE.</Name>
  <Writable>1</Writable>
  </ParameterInfoStruct>
  </ParameterList>
  </cwmp:GetParameterNamesResponse>
  </soap-env:Body>
  </soap-env:Envelope>
---
event: outgoing HTTP response
timestamp: 2026-09-21T09:30:23.282Z
remoteAddress: ******
deviceId: 001DAA-Vigor2767ax-1449BC9CF618
connection: 2026-09-21T09:30:23.251Z
statusCode: 200
headers: 
  content-length: 637
  server: GenieACS/1.2.16+26033038e9
  soapserver: GenieACS/1.2.16+26033038e9
  content-type: text/xml; charset="utf-8"
body: >-
  <?xml version="1.0" encoding="UTF-8"?>
  <soap-env:Envelope xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/"
  xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"
  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:cwmp="urn:dslforum-org:cwmp-1-0"><soap-env:Header><cwmp:ID
  soap-env:mustUnderstand="1">1a0c34d60890101</cwmp:ID></soap-env:Header><soap-env:Body><cwmp:GetParameterValues><ParameterNames
  soap-enc:arrayType="xsd:string[1]"><string>InternetGatewayDevice.DeviceInfo.UpTime</string></ParameterNames></cwmp:GetParameterValues></soap-env:Body></soap-env:Envelope>
---
event: incoming HTTP request
timestamp: 2026-09-21T09:30:23.416Z
remoteAddress: ******
deviceId: 001DAA-Vigor2767ax-1449BC9CF618
connection: 2026-09-21T09:30:23.251Z
localPort: 7547
method: POST
url: /
headers: 
  host: ******:7547
  user-agent: CPE Agent
  accept: */*
  content-type: text/xml; charset=utf-8
  content-length: "765"
  cookie: session=593e95e20aa55a51
body: >
  <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"
  xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/"
  xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
  xmlns:xsd="http://www.w3.org/1999/XMLSchema"
  xmlns:cwmp="urn:dslforum-org:cwmp-1-0">
  <soap-env:Header>
  <cwmp:ID soap-env:mustUnderstand="1">1a0c34d60890101</cwmp:ID>
  </soap-env:Header>
  <soap-env:Body>
  <cwmp:GetParameterValuesResponse>
  <ParameterList soap-enc:arrayType="cwmp:ParameterValueStruct[1]">
  <ParameterValueStruct>
  <Name xsi:type="xsd:string"
  X_001DAA_METHOD="text">InternetGatewayDevice.DeviceInfo.UpTime</Name>
  <Value xsi:type="xsd:int">437</Value>
  </ParameterValueStruct>
  </ParameterList>
  </cwmp:GetParameterValuesResponse>
  </soap-env:Body>
  </soap-env:Envelope>
---
event: outgoing HTTP response
timestamp: 2026-09-21T09:30:23.420Z
remoteAddress: ******
deviceId: 001DAA-Vigor2767ax-1449BC9CF618
connection: 2026-09-21T09:30:23.251Z
statusCode: 200
headers: 
  content-length: 588
  server: GenieACS/1.2.16+26033038e9
  soapserver: GenieACS/1.2.16+26033038e9
  content-type: text/xml; charset="utf-8"
body: >-
  <?xml version="1.0" encoding="UTF-8"?>
  <soap-env:Envelope xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/"
  xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"
  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:cwmp="urn:dslforum-org:cwmp-1-0"><soap-env:Header><cwmp:ID
  soap-env:mustUnderstand="1">1a0c34d60890102</cwmp:ID></soap-env:Header><soap-env:Body><cwmp:GetParameterNames><ParameterPath>InternetGatewayDevice.</ParameterPath><NextLevel>1</NextLevel></cwmp:GetParameterNames></soap-env:Body></soap-env:Envelope>
---
event: incoming HTTP request
timestamp: 2026-09-21T09:30:23.424Z
remoteAddress: ******
deviceId: 001DAA-Vigor2767ax-1449BC9CF618
connection: 2026-09-21T09:30:23.251Z
localPort: 7547
method: POST
url: /
headers: 
  host: ******:7547
  user-agent: CPE Agent
  accept: */*
  content-type: text/xml; charset=utf-8
  content-length: "2007"
  cookie: session=593e95e20aa55a51
body: >
  <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"
  xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/"
  xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
  xmlns:xsd="http://www.w3.org/1999/XMLSchema"
  xmlns:cwmp="urn:dslforum-org:cwmp-1-0">
  <soap-env:Header>
  <cwmp:ID soap-env:mustUnderstand="1">1a0c34d60890102</cwmp:ID>
  </soap-env:Header>
  <soap-env:Body>
  <cwmp:GetParameterNamesResponse>
  <ParameterList soap-enc:arrayType="cwmp:ParameterInfoStruct[12]">
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.LANDeviceNumberOfEntries</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.WANDeviceNumberOfEntries</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.DeviceInfo.</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.X_00507F_Status.</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.X_00507F_LAN.</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.ManagementServer.</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.XMPP.</Name>
  <Writable>1</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.LANDevice.</Name>
  <Writable>1</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.WANDevice.</Name>
  <Writable>1</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.IPPingDiagnostics.</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.TraceRouteDiagnostics.</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  <ParameterInfoStruct>
  <Name>InternetGatewayDevice.X_001DAA.</Name>
  <Writable>0</Writable>
  </ParameterInfoStruct>
  </ParameterList>
  </cwmp:GetParameterNamesResponse>
  </soap-env:Body>
  </soap-env:Envelope>
---
event: outgoing HTTP response
timestamp: 2026-09-21T09:30:23.427Z
remoteAddress: ******
deviceId: 001DAA-Vigor2767ax-1449BC9CF618
connection: 2026-09-21T09:30:23.251Z
statusCode: 200
headers: 
  content-length: 644
  server: GenieACS/1.2.16+26033038e9
  soapserver: GenieACS/1.2.16+26033038e9
  content-type: text/xml; charset="utf-8"
body: >-
  <?xml version="1.0" encoding="UTF-8"?>
  <soap-env:Envelope xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/"
  xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"
  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:cwmp="urn:dslforum-org:cwmp-1-0"><soap-env:Header><cwmp:ID
  soap-env:mustUnderstand="1">1a0c34d60890103</cwmp:ID></soap-env:Header><soap-env:Body><cwmp:GetParameterValues><ParameterNames
  soap-enc:arrayType="xsd:string[1]"><string>InternetGatewayDevice.LANDeviceNumberOfEntries</string></ParameterNames></cwmp:GetParameterValues></soap-env:Body></soap-env:Envelope>
---
event: incoming HTTP request
timestamp: 2026-09-21T09:30:23.458Z
remoteAddress: ******
deviceId: 001DAA-Vigor2767ax-1449BC9CF618
connection: 2026-09-21T09:30:23.251Z
localPort: 7547
method: POST
url: /
headers: 
  host: ******:7547
  user-agent: CPE Agent
  accept: */*
  content-type: text/xml; charset=utf-8
  content-length: "755"
  cookie: session=593e95e20aa55a51
body: >
  <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"
  xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/"
  xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
  xmlns:xsd="http://www.w3.org/1999/XMLSchema"
  xmlns:cwmp="urn:dslforum-org:cwmp-1-0">
  <soap-env:Header>
  <cwmp:ID soap-env:mustUnderstand="1">1a0c34d60890103</cwmp:ID>
  </soap-env:Header>
  <soap-env:Body>
  <cwmp:GetParameterValuesResponse>
  <ParameterList soap-enc:arrayType="cwmp:ParameterValueStruct[1]">
  <ParameterValueStruct>
  <Name
  xsi:type="xsd:string">InternetGatewayDevice.LANDeviceNumberOfEntries</Name>
  <Value xsi:type="xsd:unsignedInt">1</Value>
  </ParameterValueStruct>
  </ParameterList>
  </cwmp:GetParameterValuesResponse>
  </soap-env:Body>
  </soap-env:Envelope>
---
event: outgoing HTTP response
timestamp: 2026-09-21T09:30:23.467Z
remoteAddress: ******
deviceId: 001DAA-Vigor2767ax-1449BC9CF618
connection: 2026-09-21T09:30:23.251Z
statusCode: 204
headers: 
  content-length: 0
  server: GenieACS/1.2.16+26033038e9
  soapserver: GenieACS/1.2.16+26033038e9
  connection: close
body: ""

After this, the parameter list goes down to about 540.
I compared this with the older models and it seems that the old models send an HTTP request for each parameter separately within a periodic inform, rather than sending a list.