19.04.2024, 06:23 UhrDeutsch | English
Hallo Gast [ Registrierung | Anmelden ]

kanotix.com FAQ (häufig gestellte Fragen)

Kategorie: Index ->

Frage

Antwort

How can I activate Ndiswrapper in Kanotix?

Kanotix has all needed packages installed already: the kernel module and the ndiswrapper-utils.

You need all driver files inclusive "Windows" inf-file for the driver that you surely can find on the install CD or download from the internet. Find them and copy them into a work directory on your HD.

After installing a new KANOTIX kernel you should also install the ndiswrapper module. For that change to the directory where you have unpacked the kernel archive and use
# dpkg -i ndiswrapper*.deb

after rebooting you should also do
# update-moodules

Now change into the directory where the driver files where copied to and install it into KANOTIX with:

# ndiswrapper -i driver.inf
# ndiswrapper -a


load the ndiswrapper-modul:
# modprobe ndiswrapper

and check, if it is installed correctly and if the access-point was found
# iwlist s

if you want to use WEP, you can now configure the card using netcardconfig.

if you want to use WPA , (if supported by your card) you have to do some manual changes, follow the guidelines in FAQ about WPA

With an editor you must adapt the interfaces configuration file


# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
# The loopback interface
# automatically added when upgrading

auto lo
iface lo inet loopback

allow-hotplug wlan0
iface wlan0 inet dhcp
pre-up sleep 1
wpa-ssid SSID
wpa-psk "Passphrase"


you can now start the interface and wpa_supplicant:

# ifup wlan0 up

and with
# grep -q ^ndiswrapper /etc/modules|| echo ndiswrapper >> /etc/modules

you get the module loaded at boot and your wlan activated.

for more info look in the Ndiswrapper Wiki.

nach oben
How to use wpa_supplicant

Which modes of Operation has wpa_supplicant?

The Debian wpasupplicant package provides two (2) convenient modes of operation that are closely integrated to the core networking infrastructure: ifupdown.

Table of Contents


  1. Specifying the wpa_supplicant driver backend
    - Table of supported drivers
    - Common Driver Recommendations

  2. Mode #1: Managed Mode
    - Examples
    - How It Works
    - Table of Common Options
    - Notes About Managed Mode

  3. Mode #2: Roaming Mode
    - wpa_supplicant.conf
    - /etc/network/interfaces
    - Controlling the Roaming Daemon with wpa_action
    - Fine Tuning the Roaming Setup

  4. Troubleshooting

  5. - Hidden ssids

1. Specifying the wpa_supplicant driver backend

The wext driver backend will be used for all interfaces that do not explicitly set 'wpa-driver' to the driver type required for that device. Users of linux 2.4 kernels, or 2.6 kernels less than 2.6.14 will be required to specify a wpa-driver type.

Supporteddrivers
DriverDescription
hostapHost AP driver (Intersil Prism2/2.5/3)
madwifiMADWIFI 802.11 support (Atheros, etc.)
atmelATMEL AT76C5XXx (USB, PCMCIA)
wextLinux wireless extensions (generic)
ndiswrapperLinux ndiswrapper
ipwIntel ipw2100/2200 driver
wiredwired Ethernet driver
testtest driver

Common Driver Recommendations

The Intel Pro Wireless adapters (ipw2100, ipw2200 and ipw3945) all use the 'wext' backend, unless your kernel is older than 2.6.14.
Madwifi supports both the 'wext' and 'madwifi' driver backends, but 'wext' is preferred.
Ndiswrapper NO LONGER SUPPORTS the 'ndiswrapper' driver backend as of version 1.16. Therefore, 'wext' must be used unless you use an outdated ndiswrapper release.
Set the driver type in the interfaces(5) stanza for your device with the 'wpa-driver' option. For example:

iface eth0 inet dhcp
wpa-driver wext
. . . . . more options


2. Mode #1: Managed Mode

This mode provides the ability to establish a connection via wpa_supplicant to one known network. It is similar to how the wireless-tools package works. Each element required to establish the connection via wpa_supplicant is prefixed with 'wpa-' and followed by the value that will be used for that element.

Examples


# Connect to access point of ssid 'homezone' with an encryption type of
# WPA-PSK/WPA2-PSK, using the the 'wext' driver backend of wpa_supplicant
# The psk is given as a hexadecimal string, without quotes. DHCP is used to
# obtain a network address.
iface wlan0 inet dhcp
wpa-driver wext
wpa-ssid homezone
wpa-psk 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f



