<div dir="ltr">I presume your talking about the list of parameters at the top of the page? Last Inform, Serial, Product Class, OUI, Manufacturer, HW/SW Version, etc? The list of items that show on the device page can be changed by editing genieacs-gui/config/summary_parameters.yml. Remember to restart the GUI if you make changes.<div><br></div><div>Now as to why its not letting you edit those, when the CPE sends back the response for GetParameterValues, it indicates if the parameter is writable or not. The implementation on some CPE's is pure crap (Thomson TG585) and will say a parameter is writable when its not, and not writable when it is. Pretty much everything under InternetGatewayDevice.DeviceInfo will be read-only.</div><div><br></div><div>If you want to add to, or remove the list of summary.* parameters, you will need to edit genieacs/config/parameters.json.</div><div><br></div><div>Here are some of the ones I've added to our genieacs/config/parameters.json file:</div><div><div><pre style="color:rgb(0,0,0);font-family:'DejaVu Sans Mono'"><span style="color:rgb(102,14,122);font-weight:bold">"InternetGatewayDevice.LANDevice./^\\d+$/.WLANConfiguration./^\\d+$/.SSID" </span>: {<span style="color:rgb(102,14,122);font-weight:bold">"alias" </span>: <span style="color:rgb(0,128,0);font-weight:bold">"summary.wlan.ssid"</span>},<br><span style="color:rgb(102,14,122);font-weight:bold">"InternetGatewayDevice.LANDevice./^\\d+$/.WLANConfiguration./^\\d+$/.Enable" </span>: {<span style="color:rgb(102,14,122);font-weight:bold">"alias" </span>: <span style="color:rgb(0,128,0);font-weight:bold">"summary.wlan.enabled"</span>},<br><span style="color:rgb(102,14,122);font-weight:bold">"InternetGatewayDevice.LANDevice./^\\d+$/.WLANConfiguration./^\\d+$/.Channel" </span>: {<span style="color:rgb(102,14,122);font-weight:bold">"alias" </span>: <span style="color:rgb(0,128,0);font-weight:bold">"summary.wlan.channel"</span>},<br><span style="color:rgb(102,14,122);font-weight:bold">"InternetGatewayDevice.LANDevice./^\\d+$/.WLANConfiguration./^\\d+$/.PossibleChannels" </span>: {<span style="color:rgb(102,14,122);font-weight:bold">"alias" </span>: <span style="color:rgb(0,128,0);font-weight:bold">"summary.wlan.possibleChannels"</span>},<br><span style="color:rgb(102,14,122);font-weight:bold">"InternetGatewayDevice.LANDevice./^\\d+$/.WLANConfiguration./^\\d+$/.PreSharedKey.1.KeyPassphrase" </span>: {<span style="color:rgb(102,14,122);font-weight:bold">"alias" </span>: <span style="color:rgb(0,128,0);font-weight:bold">"summary.wlan.passphrase"</span>},<br><span style="color:rgb(102,14,122);font-weight:bold">"InternetGatewayDevice.LANDevice./^\\d+$/.WLANConfiguration./^\\d+$/.PreSharedKey.1.PreSharedKey" </span>: {<span style="color:rgb(102,14,122);font-weight:bold">"alias" </span>: <span style="color:rgb(0,128,0);font-weight:bold">"summary.wlan.presharedKey"</span>},<br><span style="color:rgb(102,14,122);font-weight:bold">"InternetGatewayDevice.WANDevice./^\\d+$/.WANConnectionDevice.1.WANPPPConnection./^\\d+$/.Username" </span>: {<span style="color:rgb(102,14,122);font-weight:bold">"alias" </span>: <span style="color:rgb(0,128,0);font-weight:bold">"summary.pppoeUsername"</span>},<br><span style="color:rgb(102,14,122);font-weight:bold">"InternetGatewayDevice.WANDevice./^\\d+$/.WANConnectionDevice.1.WANPPPConnection./^\\d+$/.Password" </span>: {<span style="color:rgb(102,14,122);font-weight:bold">"alias" </span>: <span style="color:rgb(0,128,0);font-weight:bold">"summary.pppoePassword"</span>}<span style="font-size:12pt"><br></span></pre><pre style="color:rgb(0,0,0);font-family:'DejaVu Sans Mono'"><br></pre><pre style="color:rgb(0,0,0);font-family:'DejaVu Sans Mono'">And in my genieacs-gui/config/parameters.yml:</pre><pre style="color:rgb(0,0,0);font-family:'DejaVu Sans Mono'"><pre style="font-family:'DejaVu Sans Mono'"><span style="color:rgb(0,0,128);font-weight:bold">WLAN SSID: </span>summary.wlan.ssid<br><span style="color:rgb(0,0,128);font-weight:bold">WLAN Passphrase: </span>summary.wlan.passphrase<br><span style="color:rgb(0,0,128);font-weight:bold">WLAN Enabled: </span>summary.wlan.enabled<br><span style="color:rgb(0,0,128);font-weight:bold">WLAN Channel: </span>summary.wlan.channel<br><span style="color:rgb(0,0,128);font-weight:bold">PPPoE Username: </span>summary.pppoeUsername<br><span style="color:rgb(0,0,128);font-weight:bold">PPPoE Password: </span>summary.pppoePassword</pre><pre style="font-family:'DejaVu Sans Mono';font-size:12pt">If you want customize the parameters shown on the device list screen (/devices), edit genieacs-gui/config/index_parameters.yml.</pre><pre style="font-family:'DejaVu Sans Mono';font-size:12pt"><br></pre><pre style="font-family:'DejaVu Sans Mono';font-size:12pt">-dan</pre></pre></div></div></div>