]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blobdiff - src/ppp/ip-up
Fix ip-up sometime generate wrong host entry if ping.ipfire.org could not resolved
[people/teissler/ipfire-2.x.git] / src / ppp / ip-up
index 1f24658dd68901f0c42cb6f2c30b01012c9a4498..25ac2b96e35cf7a7a7402dda35f5693218e8f35d 100644 (file)
@@ -43,9 +43,31 @@ fi
 echo -n "$1" > /var/ipfire/red/iface
 echo -n "$4" > /var/ipfire/red/local-ipaddress
 echo -n "$5" > /var/ipfire/red/remote-ipaddress
-
 touch /var/ipfire/red/active
 
 run_subdir ${rc_base}/init.d/networking/red.up/
 
+#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`;
+
+grep -v "gateway" /etc/hosts > /tmp/hosts
+
+if [ "$TEST" == " 2 packets received" ]; then
+       #ping the ppp-gateway
+       echo "$5        gateway" >> /tmp/hosts
+else
+       #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.124  gateway" >> /tmp/hosts
+       fi
+fi
+mv /tmp/hosts /etc/hosts
+
 [ -e "/var/ipfire/ppp/nobeeps" ] || /etc/rc.d/init.d/beep up