ifconfig eth0 dhcp start
o ifconfig eth0 dhcp drop
ne semble pas fonctionner pour Android. Existe-t-il un moyen d'activer/désactiver le DHCP pour eth0
via des commandes shell ?
Réponses
Trop de publicités?
Janov Byrnisson
Points
90
Essayez ce code dans Android 5.1
ifconfig eth0 up
dhcpcd eth0
OR (statique)
ifconfig eth0 192.168.70.65 netmask 255.255.255.0 up
et maintenant
ndc network create 100
ndc network interface add 100 eth0
ndc network route add 100 eth0 192.168.70.0/24 (gateway)
ndc network route add 100 eth0 0.0.0.0/0 192.168.2.40 192.168.2.50
ndc resolver setnetdns 100 localdomain 192.168.2.40 192.168.2.50 (dns1 dns2)
ndc network default set 100
Janov Byrnisson
Points
90
Essayez de cette façon (mon appareil Android a fonctionné)
DHCP IP
ifconfig eth0 dhcp
OU
setprop dhcp.eth0
OU
dhcpcd -k eth0
dhcpcd -n eth0
OU
netcfg eth0 dhcp
OU
getprop dhcp.eth0
et IP statique
ifconfig eth0 192.168.70.145 netmask 255.255.255.0 up
route add default gw 192.168.70.254 dev eth0
ou
su -c ifconfig eth0 192.168.70.145 netmask 255.255.255.0 up
route add default gw 192.168.70.254 dev eth0
Activer l'Ethernet
ifconfig eth0 up
Désactiver Ethernet
ifconfig eth0 down
et vérifier si le wlan0 est statique ou dynamique ? mon appareil quand wlan0 est statique, force une fois eth0 statique et après avoir défini statique changer en dynamique.
Vérifiez l'IP du dispositif :
ip addr
********** essayez ceci Android 5.1 ****************** eth0 dhcp
ifconfig eth0 down
ifconfig eth0 up
dhcpcd -k eth0
dhcpcd -n eth0
netcfg eth0 dhcp