Con el ndiswrapper hice andar esa placa yo.

Yo tengo una hp6448se que tiene esa misma placa.

Lo que había tomado nota es esto.

//Deshabilitas el driver que venía
#echo 'blacklist bcm43xx' | sudo tee -a /etc/modprobe.d/blacklist
#sudo rmmod bcm43xx

//Instalas este wrapper para drivers de windows
#sudo apt-get install ndiswrapper-common ndiswrapper-utils-1.9

//Instalas el driver de windows
//Lo tenes que sacar de los drivers de tu máquina
//Si no lo tenes, te puedo dar el que me funcionó a mi
#sudo ndiswrapper -i bcmwl5.inf

//Genero la vinculación entre el dispositivo y wlan0
#sudo ndiswrapper -m

//Subo el módulo, si no te anda directamente, reinicia el equipo.
#sudo modprobe ndiswrapper

Saludos

--
SISMONDA, Fernando
Cel: 1560027849


Quoting Mauro Graziosi <[EMAIL PROTECTED]>:

Comento mis avances:

Ayer me enteré de este, fijate si te sirve:
http://wifi-radar.systemimager.org/
http://www.linux.com/articles/55647
Voy a tratar de dar el mayor de detalle posible

lspci
Network controller: Broadcom Corporation BCM94311MCG wlan mini-PCI (rev 01)

lsmod
bcm43xx               127336  0
ieee80211softmac       31360  1 bcm43xx
ieee80211              35656  2 bcm43xx,ieee80211softmac


Configuraciones al inicio o luego de hacer /etc/init.d/networking
restart (o simplemente start)

ifconfig
eth1      Link encap:Ethernet  HWaddr 00:1A:73:4E:BB:CD
          UP DIFUSIÃ"N MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:78 errors:0 dropped:0 overruns:0 carrier:0
          colisiones:0 txqueuelen:1000
          RX bytes:0 (0.0 b)  TX bytes:3276 (3.1 KB)
          Interrupt:10

iwconfig
eth1      IEEE 802.11b/g  ESSID:off/any  Nickname:"Broadcom 4311"
          Mode:Managed  Frequency=2.472 GHz  Access Point: Invalid
          Bit Rate=1 Mb/s   Tx-Power=18 dBm
          RTS thr:off   Fragment thr:off
          Encryption key:off
          Link Quality=0/100  Signal level=-256 dBm  Noise level=-256 dBm
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:0   Missed beacon:0

route
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
192.168.7.0     *               255.255.255.0   U     0      0        0 eth0
169.254.0.0     *               255.255.0.0     U     1000   0        0 eth0

----------------------
Luego de ejecutar el comando ifup eth1

ifconfig
eth1      Link encap:Ethernet  HWaddr 00:1A:73:4E:BB:CD
          inet addr:192.168.8.99  Bcast:192.168.8.255  Mask:255.255.255.0
          UP DIFUSIÃ"N MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:130 errors:0 dropped:0 overruns:0 carrier:0
          colisiones:0 txqueuelen:1000
          RX bytes:0 (0.0 b)  TX bytes:5512 (5.3 KB)
          Interrupt:10
iwconfig
eth1      IEEE 802.11b/g  ESSID:"fl"  Nickname:"Broadcom 4311"
          Mode:Managed  Frequency=2.472 GHz  Access Point: Invalid
          Bit Rate=1 Mb/s   Tx-Power=18 dBm
          RTS thr:off   Fragment thr:off
          Encryption key:off
          Link Quality=0/100  Signal level=-256 dBm  Noise level=-256 dBm
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:0   Missed beacon:0
route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
192.168.7.0     *               255.255.255.0   U     0      0        0 eth0
192.168.8.0     *               255.255.255.0   U     0      0        0 eth1
169.254.0.0     *               255.255.0.0     U     1000   0        0 eth0
default         192.168.8.1     0.0.0.0         UG    100    0        0 eth1

--------------------------------------
si ejecuto wifi-radar radar sin antes ejecutar ifup eth1 desaparece el
dispositivo eth1 y el comando ifconfig eth1 up no sirve para nada
(SIOCSIFFLAGS: No existe el dispositivo)
--------------------------------------
si ejecuto wifi-radar radar luego de ejecutar ifup eth1
ifconfig
eth1      Link encap:Ethernet  HWaddr 00:1A:73:4E:BB:CD
          inet addr:192.168.8.14  Bcast:192.168.8.255  Mask:255.255.255.0
          UP DIFUSIÃ"N MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:2309 errors:0 dropped:0 overruns:0 carrier:0
          colisiones:0 txqueuelen:1000
          RX bytes:0 (0.0 b)  TX bytes:98922 (96.6 KB)
          Interrupt:10
iwconfig
eth1      IEEE 802.11b/g  ESSID:"fl"  Nickname:"fl"
          Mode:Managed  Frequency=2.472 GHz  Access Point: Invalid
          Bit Rate=1 Mb/s   Tx-Power=18 dBm
          RTS thr:off   Fragment thr:off
          Encryption key:off
          Link Quality=0/100  Signal level=-256 dBm  Noise level=-256 dBm
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:0   Missed beacon:0
route
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
192.168.7.0     *               255.255.255.0   U     0      0        0 eth0
192.168.8.0     *               255.255.255.0   U     0      0        0 eth1
169.254.0.0     *               255.255.0.0     U     1000   0        0 eth0
default         192.168.8.1     0.0.0.0         UG    0      0        0 eth1

Me llama la atencion que la métrica sea diferente del default gateway
entre ifup y la de wifi-radar

Nota: en ninguno de los casos responde ni siquiera al ping.

Saludos.
--
______________________________
Mauro Graziosi
--
Para desuscribirte tenés que visitar la página
https://listas.linux.org.ar/mailman/listinfo/lugar-gral/

/* Publica y encontra trabajo relacionado con softlibre en http://www.usla.org.ar/modules/jobs/ */

Si tenés algún inconveniente o consulta escribí a mailto:[EMAIL PROTECTED]




----------------------------------------------------------------
This message was sent using IMP, the Internet Messaging Program.

--
Para desuscribirte tenés que visitar la página
https://listas.linux.org.ar/mailman/listinfo/lugar-gral/

/* Publica y encontra trabajo relacionado con softlibre en 
http://www.usla.org.ar/modules/jobs/ */

Si tenés algún inconveniente o consulta escribí a mailto:[EMAIL PROTECTED]

Responder a