How to set friendly network name of android computer?

I see names of computers in my router's DHCP leasing list. My android galaxy tab is listed under an alphanumeric name. How do I set a friendly name that I like?


On Android 4.4 and lower, you can change the hostname to a less cryptic name in the Developer Options under Settings. Under the "Debugging" section in the Developer Options you will see an option called "Device hostname" which should currently be set to this rather cryptic name. You can change it to any alpha numeric name you like.

If you are on Android 5.0, that option is not there anymore. Though using the ADB shell still works. See bayuah's answer. Root doesn't seem to be required on my phone. From the answer linked above:

adb shell
getprop net.hostname
setprop net.hostname <new_hostname>

Open terminal. Enter the following:

adb shell
su
getprop net.hostname
setprop net.hostname <new_hostname>

Root access is required.


Hostname is used to easily identify and remember hosts connected to a network. It's set on boot, e.g. from /etc/hostname on Linux based systems. Hostname is also a part of DHCPREQUEST (standardized as code 12 by IETF) which a DHCP client (Android device in our case) makes to DHCP server (WiFi router) to get an IP address assigned. DHCP server stores the hostnames to offer services like DNS. See details in How to ping a local network host by hostname?.

Android - instead of using Linux kernel's hostname service - used property net.hostname (since Android 2.2) to set a unique host name for every device which was based on android_id. This hostname property was used for DHCP handshake (as added in Android 2.2 and 4.0). In Android 6 net.hostname continued to be used (1, 2, 3, 4) in new Java DHCP client when native dhcpcd was abandoned and later service was removed in Android 7. Since Android 8 - when android_id became unique to apps - net.hostname is no more set, so a null is sent in DHCPREQUEST. See Android 8 Privacy Changes and Security Enhancements:

net.hostname is now empty and the dhcp client no longer sends a hostname

So the WiFi routers show no host names for Android 8+, neither we can set / unset / change it.

However on rooted devices you can set net.hostname manually using setprop command or add in some init's .rc file to set on every boot. Or use a third party client like busybox udhcpc to send desired hostname and other options to router. See Connecting to WiFi via ADB Shell.


In some Android phones, you may change in Wi-Fi Direct

  1. Settings
  2. WiFi
  3. Top right menu > Advanced
  4. Wi-Fi Direct
  5. Top right option Rename device
  6. Write your new device name and press OK
  7. Turn off and on your Wi-Fi
  8. If it has no effect, restart your phone.

Important: Not all Android phones have this option, and not all phones modify their hostname correctly, even after modifying the device name from that option.