Files
vanlink/failover/config.json
T
Andreas Wrede 86fa9509df failover: fix Starlink interface + template config.json from deploy.conf
STARLINK_IFACE pointed at the wrong device after the USB hub swap (was
accidentally set to the 5GHz AP dongle's interface). failover/config.json
also hardcoded the old interface name instead of being templated like the
other configs, so deploy.conf changes never reached it — switched it to
@STARLINK_IFACE@ and deploy.sh now renders it.
2026-08-04 08:35:18 -04:00

17 lines
468 B
JSON

{
"probe_interval": 4,
"probe_timeout": 3,
"fail_threshold": 3,
"ok_threshold": 2,
"probe_urls": [
"http://connectivity-check.ubuntu.com/",
"http://www.gstatic.com/generate_204",
"http://cp.cloudflare.com/"
],
"wans": [
{ "name": "wifi", "device": "wlan0", "metric": 100 },
{ "name": "starlink", "device": "@STARLINK_IFACE@", "metric": 200 },
{ "name": "cellular", "connection": "Koodo", "metric": 300 }
]
}