I have both NM and wicd installed. I use one or the other on 4
distributions but prefer NM.
One thing you should know is that the /etc/network/interfaces files are
VERY different. I have two different interfaces files and use a bash
script to choose which one to use.
< script to select wireless interface >
#!/bin/sh
# netup
wicd() {
# do Verizon setup
modprobe -r rtl8187
modprobe ath9k
cp /etc/network/interfaces-MiFi /etc/network/interfaces
sleep 5
service networking restart
sleep 5
service network-manager stop
wicd-curses
}
nm() {
modprobe -r ath9k
modprobe rtl8187
cp /etc/network/interfaces-wlan1 /etc/network/interfaces
sleep 5
service networking restart
sleep 5
service network-manager restart
sleep 5
ckif
ifup wlan1
echo "NM is setup."
}
task=$1
case "$task" in
wicd) wicd
;;
nm) nm
;;
* ) echo
echo "*** arg ( wice | nm ) required ***"
;;
esac
exit
--------------------------------------------------------
< the NM interface file >
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# Netgear wg111v2 rtl8187 module
#
# The primary network interface
allow-hotplug wlan1
iface wlan1 inet dhcp
modprobe rtl8187
wpa-ssid Verizon MiFi2200 C4B5 Secure
wpa-psk your-password-goes-here
--------------------------------------------------------
< the wicd interfaces file >
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# up route add -net 127.0.0.0 netmask 255.0.0.0 dev lo
# down route del -net 127.0.0.0 netmask 255.0.0.0 dev lo
# ------ For Verizon MiFi Network
# Using wicd on X
#
# Need to correct this for NON X use
# The primary network interface
##manual eth0
##iface eth0 inet static
## address 192.168.1.11
## network 192.168.1.0
## netmask 255.255.255.0
## broadcast 192.168.1.255
# gateway 192.168.1.11
## dns-nameservers 66.174.95.44 8.8.8.8 8.8.4.4
# dns-nameservers 209.183.33.23 209.183.35.23 192.168.1.11
## dns-search dns-domain dns-sortlist
--------------------------------------------------------
The EMPTY interfaces is how I, finally, got wicd to work.
I hope this helps you in getting one or both working.
Wayne
Archive:
http://lists.debian.org/4F3824BD...@gmail.com