Difference between revisions of "User Scripts examples"

From Teltonika Networks Wiki
Tags: Mobile edit Mobile web edit
Tags: Mobile edit Mobile web edit
Line 1: Line 1:
==Introduction==
 
  
'''User Scripts''' is a service in RUT routers that provides the user with the possibility to create custom '''shell scripts''' that run at the end of router's boot process.
 
 
This article will provide some examples on the usage of User Scripts. Although it must be noted that one should be at least be partially familiar with the syntax and basic principles of shell scripts beforehand as this guide will not provide a tutorial on shell scripts themselves.
 
  
 
#!/bin/ash
 
#!/bin/ash
Line 12: Line 8:
 
   echo "$HOST did not respond; trying to restart VPN"
 
   echo "$HOST did not respond; trying to restart VPN"
 
   /usr/sbin/ipsec restart
 
   /usr/sbin/ipsec restart
 
==Example 2: filtering SMS messages==
 
 
 
 
[[File:Configuration examples user scripts 1.png]]
 

Revision as of 23:28, 12 April 2022


  1. !/bin/ash

HOST=10.10.10.10 if ping -c5 $HOST > /dev/null; then

 echo "$HOST responded; VPN is up!"

else

 echo "$HOST did not respond; trying to restart VPN"
 /usr/sbin/ipsec restart