The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.

Haiku での Wifi

index サポートされているハードウェア

全ての FreeBSD 8 wlan ドライバーは動作すると思われます。ただし, PCMCIA, CardBus, ExpressCard, USB, ISA ベースのカードは動作しません。 PCI, miniPCI, PCI-Express, miniPCI-Express, PCI-X は動作すると思われます。
以下のようなデバイスとドライバーをサポートします:

index Connecting to a wireless network

Besides of course unencrypted networks, Haiku has preliminary support for accessing wireless networks via WEP encryption keys. WEP is an early encryption method, although not the most secure.

You can list available networks, join and leave them with the command ifconfig from Terminal:

ifconfig [wifi_device_path] [list|join|leave] (key)

You can find your wifi_device_path in the Network preferences applet, or by executing ifconfig -a.

Below are a few examples of connecting to a wireless network named wifitopia. For these examples we are assuming your wifi network card is /dev/net/iprowifi3945/0.

Listing wireless networks:

ifconfig /dev/net/iprowifi3945/0 list

Joining unsecured wireless network:

ifconfig /dev/net/iprowifi3945/0 join wifitopia

Joining WEP secured wireless network: (ascii password)

ifconfig /dev/net/iprowifi3945/0 join wifitopia mypassword

Joining WEP secured wireless network: (64-bit hex password)

ifconfig /dev/net/iprowifi3945/0 join wifitopia 0x4010FABEEF

Leaving a wireless network:

ifconfig /dev/net/iprowifi3945/0 leave wifitopia

index Automatically connecting to a wireless network

To make your system connect to a given SSID at each boot automatically, you can specify your wireless networks and passwords in /boot/common/settings/network/wireless_networks with the following format:

network wifitopia {
   password mypassword
}

If you don't create this configuration file, the system will connect to the first unencrypted network it finds.

WEP ノート

index WPA 暗号化

At the moment there is no WPA encryption available in Haiku, though there have been some efforts bringing it significantly closer.

index install-wifi-firmwares.sh

To install the firmware for Intel ipw2100, Intel iprowifi2200/2225/2915, Broadcom 43xx & Marvell 88W8335, you need to run

install-wifi-firmwares.sh

The Intel ipw2100 and iprowifi22xx will install without an internet connection, as the licensing terms allow Haiku to distribute the original firmware archives. However, they do require acknowledgment by the end-user prior to their installation. The Broadcom 43xx and Marvell 88W8335 will require an active internet connection, as the files containing their respective firmwares cannot be distributed with Haiku.

自分で Haiku イメージ をビルドしている方は、上述に従い、 build/jam/UserBuildConfig を編集することができます。 編集についての詳細と wifi の話題に関するとさまざまなアップデートはこのドキュメントのオンライン版を参照してください。

もし、ファームウェアをダウンロードする必要があるが、 Haiku 環境にインターネット接続が無い場合は、 Haiku の /boot に展開するためのzipファイルを作成するシェルスクリプトがオンライン版にあります。