Difference between revisions of "RMS Task Manager Examples"

From Teltonika Networks Wiki
Line 32: Line 32:
 
#Restart interfaces: '''''/etc/init.d/network restart'''''
 
#Restart interfaces: '''''/etc/init.d/network restart'''''
  
 +
===Installing Python===
  
===Installing Python===
+
<span style="color:#d33">'''Disclaimer: before installing any 3rd party software make sure that the target device has a sufficient amount of free storage space!!!'''</span>

Revision as of 15:40, 17 December 2021

Summary

RMS Task Manager is a tool integrated into RMS Management. It is designed in a way, where users can easily send Linux terminal commands, upload and download files to connected Teltonika Networks routers and gateways.

On this page, you will find several examples of how RMS Task Manager can be used with Teltonika Networks devices.

Examples

Waking up to router connected PC

Before starting RMS configurations, make sure that the router to which commands will be sent has Wake On LAN package installed and configure with PC information.

Info: If a logfile is not required parts with /tmp/etherwake_log can be skipped and removed.

  1. Removing old logfile: rm /tmp/etherwake_logs
  2. Waking up connected PC: /etc/init.d/etherwake start [PC_name_used_in_router] >> /tmp/etherwake_logs
  3. Downloading logfile. File path to file location: /tmp/etherwake_logs

Configuring unique LAN IP address

Before starting prepare .csv file and upload in RMS as Task manager file, which provides information as shown in image below:

Rms task manager sn ip csv file example.png

  1. Upload .csv from RMS to router using /tmp/LAN_IP.csv target file path
  2. Get device serial number: mnf_info -s > /tmp/snfile
  3. Get IP address from csv file: SN=`cat /tmp/snfile` && grep $SN /tmp/LAN_IP.csv | grep -oE '((1?[0-9][0-9]?|2[0-4][0-9]|25[0-5])\.){3}(1?[0-9][0-9]?|2[0-4][0-9]|25[0-5])' > /tmp/ipfile
  4. Set new LAN IP address: IP=`cat /tmp/ipfile` && uci set network.lan.ipaddr=$IP
  5. Commit changes: uci commit
  6. Restart interfaces: /etc/init.d/network restart

Installing Python

Disclaimer: before installing any 3rd party software make sure that the target device has a sufficient amount of free storage space!!!