-
-
Save ninadpchaudhari/6561841ffc3667b1e5ee to your computer and use it in GitHub Desktop.
openwrt wan auto reconnect hotplug script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#File for my debugging purposes | |
echo $ACTION >> /tmp/mylog | |
echo $INTERFACE >> /tmp/mylog | |
echo "" >> /tmp/mylog |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Place me in /etc/hotplug.d/iface/99-keepwanalive | |
if [ "$ACTION" = "ifdown" -a "$INTERFACE" = "wan6" ]; then | |
echo "Entering IF statement" >> /tmp/mylog | |
COUNTER="0" | |
FLAG="0" | |
while [ "$FLAG" = 0 ] | |
do | |
echo "Entered While" >> /tmp/mylog | |
sleep 1 | |
grep "unknown" /sys/class/net/pppoe-wan6/operstate | |
RESULT="$?" | |
echo "Result : $RESULT" >> /tmp/mylog | |
if [ "$RESULT" != 0 ]; then | |
let COUNTER++ | |
echo "Log from /etc/hotplug.d/iface/99-keepwanalive -- pppoe-wan6 Fou$ | |
logger -t DEBUG "Log from /etc/hotplug.d/iface/99-keepwanalive -- pppoe$ | |
logger -t DEBUG "Attempt #${COUNTER} to reconnect pppoe-wan6" | |
echo "Attempt #${COUNTER} to reconnect pppoe-wan6" >> /tmp/mylog | |
ifup wan6 | |
sleep 10 #sec | |
else | |
FLAG=1 | |
fi | |
done | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here is my command code for l2tp
/etc/init.d/ipsec enable
/etc/init.d/xl2tpd enable
/etc/init.d/ipsec restart
/etc/init.d/xl2tpd restart
ipsec restart
ipsec up L2TP-PSK
ipsec statusall
echo "c strong-vpn" > /var/run/xl2tpd/l2tp-control