How to set DNS Server on Android Phone

I was wondering how to set DNS server on my Android Phone’s Network. Now, i found it, it’s simple just like we set DNS Server on Linux. You’ve got to choose your fav. DNS, (i think there’s 2 best : Google DNS and OpenDNS), so it’s your choice 🙂 Ok, if you already have resolv.conf before on your /system/etc/, we just need to set DNS server that you like..

echo "nameserver 8.8.8.8" > /system/etc/resolv.conf
echo "nameserver 8.8.4.4" > /system/etc/resolv.conf

On that example above, i set DNS Server for Google DNS. But, if you like to set Open DNS, you should change the IP address to 208.67.222.222 and 208.67.220.220 and what if there’s no resolv.conf on my /system/etc? 😀 Ok, here we go..for 1st step, we need to make a file “resolv.conf” on /system/etc on your Android OS. Maybe you could use ADB shell, i think. 🙂

        adb shell [enter]
	su [enter]
        mount -o remount, rw /system [enter]
	cat > /system/etc/resolv.conf [enter]
        nameserver 8.8.4.4 [enter]
        nameserver 8.8.8.8 [enter]
        exit [enter]

Stay on adb shell command line, At last, we just need to set permissions “resolv.conf” to rw-r–r–, just type this command :

chmod 644 /system/etc/resolv.conf [enter]
reboot [enter]

done..your phone will reboot automatically.. goodluck! 😀