mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-28 11:43:25 +02:00
Work around for Bad DNS Servers at UMTS-Connections
Change gateway ip to currect ip Remove Error (3min wait) at startup if the first connection try fail...
This commit is contained in:
@@ -59,7 +59,7 @@ case "$1" in
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Enable sensors plugin if sensors found
|
# Enable sensors plugin if sensors found
|
||||||
if [ $( sensors 2>&1 | grep "No sensors found!" | wc -l ) == "1" ]; then
|
if [ "$( sensors 2>&1 | grep 'No sensors found!' | wc -l )" == "1" ]; then
|
||||||
sed -i -e "s|^LoadPlugin sensors|#LoadPlugin sensors|g" /etc/collectd.conf
|
sed -i -e "s|^LoadPlugin sensors|#LoadPlugin sensors|g" /etc/collectd.conf
|
||||||
else
|
else
|
||||||
sed -i -e "s|^#LoadPlugin sensors|LoadPlugin sensors|g" /etc/collectd.conf
|
sed -i -e "s|^#LoadPlugin sensors|LoadPlugin sensors|g" /etc/collectd.conf
|
||||||
|
|||||||
@@ -366,6 +366,7 @@ case "${1}" in
|
|||||||
/usr/bin/vnstat -u -i ppp0 -r --enable --force > /dev/null 2>&1
|
/usr/bin/vnstat -u -i ppp0 -r --enable --force > /dev/null 2>&1
|
||||||
/etc/rc.d/init.d/connectd start
|
/etc/rc.d/init.d/connectd start
|
||||||
/etc/rc.d/init.d/collectd start
|
/etc/rc.d/init.d/collectd start
|
||||||
|
exit 0
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
|||||||
@@ -32,14 +32,19 @@ if [ "$DNS" == "Automatic" ]; then
|
|||||||
echo -n "$MS_DNS1" > /var/ipfire/red/dns1
|
echo -n "$MS_DNS1" > /var/ipfire/red/dns1
|
||||||
echo -n "$MS_DNS2" > /var/ipfire/red/dns2
|
echo -n "$MS_DNS2" > /var/ipfire/red/dns2
|
||||||
else
|
else
|
||||||
echo -n "$PRIMARY_DNS" > /var/ipfire/red/dns1
|
if [ "$PRIMARY_DNS" != "10.11.12.13" || "$SECONDARY_DNS" != "10.11.12.14" ]; then
|
||||||
echo -n "$SECONDARY_DNS" > /var/ipfire/red/dns2
|
echo -n "$PRIMARY_DNS" > /var/ipfire/red/dns1
|
||||||
|
echo -n "$SECONDARY_DNS" > /var/ipfire/red/dns2
|
||||||
|
else
|
||||||
|
echo -n "$DNS1" > /var/ipfire/red/dns1
|
||||||
|
echo -n "$DNS2" > /var/ipfire/red/dns2
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
echo -n "$DNS1" > /var/ipfire/red/dns1
|
echo -n "$DNS1" > /var/ipfire/red/dns1
|
||||||
echo -n "$DNS2" > /var/ipfire/red/dns2
|
echo -n "$DNS2" > /var/ipfire/red/dns2
|
||||||
fi
|
fi
|
||||||
|
7
|
||||||
echo -n "$1" > /var/ipfire/red/iface
|
echo -n "$1" > /var/ipfire/red/iface
|
||||||
echo -n "$4" > /var/ipfire/red/local-ipaddress
|
echo -n "$4" > /var/ipfire/red/local-ipaddress
|
||||||
echo -n "$5" > /var/ipfire/red/remote-ipaddress
|
echo -n "$5" > /var/ipfire/red/remote-ipaddress
|
||||||
@@ -65,7 +70,7 @@ else
|
|||||||
echo "$FIRE gateway" >> /tmp/hosts
|
echo "$FIRE gateway" >> /tmp/hosts
|
||||||
else
|
else
|
||||||
#DNS lookup failed use direct ip
|
#DNS lookup failed use direct ip
|
||||||
echo "85.88.28.124 gateway" >> /tmp/hosts
|
echo "85.88.28.125 gateway" >> /tmp/hosts
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
mv /tmp/hosts /etc/hosts
|
mv /tmp/hosts /etc/hosts
|
||||||
|
|||||||
Reference in New Issue
Block a user