Initial import data

This commit is contained in:
Rafal Kupiec
2018-04-23 11:15:11 +02:00
parent 0d026c65f0
commit bc965ec302
4 changed files with 169 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
config wanmonitor
option check_host '8.8.4.4'
option interval '5'
option wan_primary 'wan1'
option wan_secondary 'wan2'

View File

@@ -0,0 +1,11 @@
#!/bin/sh /etc/rc.common
START=99
start() {
/usr/bin/wanmonitor -d &
}
stop() {
kill $(pidof wanmonitor)
}