# Connect to access point of ssid 'HotSpot1' and bssid of '00:1a:2b:3c:4d:5e'
# with an encryption type of WPA-PSK/WPA2-PSK, using the the 'madwifi' driver
# backend of wpa_supplicant. The passphrase is given as a plaintext string,
# without quotes. A static network address assignment is used.
iface ath0 inet static
wpa-driver madwifi
wpa-ssid HotSpot1
wpa-bssid 00:1a:2b:3c:4d:5e
wpa-passphrase madhotspot
wpa-key-mgmt WPA-PSK
wpa-pairwise TKIP CCMP
wpa-group TKIP CCMP
wpa-proto WPA RSN
address 192.168.0.100
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.1


# User supplied wpa_supplicant.conf is used for eth1. All network information
# is contained within the user supplied wpa_supplicant.conf. No wpa-driver type
# is specified, so wext is used. DHCP is used to obtain a network address.
iface eth1 inet dhcp
wpa-conf /path/to/wpa_supplicant.conf


How It Works

As mentioned earlier, each wpa_supplicant specific element is prefixed with 'wpa-'. Each element correlates to a property of wpa_supplicant described in the wpa_supplicant.conf(5), wpa_supplicant(8) and wpa_cli(8) manpages. The supplicant is launched without any pre-configuration whatsoever, and wpa_cli forms a network configuration from the input provided by the 'wpa-*' lines.
Initially, wpa_supplicant/wpa_cli does not directly set the properties of the device (like setting an essid with iwconfig, for example), rather it informs the device of what access point is suitable to associate with. Once the device has scanned the area, and found that the suitable access point is available for use, these properties are set.
Table of Common Options

A brief summary of common 'wpa-' options that may be used in the /etc/network/interfaces stanza for a wireless device:

NOTE: ALL values are CASE SeNsItVe
ElementExample ValueDescription
wpa-ssidplaintextstringsets the ssid of your network
wpa-bssid00:1a:2b:3c:4d:5ethe bssid of your AP
wpa-psk0123456789your preshared wpa key. Use wpa_passphrase(8) to generate your psk from a passphrase
wpa-passphraseplaintextphraseplaintext string, which is then converted to a hexadecimal psk via wpa_passphrase logic
wpa-key-mgmtNONE, WPA-PSK, WPA-EAP,IEEE8021Xlist of accepted authenticated key management protocols
wpa-groupCCMP, TKIP, WEP104,WEP40list of accepted group ciphers for WPA
wpa-pairwiseCCMP, TKIP, NONElist of accepted pairwise ciphers for WPA
wpa-auth-algOPEN, SHARED, LEAPlist of allowed IEEE 802.11 authentication algorithms
wpa-protoWPA, RSNlist of accepted protocols
wpa-identitymyplaintextnameadministrator provided username (EAP authentication)
wpa-passwordmyplaintextpasswordyour password (EAP authentication)
wpa-scan-ssid0 or 1toggles scanning of ssid with specific Probe Request frames
wpa-ap-scan0 or 1 or 2adjusts the scanning logic of wpa_supplicant


Notes About Managed Mode

Almost all 'wpa-' options require there is at least a ssid specified. Only a handful of options have a global effect. These are: 'wpa-ap-scan' and 'wpa-preauthenticate'.

Any 'wpa-' option given for a device in the interfaces(5) file is sufficient to trigger the wpa_supplicant daemon into action.
The wpasupplicant ifupdown script makes assumptions about the 'type' of input that is valid for each option. For example, it assumes that some input is plaintext and wraps quotation marks around the input before passing it on to wpa_cli, which then adds the input to the network block being formed via the wpa_supplicant ctrl_interface socket. This can be a point of confusion, and something that has tricked more than a few people in the past. For example:

# Invalid, wpa-ssid expects unquoted plaintext ssid's only
# If you need to use a hexadecimal ssid, please supply a
# wpa_supplicant.conf, and use the 'wpa-conf' option.
wpa-ssid "hostpot12345678"

# Valid, unquoted plaintext string
wpa-ssid hostpot12345678

# Invalid, wpa-psk expects hexadecimal strings only
wpa-psk plaintextpassword

# NOTE: wpa-psk will accept a plaintext string enclosed in quotation
# marks this is equivalent to the 'wpa-passphrase' option
wpa-psk "plaintextpassword"

# Invalid, wpa-passphrase accepts only plaintext strings, as it
# automattically quotes the input
wpa-passphrase "invalidinput"

# Valid, unquoted plaintext string
wpa-passphrase validinput


3. Mode #2: Roaming Mode

A self contained, simplistic roaming mechanism is provided by this package. It is in the form of a wpa_cli action script, /sbin/wpa_action, and it assumes control of ifupdown once activated. The wpa_action(8) manpage describes its technical details in great depth.

To activate a roaming interface, adapt the following example interfaces(5) stanza:


iface eth1 inet manual
wpa-driver wext
wpa-roam /path/to/wpa_supplicant.conf


Two daemons are spawned from the above example; wpa_supplicant and wpa_cli. It is required to provide a wpa_supplicant.conf. A good starting point is provided by an example configuration file:

cp /usr/share/doc/wpasupplicant/examples/wpa_connect_open_ap.conf \
/etc/wpa_supplicant/wpa_supplicant.conf

It is required to edit this configuration file, and add the network blocks for all known networks. If you do not understand what this means, start reading the wpa_supplicant.conf(5) manpage now.
For each network, you may specify a special option 'id_str'. It should be set to a simple text string. This text string forms the basis for network profiling; it correlates to a logical interface defined in the interfaces(5) file. When no 'id_str' is given for a network, wpa_action assumes it will use the 'default' logical interface. So what does all this mean? Lets illustrate it with a small example taken from wpa_action(8):


wpa_supplicant.conf

network={
ssid="foo"
# this id_str will notify /sbin/wpa_action to 'ifup uni'
id_str="uni"
key_mgmt=NONE
}

network={
ssid="bar"
# this id_str will notify /sbin/wpa_action to 'ifup home_static'
id_str="home_static"
psk=123456789...
}

network={
ssid=""
# no 'id_str' is given, /sbin/wpa_action will 'ifup default'
key_mgmt=NONE
}


/etc/network/interfaces

# the roaming interface MUST use the manual inet method
iface eth1 inet manual
wpa-driver wext
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf

# no id_str
iface default inet dhcp

# id_str="uni"
iface uni inet dhcp
post-up /usr/sbin/foo --bar

# id_str="home_static"
iface home_static 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


A logical interface is brought up via ifup, and taken down via ifdown, as wpa_supplicant associates and de-associates with the ssid or network associated to it by the 'id_str' option used in the wpa_supplicant.conf configuration file.

A log of /sbin/wpa_action's actions is created at /var/log/wpa_action.log, please attach the log when reporting problems.

Controlling the Roaming Daemon with wpa_action
Once the roaming daemon is started, it assumes control of ifupdown. That is;
wpa_cli calls ifup when wpa_supplicant has successfully associated with an
access point, and calls ifdown when the connection is lost or terminated.
While the roaming daemon is active, ifupdown should not be controlled directly
by manually issued commands, rather /sbin/wpa_action is supplied to stop and
reload the roaming daemon. For example, to stop the
romaing daemon on the device 'eth1':

wpa_action eth1 stop

When it is required to update the roaming daemon with a new networks details,
it can be done without stopping it. Edit the wpa_supplicant.conf file that is
being used by the daemon with the new networks details, add optional network
settings to /etc/network/interfaces that are specific to the new network
(linked by the 'id_str') and then 'reload' the daemon like so:

wpa_action eth1 reload

For the complete technical details of what wpa_action can do, read the
wpa_action(8) manpage.


Fine Tuning the Roaming Setup

You may face situations where multiple known access points are in close proximity. You can choose which one is preferred manually, with wpa_cli or wpa_gui, or you can give each network its own priority. This is provided by the 'priority' option of wpa_supplicant.conf.

4. Troubleshooting

In order to debug connection, association and authentication problems, we suggest starting `wpa_cli -i "interface"` in a different shell, before starting the interface. Use the command 'level 0' first, to get all debug messages. Then use `ifup --verbose "interface"` to get verbose debug messages from the script starting wpasupplicant.

Hidden ssids

In order to be able to associate to hidden ssids, please try to set the option 'ap_scan=1' in the global section, and 'scan_ssid=1' in your network block section of your wpa_supplicant.conf file. If you are using the managed mode, you can do so by these stanzas:


iface eth1 inet dhcp
wpa-conf managed
wpa-ap-scan 1
wpa-scan-ssid 1
# .. additional options for your setup


Association can take a very long time to associate to WEP. In some cases, setting the parameter 'ap_scan=2' in the config file, (or using a 'wpa-ap-scan 2' stanza, which is equivalent) can greatly help to speed up association.


Thanks to Kelmo.

nach oben
 
Deutsch | English
Logos and trademarks are the property of their respective owners, comments are property of their posters, the rest is © 2004 - 2006 by Jörg Schirottke (Kano).
Consult Impressum and Legal Terms for details. Kanotix is Free Software released under the GNU/GPL license.
This CMS is powered by PostNuke, all themes used at this site are released under the GNU/GPL license. designed and hosted by w3you. Our web server is running on Kanotix64-2006.