This is an old revision of the document!
The netmodule SDK allows to to add addtional web-pages to the status section of the webinterface. In this article, you will learn how to setup the dashboard sdk-script that provides the ability to switch between wanlinks and reboot the router.
The new added page will look like this:
If you dont have the required software version please install it first.
Open the netmodule webinterface and navigate to:
Services → SDK → Job Management
In this case, we want to start the dashboard at the startup, so we use an event based trigger; sdk-startup
After the sdk has been started, you should have a new status page.
Navigate to HOME → Overwiev → Interfaces
The page might look diffrent, depending on your number of wanlinks.
Your current hotlink is displayed at the top. Also, each enabled wanlink will be listet on the new status page. All links, except for the current hotlink, have a button “Use as hotlink”. This can be used to change the current hotlink. This may take some time, sometimes the hotlink will be shown as “n/a”. Reload the page and the new hotlink will be displayed.
The page has also a reboot button. The device will reboot after 5 seconds.
You can add/remove the fields that will be shown.
// Attributes for WWAN link wan_array = mkarray(sprintf("%s_STATE", wan_idx), sprintf("%s_TYPE", wan_idx), sprintf("%s_SIGNAL_LEVEL", wan_idx), sprintf("%s_SIGNAL_QUALITY", wan_idx), sprintf("%s_SERVICE_TYPE", wan_idx), sprintf("%s_NETWORK", wan_idx) ); // Attributes for ETH/LAN link eth_array = mkarray(sprintf("%s_STATE", wan_idx), sprintf("%s_TYPE", wan_idx), sprintf("%s_ADDRESS", wan_idx), sprintf("%s_GATEWAY", wan_idx) );
A full list for all availible attributes can be listed on the shell via:
~ $ cli status -s wan WAN_HOTLINK="WANLINK1" WANLINK1_STATE="up" WANLINK1_STATE_IPV4="up" WANLINK1_STATE__SINCE="2023-10-30 13:59:16" WANLINK1_TYPE="eth" WANLINK1_INTERFACE="LAN1-1" WANLINK1_ADDRESS="10.0.0.189" WANLINK1_GATEWAY="10.0.0.1" WANLINK1_ADDRESS_IPV6="n/a" WANLINK1_DIAL_ATTEMPTS="1" WANLINK1_DIAL_SUCCESS="1" WANLINK1_DIAL_FAILURES="0" WANLINK1_DATA_DOWNLOADED="69869" WANLINK1_DATA_UPLOADED="63414" WANLINK1_DATA_SINCE="2023-10-30 10:41:50" WANLINK1_DOWNLOAD_RATE="0" WANLINK1_UPLOAD_RATE="0" WANLINK2_STATE="down" WANLINK2_STATE__SINCE="startup" WANLINK2_TYPE="wwan" WANLINK2_INTERFACE="WWAN1" WANLINK2_ADDRESS="n/a" WANLINK2_ADDRESS_IPV6="n/a" WANLINK2_MODEM="Mobile1" WANLINK2_SIM="SIM2" WANLINK2_PDP="PDP1" WANLINK2_SIGNAL_STRENGTH="-103" WANLINK2_SIGNAL_LEVEL="16" WANLINK2_SIGNAL_QUALITY="bad" WANLINK2_REGISTRATION_STATE="searchingNetwork" WANLINK2_SERVICE_TYPE="EDGE" WANLINK2_NETWORK="n/a" WANLINK2_DIAL_ATTEMPTS="0" WANLINK2_DIAL_SUCCESS="0" WANLINK2_DIAL_FAILURES="0" WANLINK2_DATA_DOWNLOADED="n/a" WANLINK2_DATA_UPLOADED="n/a" WANLINK2_DATA_SINCE="2023-10-30 10:43:00" WANLINK2_DOWNLOAD_RATE="0" WANLINK2_UPLOAD_RATE="0"