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:
Arne Fitzenreiter
2009-05-13 18:41:01 +02:00
parent 95aaf24437
commit 28ec28bcbe
3 changed files with 11 additions and 5 deletions

View File

@@ -59,7 +59,7 @@ case "$1" in
fi
# 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
else
sed -i -e "s|^#LoadPlugin sensors|LoadPlugin sensors|g" /etc/collectd.conf

View File

@@ -366,6 +366,7 @@ case "${1}" in
/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/collectd start
exit 0
fi
;;

View File

@@ -32,14 +32,19 @@ if [ "$DNS" == "Automatic" ]; then
echo -n "$MS_DNS1" > /var/ipfire/red/dns1
echo -n "$MS_DNS2" > /var/ipfire/red/dns2
else
echo -n "$PRIMARY_DNS" > /var/ipfire/red/dns1
echo -n "$SECONDARY_DNS" > /var/ipfire/red/dns2
if [ "$PRIMARY_DNS" != "10.11.12.13" || "$SECONDARY_DNS" != "10.11.12.14" ]; then
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
else
echo -n "$DNS1" > /var/ipfire/red/dns1
echo -n "$DNS2" > /var/ipfire/red/dns2
fi
7
echo -n "$1" > /var/ipfire/red/iface
echo -n "$4" > /var/ipfire/red/local-ipaddress
echo -n "$5" > /var/ipfire/red/remote-ipaddress
@@ -65,7 +70,7 @@ else
echo "$FIRE gateway" >> /tmp/hosts
else
#DNS lookup failed use direct ip
echo "85.88.28.124 gateway" >> /tmp/hosts
echo "85.88.28.125 gateway" >> /tmp/hosts
fi
fi
mv /tmp/hosts /etc/hosts