Bon ca y est ! j'ai réussi a faire passer un signal entre une carte wifi relié a IPCOP et une autre (Ping)
Le souci c'est que maintenant je ne sais pas comment l'ajouter a la config blue. (dans /var/ipcop/ethernet/settings)
Voici ce que me donne un ifconfig
- Code: Tout sélectionner
eth0 Link encap:Ethernet HWaddr 00:02:44:67:90:A7
inet addr:192.168.10.100 Bcast:192.168.10.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:428 errors:0 dropped:0 overruns:0 frame:0
TX packets:684 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:35019 (34.1 Kb) TX bytes:159183 (155.4 Kb)
Interrupt:9 Base address:0xd000
eth1 Link encap:Ethernet HWaddr 00:30:BD:E0:95:4F
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:5450 errors:0 dropped:1 overruns:0 frame:0
TX packets:33 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:308634 (301.4 Kb) TX bytes:2997 (2.9 Kb)
Interrupt:9 Base address:0xe800
eth1:0 Link encap:Ethernet HWaddr 00:30:BD:E0:95:4F
inet addr:192.168.200.1 Bcast:0.0.0.0 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
Interrupt:9 Base address:0xe800
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:6 errors:0 dropped:0 overruns:0 frame:0
TX packets:6 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:504 (504.0 b) TX bytes:504 (504.0 b)
et voici ce que j'ai écris dans mon rc.local
- Code: Tout sélectionner
#!/bin/sh
insmod 8211
iwconfig eth1 mode ad-hoc
iwconfig eth1 channel 13
iwconfig eth1 essid ipcop
ifconfig eth1 up
ifconfig eth1 add 192.168.200.1
ifconfig eth1:0 broadcast 192.168.200.0
ifconfig eth1:0 netmask 255.255.255.0
ifconfig eth1:0 up
Donc j'ai deux interfaces eth (eth1 et eth1:0) pour la meme carte. Comment je fais pour configurer cela dans IPCOP ?