Wireless network interface configuration can be performed using a connection manager (such as NetworkManager) or through Debian's /etc/network/interfaces file with a special purpose utility (such as wpa_supplicant). Examples of NetworkManager and wpa_supplicant configuration are described below.
" src="http://wiki.debian.org/htdocs/rightsidebar/img/attention.png" title="" width="15" height="15"> The WEP algorithm is insecure and deprecated by WPA. Use of WEP is not recommended and is not covered within this document.
Network Manager
NetworkManager is configured by graphical interfaces, which are available for GNOME and KDE. Your wireless interface should not be referenced within Debian's /etc/network/interfaces file.
NetworkManager is also a front-end for wpa_supplicant.
GNOME
Install the network-manager-gnome package:
$ su
# aptitude update
# aptitude install network-manager-gnome- Right-click on a GNOME panel and select "Add to Panel...".
- From the list presented, select "Network Monitor" and click "Add". A new systray applet will appear. Click "Close".
- Right-click on the applet and select "Properties".
- From the dialog presented, click "Configure". You will be asked for the administrative (root) password.
- A list of network interfaces will be displayed. Select your wireless interface, then click "Properties".
- Tick "Enable this connection" and enter details regarding your wireless network. Click "OK" when finished.
See also NetworkManager for frequently asked questions, documentation and support references.
KDE
Install the network-manager-kde package:
$ su
# aptitude update
# aptitude install network-manager-kde- From the K Menu, select "Run Command". Enter "knetworkmanager" and click "Run".
- A new systray applet will appear.
ToDo: Complete knetworkmanager procedure.
See also NetworkManager for frequently asked questions, documentation and support references.
wpa_supplicant
wpa_supplicant is a WPA client and IEEE 802.1X supplicant.
The wpasupplicant package provides wpa-* ifupdown options for /etc/network/interfaces. If these options are specified, wpa_supplicant is started in the background when your wireless interface is raised and stopped when brought down.
GNOME and KDE users shouldn't configure wpa_supplicant manually. Use NetworkManager as explained above.
Before continuing, install the wpasupplicant package:
$ su
# aptitude update
# aptitude install wpasupplicant
WPA-PSK and WPA2-PSK
Also known as "WPA Personal" and "WPA2 Personal" respectively.
Restrict the permissions of /etc/network/interfaces, to prevent pre-shared key (PSK) disclosure:
# chmod 0600 /etc/network/interfaces
Open /etc/network/interfaces in a text editor:
# sensible-editor /etc/network/interfaces
Define appropriate stanzas for your wireless interface, along with the SSID and PSK. For example:
auto wlan0
The "auto" stanza will bring your interface up at system startup. If not desired, remove or comment this line.
iface wlan0 inet dhcp
wpa-ssid mynetworkname
wpa-psk mysecretpassphrase- Save the file and exit the editor.
Bring your interface up. This will start wpa_supplicant as a background process.
# ifup wlan0
Additional wpa-* options are described within /usr/share/doc/wpasupplicant/README.modes.gz. This should also be read if connecting to a network not broadcasting its SSID.
For general /etc/network/interfaces information, see the interfaces(5) man page.
WPA-EAP
For networks using EAP-TLS, you are required to establish a wpa_supplicant configuration file and provide the client-side certificate. An example WPA2-EAP configuration file can be found at /usr/share/doc/wpasupplicant/examples/wpa2-eap-ccmp.conf.
Once available, reference your configuration file in /etc/network/interfaces. For example:
auto wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
More information can be found in the wpa_supplicant.conf(5) man page. A fully-commented wpa_supplicant configuration file example is at /usr/share/doc/wpasupplicant/README.wpa_supplicant.conf.gz.
Switching Connections
To switch between multiple distinct configurations:
GNOME users should use "Menu System > Administration > Network".
Console users can use ifscheme, see the example configuration at alwayssunny.com.
See Also
WiFi/AdHoc - Establishing a WiFi network without an access point.
No comments:
Post a Comment