Instalacion y configuracion Intel Wireless 3945
Ejecutar las siguientes instrucciones como root:
1. Instalamos el driver:
# aptitude install firmware-ipw3945 ipw3945d ipw3945-modules-$(uname -r)
2. Cargamos el módulo y comprobamos que está en ejecución:
# modprobe ipw3945
# ps -C ipw3945d
3. Configuramos el driver, editando el archivo /etc/network/interfaces:
# gedit /etc/network/interfaces
y lo dejamos algo asi:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
iface eth0 inet static
address 192.168.1.2
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
#gateway 192.168.1.1
# dns-* options are implemented by the resolvconf package, if installed
#dns-nameservers 192.168.1.1
#dns-search debian
# INTERFAZ INALAMBRICA
auto eth1
iface eth1 inet static
address 192.168.1.2
network 192.168.1.0
netmask 255.255.255.0
broadcast 192.168.1.255
gateway 192.168.1.1
dns-nameservers 192.168.1.1
wireless-essid USR9106
wireless-mode managed
Para aplicarlo a tu red, debes modificar los valores:
"address, network, netmask, broadcast, gateway y dns-nameservers"
4. Reiniciamos la red:
# /etc/init.d/networking restart
5. Comprobamos la configuracion mediante:
# ifconfig
# route
# ping -c 4 google.com
Para ver el estado de nuestra conexión inalámbrica, tecleamos en una terminal lo siguiente:
$ cat /proc/net/wireless
Nota: Para el paso # 1 debes tener activados los repositorios "non-free"
0 comentarios:
Publicar un comentario