[note: this is for a different laptop than my other questions; this is a Compaq F767NR which uses atheros. ath_hal .10.5.6 works with absolutely no troubles on this machine under FreeBSD]
I've hunted down the source for madwifi (it wasn't in any of the places I found on instruction pages) and made and installed it.
I've added "ath_pci wlan_scan_sta" to /etc/modules, and they load:
I can see the network:
I've tried both using knetworkmanager, which sees my network and another, and replacing /etc/network/interfaces to read:
Neither actually gets me a connection to the aerie wireless network, but it happily reports on the signal strength for aerie and that other network.
It works without a hitch under FreeBSD (although I have to download the .10.5.6 source and recompile the kernel).
hawk
I'm at a loss. Any suggestions?
I've hunted down the source for madwifi (it wasn't in any of the places I found on instruction pages) and made and installed it.
I've added "ath_pci wlan_scan_sta" to /etc/modules, and they load:
Code:
root@redtail:~# lsmod | grep -e ath -e wlan wlan_scan_sta 21376 1 ath_rate_sample 21248 1 ath_pci 216632 0 wlan 240752 4 wlan_scan_sta,ath_rate_sample,ath_pci ath_hal 312288 3 ath_rate_sample,ath_pci
Code:
root@redtail:~# nm-tool NetworkManager Tool State: disconnected - Device: eth0 ---------------------------------------------------------------- ... - Device: ath0 ---------------------------------------------------------------- Type: 802.11 WiFi Driver: ath_pci State: disconnected Default: no HW Address: 00:1F:3A:B8:BF:B0 Capabilities: Supported: yes Wireless Settings WEP Encryption: yes WPA Encryption: yes WPA2 Encryption: yes Wireless Access Points V1500: Ad-Hoc, 02:E2:16:E5:0C:59, Freq 2412 MHz, Rate 11 Mb/s, Strength 15 aerie: Infra, 00:13:46:A8:40:A8, Freq 2437 MHz, Rate 54 Mb/s, Strength 74
Code:
# The loopback network interface auto lo iface lo inet loopback # The primary network interface auto ath0 iface ath0 inet static address 192.168.0.20 netmask 255.255.255.0 network 192.168.0.0 broadcast 192.168.0.255 gateway 192.168.0.1 # dns-* options are implemented by the resolvconf package, if installed dns-nameservers 192.168.0.1 dns-search aerie
It works without a hitch under FreeBSD (although I have to download the .10.5.6 source and recompile the kernel).
hawk
I'm at a loss. Any suggestions?
Comment