mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-13 02:51:50 +00:00
14 lines
347 B
Bash
Executable file
14 lines
347 B
Bash
Executable file
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
set luci.diag=internal
|
|
set luci.diag.ping="www.openmptcprouter.com"
|
|
set luci.diag.dns="www.openmptcprouter.com"
|
|
set luci.diag.route="www.openmptcprouter.com"
|
|
set luci.diag.iperf3="ping-ams1.online.net"
|
|
set luci.diag.getip="ip.openmptcprouter.com"
|
|
commit luci
|
|
EOF
|
|
rm -f /tmp/luci-indexcache
|
|
|
|
exit 0
|