Benutzer-Werkzeuge

Webseiten-Werkzeuge


aos-r8-omniswitch-crontab-cron-cronjob-reboot

Dies ist eine alte Version des Dokuments!


Cronjob nach Reboot ausführen um Aktion auszuführen

In seltenen Fällen kann es notwendig sein nach einem Reboot des OmniSwitch eine Route zu entfernen und neu zu konfigurieren um L2GRE Tunneln zu helfen. Dieser Artikel beschreibt exemplarisch, wie dies per cron-job möglich ist.

Konfiguration des Cronjob

Ich habe aktuell noch Schwierigkeiten mit dem @reboot. Muss ich bei nächster Gelegenheit prüfen und korrigieren.

Es ist wichtig das korrekte „working“ (running)-Verzeichnis zu wählen!

-> appmgr start ams cron-app argument '1 @reboot /bin/python3 /flash/python/restore-route.py'
-> vi /flash/working/pkg/ams/cron.cfg

Am Ende der Liste folgendes Kommando einfügen. Der Eintrag hinter sleep in Sekunden sorgt für eine Verzögerung nach dem Start bevor das Kommando ausgeführt wird.

@reboot /bin/python3 /flash/python/restore-route.py

Exemplarisches Python Skript um Route zu entfernen/ hinzuzufügen

restore-route.py
#!/usr/bin/env python3
import subprocess
 
# This script removes a route and adds it again to address a timing issue
# for L2GRE tunnels
 
#
# Adapt to your needs
# -Benny 
 
# Destination
destination = "1.1.1.1"
 
# Mask e.g. /32
mask = "32"
 
# Gateway
gateway = "192.168.2.1"
 
#
# Do not modify below this line
#
print("Script was started via cron following a reboot, resetting route to help L2GRE tunnels")
 
subprocess.run(['no', 'ip', 'static-route', f'{destination}/{mask}', 'gateway', f'{gateway}'], capture_output=False)
print(f"Removed route to {destination}/{mask} via {gateway}")
 
subprocess.run(['ip', 'static-route', f'{destination}/{mask}', 'gateway', f'{gateway}'], capture_output=False)
print(f"Added route to {destination}/{mask} via {gateway}")

Cronjob starten/speichern

-> appmgr start ams cron-app
-> show appmgr 
Legend: (+) indicates application is not saved across reboot
  Application    Status    Package Name        User                  Status Time Stamp
---------------+---------+-------------------+---------------------+---------------------
+ cron-app      started   ams                 admin                 Fri Jul 19 12:51:34 2024
  config-agent  started   ovng-agent          admin                 Sun Feb 18 11:15:53 2024
  monitoring-agent started   ovng-agent          admin                 Sun Feb 18 11:15:55 2024
-> write memory flash-synchro
aos-r8-omniswitch-crontab-cron-cronjob-reboot.1721391509.txt.gz · Zuletzt geändert: 2024/07/19 12:18 von benny

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki