Differences between revisions 8 and 9
Revision 8 as of 2009-01-06 22:30:30
Size: 2684
Editor: FranklinPiat
Comment: rewrite Supported devices list
Revision 9 as of 2009-01-10 08:02:00
Size: 2684
Editor: GeoffSimmons
Comment: Correct driver inaccuracy.
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:
 . The module "rt2500" is a driver for RaLink RT2500 wireless adapter, it is provided by the package DebPkg:rt2500-source (An alternate driver, rt2500usb, is available in the rt2x00-source package and in the Linux kernel from version DebPkg:linux-image-2.6.24).  . The module "rt2500" is a driver for RaLink RT2500 wireless adapter, it is provided by the package DebPkg:rt2500-source (An alternate driver, rt2500pci, is available in the rt2x00-source package and in the Linux kernel from version DebPkg:linux-image-2.6.24).

Translations: [:WiFi/rt2500:English], [:DebFrWiFi/rt2500:Français]

(!) ["/Discussion"]


  • The module "rt2500" is a driver for ?RaLink RT2500 wireless adapter, it is provided by the package rt2500-source (An alternate driver, rt2500pci, is available in the rt2x00-source package and in the Linux kernel from version linux-image-2.6.24).

Installation

You can build the module using module-assistant :

  • Open a terminal as root

  • Add the [:Synaptic#repository:non-free] component
  • Then run
    apt-get install module-assistant
    module-assistant prepare
    module-assistant update
    module-assistant a-i rt2500

Test and Use

Once the package is installed, you can check that the module loads properly

  • modprobe rt2500
    lsmod | grep rt2500
    iwconfig

Configuration

The rt2500 driver includes private parameters that allows you to connect to an access point from the shell, without using a network manager. You need the wireless-tools package, and dhcp3-client if you need [:DHCP Client:DHCP]. You can check the full documentation in [file:///usr/share/doc/rt2500-source/README.gz]. Here are some examples, where <WlanX> is your card interface (you need to be root to use them) :

  • WEP with DHCP

  • iwpriv <wlanX> set AuthMode=AUTO
    iwpriv <wlanX> set EncrypType=WEP
    iwconfig <wlanX> essid <AP SSID> mode Managed key <WEPKEY>
    dhclient <wlanX>
  • WEP with a fixed IP address

  • iwpriv <wlanX> set AuthMode=AUTO
    iwpriv <wlanX> set EncrypType=WEP
    iwconfig <wlanX> essid <AP SSID> mode Managed key <WEPKEY>
    ifconfig <wlanX> <YOUR IP> netmask <NETMASK>
    route add -net default gw <GATEWAY> <wlanX>
    echo "nameserver <DNS SERVER>" > /etc/resolv.conf
  • WPA-PSK with a fixed IP address

  • iwconfig <wlanX> essid <AP SSID> mode Managed
    iwpriv <wlanX> set AuthMode=WPAPSK
    iwpriv <wlanX> set EncrypType=TKIP
    iwpriv <wlanX> set WPAPSK=<WPA KEY>
    ifconfig <wlanX> <YOUR IP> netmask <NETMASK>
    route add -net default gw <GATEWAY> eth1
    echo "nameserver <DNS SERVER>" > /etc/resolv.conf

Supported Devices

The page ["HowToIdentifyADevice/PCI"] explains how to identify a PCI device.

The following list is based on the alias fields of  modinfo rt2500pci.

  • PCI: 1814:0201 RaLink RT2500 802.11g Cardbus/mini-PCI

Error message