Bonjour

j'utilise linux depuis quelque temps et voila mon problème j'aimerais configurer une clef WIFI pour la mettre en réseau ad-hoc je vais donc modifier le fichier /etc/network/interfaces comme suit :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
 
auto wlan4
iface wlan4 inet static
        address 192.168.1.6
        netmask 255.255.255.0
        wireless-channel 1
        wireless-essid adoca
        wireless-mode ad-hoc
avec la commande iwconfig qui me retourne
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
 
wlan4     IEEE 802.11bg  ESSID:"adoca"  Nickname:"<WIFI@REALTEK>"
          Mode:Ad-Hoc  Frequency:2.412 GHz  Cell: 02:11:87:68:90:03
          Bit Rate:54 Mb/s   Sensitivity:0/0
          Retry:off   RTS thr:off   Fragment thr:off
          Encryption key:off
          Power Management:off
          Link Quality=0/100  Signal level=0 dBm  Noise level=0 dBm
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:0   Missed beacon:0
lorsque j'exécute la commande /etc/init.d/networking restart

je récupère l'erreur suivante :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 
[....] Running /etc/init.d/networking restart is deprecated because it may not re-enable so[warnterfaces ... (warning).
[....] Reconfiguring network interfaces...ioctl[SIOCSIWMODE]: Operation not supported
ioctl[SIOCGIWRANGE]: Operation not supported
ioctl[SIOCGIWMODE]: Operation not supported
ioctl[SIOCSIWAP]: Operation not supported
ioctl[SIOCSIWESSID]: Operation not supported
ioctl[SIOCSIWENCODEEXT]: Operation not supported
ioctl[SIOCSIWENCODE]: Operation not supported
ioctl[SIOCSIWENCODEEXT]: Operation not supported
ioctl[SIOCSIWENCODE]: Operation not supported
ioctl[SIOCSIWENCODEEXT]: Operation not supported
ioctl[SIOCSIWENCODE]: Operation not supported
ioctl[SIOCSIWENCODEEXT]: Operation not supported
ioctl[SIOCSIWENCODE]: Operation not supported
ioctl[SIOCSIWENCODEEXT]: Operation not supported
ioctl[SIOCSIWENCODE]: Operation not supported
ioctl[SIOCSIWENCODEEXT]: Operation not supported
ioctl[SIOCSIWENCODE]: Operation not supported
done.
Sans m'attardez sur le premier message d'alerte "deprecated" je me demande d'où sortent mes erreurs ioctl et comment les régler ?

Je précise que je suis sur un carte OLIMEX A10 avec un linux de leur cru , et le module Wifi et un module USB RTL8188.

Merci