Bonjour tout le monde,
J'ai un petit soucis de configuration réseau que je ne comprends pas.
J'ai un système linux embarqué avec lequel je développe depuis une distro ubuntu.
Ce système embarqué est relié à mon PC par une interface eth0 local (IP statique).
J'ai ajouté un dongle wifi qui fonctionne (RTL8192CU) et l'interface wlan0 est configurée en dhcp.
Mon problème est que l'interaction avec l'interface wlan0 s'active pas immédiatement. Je dois "bricoler" avec les commandes ifup/ifdown sur les deux interfaces (eth0 & wlan0) du système avant que cela daigne répondre à un ping ou accepter une connexion ssh...
Je ne pige pas.
voici mon fichier /etc/network/interfaces
root@zynqberry:~# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.1.254 0.0.0.0 UG 10 0 0 wlan0
192.168.0.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 wlan0
root@zynqberry:~#
root@zynqberry:~#
root@zynqberry:~# cat /etc/network/interfaces
# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
# The loopback interface
auto lo
iface lo inet loopback
# Wireless interfaces
auto wlan0
iface wlan0 inet dhcp
wireless_mode managed
wireless_essid any
wpa-driver wext
wpa-conf /etc/wpa_supplicant.conf
#auto wlan0
#iface wlan0 inet dhcp
# address 10.0.0.1
# network 10.0.0.0
# netmask 255.255.255.0
# broadcast 10.0.0.255
# iface atml0 inet dhcp
# Wired interfaces
auto eth0
iface eth0 inet static
address 192.168.0.2
netmask 255.255.255.0
iface eth1 inet dhcp
# Ethernet/RNDIS gadget (g_ether)
# ... or on host side, usbnet and random hwaddr
iface usb0 inet static
address 192.168.7.2
netmask 255.255.255.0
network 192.168.7.0
gateway 192.168.7.1
# Bluetooth networking
iface bnep0 inet dhcp
root@zynqberry:~#
et la commande route -n donne ceci:
root@zynqberry:~# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.1.254 0.0.0.0 UG 10 0 0 wlan0
192.168.0.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 wlan0
ifconfig donne ceci:
root@zynqberry:~# ifconfig
eth0 Link encap:Ethernet HWaddr f6:4c:bd:60:6e:85
inet addr:192.168.0.2 Bcast:192.168.0.255 Mask:255.255.255.0
inet6 addr: fe80::f44c:bdff:fe60:6e85/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:526 errors:0 dropped:0 overruns:0 frame:0
TX packets:8 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:33408 (32.6 KiB) TX bytes:712 (712.0 B)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
wlan0 Link encap:Ethernet HWaddr 00:13:ef:60:1f:a1
inet addr:192.168.1.43 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: 2a01:e34:ec3a:91a0:213:efff:fe60:1fa1/64 Scope:Global
inet6 addr: fe80::213:efff:fe60:1fa1/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:776 errors:0 dropped:0 overruns:0 frame:0
TX packets:60 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:152211 (148.6 KiB) TX bytes:5819 (5.6 KiB)
Merci pour les suggestions.
Sébastien