routeros-scripts/global-config

105 lines
3.8 KiB
Plaintext
Raw Normal View History

#!rsc
2018-07-05 13:29:26 +00:00
# RouterOS script: global-config
# Copyright (c) 2013-2018 Christian Hesse <mail@eworm.de>
#
# global configuration
# This is used for DNS and backup file.
:global "domain" "example.com";
:global "hostname-in-zone" true;
# These addresses are used to send e-mails to. The to-addresses need
# to be filled, cc-addresses can be empty, one address or a comma
# separated list of addresses.
:global "email-general-to" "mail@example.com";
:global "email-general-cc" "another@example.com";
:global "email-backup-to" "mail@example.com";
:global "email-backup-cc" "";
# You can send Telegram notifications. Register a bot
# and add the token and chat ids here.
:global "telegram-tokenid" "";
:global "telegram-chatid" "";
#:global "telegram-tokenid" "123456:ABCDEF-GHI";
#:global "telegram-chatid" "12345678";
2018-07-05 13:29:26 +00:00
# This defines what backups to generate and what password to use.
:global "backup-send-binary" false;
:global "backup-send-export" true;
:global "backup-password" "v3ry-s3cr3t";
# Specify an address to enable auto update to version assumed safe.
# The configured channel (bugfix, current, release-candidate) is appended.
:global "safe-update-url" "";
#:global "safe-update-url" "https://example.com/ros/safe-update/";
# This controls what configuration is activated by bridge-port-to-default.
:global "bridge-port-to" "default";
2018-07-05 13:29:26 +00:00
# This is used to update AAAA records and firewall address-list.
:global "ipv6-interface" "br-local";
:global "ipv6-pool" "telekom";
# These settings are used to update gre interface settings based on
# remote peer configuration.
:global "gre-cert-prefix" "ikev2-";
:global "gre-int-prefix" "gre-";
# Access-list entries matching this comment are updated
# with daily pseudo-random PSK.
2018-07-05 13:29:26 +00:00
:global "daily-psk-match-comment" "Daily PSK";
:global "daily-psk-secrets" {
{ "Abusive"; "Aggressive"; "Bored"; "Chemical"; "Cold";
"Cruel"; "Curved"; "Delightful"; "Discreet"; "Elite";
"Evasive"; "Faded"; "Flat"; "Future"; "Grandiose";
"Hanging"; "Humorous"; "Interesting"; "Magenta";
"Magnificent"; "Numerous"; "Optimal"; "Pathetic";
"Possessive"; "Remarkable"; "Rightful"; "Ruthless";
"Stale"; "Unusual"; "Useless"; "Various" };
{ "Adhesive"; "Amusing"; "Astonishing"; "Frantic";
"Kindhearted"; "Limping"; "Roasted"; "Robust";
"Staking"; "Thundering"; "Ultra"; "Unusual" };
{ "Belief"; "Button"; "Curtain"; "Edge"; "Jewel";
"String"; "Whistle" }
}
2018-07-05 13:29:26 +00:00
# Run different commands with multiple mode-button presses.
:global "mode-button" {
1="/ system script run leds-toggle-mode;";
2=":global SendNotification; :global identity; \$SendNotification \"Hello...\" (\"Hello world, \" . \$identity . \" calling!\");";
3="/ system shutdown;";
4="/ system reboot;";
5="/ system script run bridge-port-toggle;";
2018-09-13 20:25:38 +00:00
# add more here...
};
# Run commands on SMS action.
:global "sms-action" {
2018-10-04 11:32:21 +00:00
shutdown="/ system shutdown;";
reboot="/ system reboot;";
bridge-port-toggle="/ system script run bridge-port-toggle;";
# add more here...
2018-10-04 11:32:21 +00:00
};
2018-07-05 13:29:26 +00:00
# This address should resolve ntp servers and is used to update
# ntp settings. A pool can rotate servers.
:global "ntp-pool" "pool.ntp.org";
2018-08-06 12:21:55 +00:00
# This is the address used to send gps data to.
:global "gps-track-url" "https://example.com/index.php";
2018-07-09 14:05:04 +00:00
# Enable this to fetch scripts from given url.
:global "script-updates-fetch" true;
2018-07-09 14:05:04 +00:00
:global "script-updates-baseurl" "https://git.eworm.de/cgit.cgi/routeros-scripts/plain/";
#:global "script-updates-baseurl" "https://raw.githubusercontent.com/eworm-de/routeros-scripts/master/";
#:global "script-updates-baseurl" "https://gitlab.com/eworm-de/routeros-scripts/raw/master/";
:global "script-updates-urlsuffix" "";
2018-10-09 11:32:45 +00:00
:global "script-updates-ignore" {
"global-config"
}
2018-07-09 14:05:04 +00:00
2018-07-05 13:29:26 +00:00
# Do *NOT* change these!
:global "sent-routeros-update-notification" "-";
2018-07-05 13:29:26 +00:00
:global "identity" [ / system identity get name ];
2018-10-09 11:12:08 +00:00
/ system script run global-functions;