For checking the IP address and Routing Table in Android using command line mode in the linux console is below. For this you need to root the device or it should be engineering build which engineers use for development.
To Show IP Address, MAC address and Interface Status
Type netcfg or ip addr
To See The Routing Table
cat /proc/net/route OR ip route show
To show DNS IP Addresss
getprop net.dns1
getprop net.dns2
net.dns1 for the Primary DNS and net.dns2 for the Secondary DNS
For changing the DNS IP Address:
setprop net.dns1 111.111.111.111
setprop net.dns2 222.222.222.222
To Show IP Address, MAC address and Interface Status
Type netcfg or ip addr
To See The Routing Table
cat /proc/net/route OR ip route show
To show DNS IP Addresss
getprop net.dns1
getprop net.dns2
net.dns1 for the Primary DNS and net.dns2 for the Secondary DNS
For changing the DNS IP Address:
setprop net.dns1 111.111.111.111
setprop net.dns2 222.222.222.222
Good Useful info. thanks
ReplyDelete