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?

11 Answers

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>
7

Open terminal. Enter the following:

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

Root access is required.

7

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.

2

Just wanted to reference another related solution I came across using ADB (and requires rooted device): . I would however prefer the ADB commands presented here on SO than this link, but it's another method at least.

1

The name that is sent to the DHCP server is not the hostname as is commonly thought, it's the VID (Vendor ID Code) which you cannot change. You could try changing the name at the router level if possible.

4

On my Galaxy Edge S7 the device friendly name can be changed under "About phone" (near the bottom of the Settings menu):

Screenshot of "About phone" panel

Since I configured it to "Matthijs mobiel", our local router gave me the hostname "Matthijs-mobiel.fritz.box". Unfortunately it sounds like your router might be assigning a name based on MAC address rather than based on the device friendly name, in which case this probably won't help (though you can try configuring a name that's a valid hostname already, perhaps it will work).

This solution is using the commands posted by @bayuah above, but not using adb nor su at all. This is on a rooted device (Nougat AOSP 7.1.2). Using JuiceSSH terminal, enter two commands:

getprop net.hostname
setprop net.hostname <new_hostname>

Android 8.1 (possibly later as well) on Samsung Galaxy Tab...

Settings/About Tablet..."Edit"

1

On LineageOS 10, I could simply search in the settings for hostname and it led me to

System -> Developer Options -> Device hostname

This answer of course requires to have developer options activated, but other than that it is possible that it also works on other android versions than LineageOS.

Simply download and install the app called "Change Hostname" from the Play Store and enjoy editing your android device hostname (android-xxxxxxxxxxx).

Root access is required though, sorry for the non-rooted users.

Regards.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like