Upgrade NetOps Modules

NetOps Modules are released independently of Lighthouse software or Operations Manager firmware.

NetOps releases are uploaded to Opengear's file server, where they can be fetched by Lighthouse then deployed to all activated nodes by Lighthouse.

Node upgrades may be carried out through either the Lighthouse UI or the CLI.

PROCEDURE for Lighthouse UI

  1. Log in to the Lighthouse web UI as a Lighthouse Administrator or the root user.

  2. From the menu, select SETTINGS > Services > NetOps Modules.Select either Online or Offline.
    Image of the Lighthouse UI showing how to upgrade Netops modules

  3. Click the Synchronize icon. A message displays with the status.

  4. From the menu, select CONFIGURE NODES > NetOps Modules > Manage Modules.

  5. Click the Redeploy icon.

PROCEDURE for Lighthouse CLI

Replace root and default with a Lighthouse Administrator or root credentials, then run the following:

USERNAME=root

PASSWORD=default

/etc/scripts/netops_sync_handler

token=$(curl -k -L -d '{"username":"'$USERNAME'","password":"'$PASSWORD'"}' "https://127.0.0.1/api/v3.0/sessions/" | python -c 'import sys, json; print json.load(sys.stdin)["session"]')

curl -k -L -H "Content-Type: application/json" -H "Authorization: Token $token" "https://127.0.0.1/api/v3.0/netops/modules/dop/redeploy"