RecentlyProgramIn android4.0.4, the DHCP service is enabled by default. How can I disable it? Because I use eth0. I need to set the IP address after plugging in the network cable,
The IP address set by myself must be the same as the IP address obtained from DHCP. The IP address can be connected to the Internet, but there are still many problems. Finally, I want to disable DHCP. The method is as follows:
1. In your data/MISC/DHCP/directory, you will find two suffixes. lease and. dip files, these two files are the key to starting the DHCP service, so the way to disable DHCP is to completely delete these two files.
2, in the android source code \ android-x86 \ device \ tegatech \ tegav2 directory open init. comment out the DHCP directory # mkdir/data/MISC/DHCP 0770 DHCP, and delete the files in the DHCP directory.
3. Save and re-compile the source code. In this way, DHCP is disabled.