]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - src/ppp/ip-up
Bump vdradmin package version.
[people/pmueller/ipfire-2.x.git] / src / ppp / ip-up
index 80fb49f49e1c2a5176860545535f03db5cd403af..683b15504d0a76ecd657912ca6d8c7301ee3edba 100644 (file)
@@ -32,8 +32,16 @@ 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" ]; then
+                       echo -n "$DNS1" > /var/ipfire/red/dns1
+               else
+                       echo -n "$PRIMARY_DNS" > /var/ipfire/red/dns1
+               fi
+               if [ "$SECONDARY_DNS" == "10.11.12.14" ]; then
+                       echo -n "$DNS2" > /var/ipfire/red/dns2
+               else
+                       echo -n "$SECONDARY_DNS" > /var/ipfire/red/dns2
+               fi
        fi
 else
        echo -n "$DNS1" > /var/ipfire/red/dns1
@@ -43,20 +51,33 @@ fi
 echo -n "$1" > /var/ipfire/red/iface
 echo -n "$4" > /var/ipfire/red/local-ipaddress
 echo -n "$5" > /var/ipfire/red/remote-ipaddress
-grep -v "gateway" /etc/hosts > /tmp/hosts
+touch /var/ipfire/red/active
+
+/sbin/ip route replace default via ${IPREMOTE} dev ppp0
+run_subdir ${rc_base}/init.d/networking/red.up/
 
-TEST=`ping -c 2 $5 2>/dev/null | tail -2 | head -1 | cut -d"," -f2`;
+#Check if gateway has answerd to ping, if not replace with ping.ipfire.org
+TEST=`/usr/bin/ping -c 2 $5 2>/dev/null | tail -2 | head -1 | cut -d"," -f2`;
 
-if [ "$TEST" == " 2 packets received" ]; then
-       echo "$5 gateway" >> /tmp/hosts
+grep -v -E "\<gateway\>" /etc/hosts > /tmp/hosts
+
+if [ "$TEST" == " 2 received" ]; then
+       #ping the ppp-gateway
+       echo "$5        gateway" >> /tmp/hosts
 else
-       FIRE=`nslookup ping.ipfire.org | tail -2  | head -1 | cut -d" " -f2`;
-       echo "$FIRE gateway" >> /tmp/hosts
+       #no answer
+       HOST=`host ping.ipfire.org`;
+       FIRE=`echo $HOST | cut -d" " -f4`;
+       CHK=`echo $HOST | cut -d" " -f3`;
+       if [ "$CHK" == "address" ]; then
+           #use ping.ipfire.org
+           echo "$FIRE gateway" >> /tmp/hosts
+       else
+           #DNS lookup failed use direct ip
+           echo "85.88.28.125  gateway" >> /tmp/hosts
+       fi
 fi
-
 mv /tmp/hosts /etc/hosts
-touch /var/ipfire/red/active
-
-run_subdir ${rc_base}/init.d/networking/red.up/
 
 [ -e "/var/ipfire/ppp/nobeeps" ] || /etc/rc.d/init.d/beep up
+