PMP 450 series subscriber module template to disable or enable the ethernet link using cnMaestro

Summary: This article will guide you with the steps to enable or disable the ethernet link on the subscriber modules using a template.

Product: PMP 450 series subscriber modules.

Solution: The Ethernet link enabling/disabling option is available in the GUI under the Configuration>Radio tab as shown below:
Picture1

However, if we would wish to enable or disable it using a template via GUI or cnMaestro this article will help you with it.

Here is a template to enable the Ethernet link:

{
  "userParameters": {
    "networkConfig": {
      "enable8023linkBox": 1
    }
  },
   "configFileParameters": { 
      "rebootIfRequired": true 
    }, 
  "cfgFileString": "Canopy configuration file",
  "cfgFileVersion": "1.0"
}

As you could notice that it has a parameter “enable8023linkBox” set as 1 which signifies that the Ethernet link is enabled. To disable it we would simply need to change this parameter to 0 as shown below:

Here is a template to disable the Ethernet link:

{
  "userParameters": {
    "networkConfig": {
      "enable8023linkBox": 0
    }
  },
   "configFileParameters": { 
      "rebootIfRequired": true 
    }, 
  "cfgFileString": "Canopy configuration file",
  "cfgFileVersion": "1.0"
}

Note: The device will reboot after applying this change.

To import this file (.cfg format) to the radio, go to Configuration>Unit Settings>Upload and Apply Configuration File.
Then click on the Choose File button and click on Upload.
Picture2

Once you click on the Apply Configuration File button, it will give you the status update as successful or failed.

Note that for SMs we will have to login to the SM via it IP address as configuration file import over web proxy is currently not supported.

To create a JSON script simply save the file extension as .json

To add template in cnMaestro, go to Configuration>Templates>Add Template and select PMP:
Picture3

Choose the Device mode, Configuration text file or enter a valid json file in the text box then click on save:
Picture4

Refer to the community post available here which will help you with creating templates:

1 Like

Excellent post! Thank you!

1 Like