First, don't let that error throw you. If the box is checked in the
"system-network-config" app then it pegs on my laptop but I can still
connect. <br>
<br>
I am assuming you have installed and configured ndiswrapper to be able
to use your wireless card. If not there is a very good link here...<br>
<br>
<a href="http://forums.fedoraforum.org/forum/showthread.php?t=29659&highlight=ndiswrapper">http://forums.fedoraforum.org/forum/showthread.php?t=29659&highlight=ndiswrapper</a><br>
<br>
Even after all that - you will still get that error. I know, I spent a
little time looking for a fix all over the internet and nothing.<br>
<br>
Next, you need to setup your wifi card to connect to your network.
Everytime I tried to use the network applet it gives the error and does
not configure the card. The commands I need I put into the
/etc/rc.local which I have listed below. <br>
<br>
#######################################################################<br>
#!/bin/sh<br>
#<br>
# This script will be executed *after* all the other init scripts.<br>
# You can put your own initialization stuff in here if you don't<br>
# want to do the full Sys V style init stuff.<br>
<br>
touch /var/lock/subsys/local<br>
/sbin/modprobe nvidia<br>
<br>
# wlan0 config commands...<br>
<br>
/sbin/iwconfig wlan0 essid Nutshell<br>
#/sbin/iwconfig wlan0 essid linksys<br>
/sbin/iwconfig wlan0 key 2656D42A95EE03E89998FBF58C<br>
#/sbin/iwconfig wlan0 key off<br>
/sbin/ifconfig wlan0 up<br>
/sbin/dhclient wlan0<br>
<br>
<br>
#Command to correct sound setting for Enemy Territory<br>
echo "et.x86 0 0 direct" > /proc/asound/card0/pcm0p/oss<br>
<br>
# Entries to allow Sierra Wireless EVDO card to be enabled<br>
modprobe usbserial  vendor=0x1199 product=0x112<br>
mknod /dev/ttyAirCard0 c 188 0<br>
<br>
########################################################################<br>
<br>
Set your essid<br>
Set your WEP key<br>
Bring your interface up<br>
Tell wlan0 it is dhcp<br>
<br>
Now, I am connected. You should be too. Take a look at the man pages
for iwconfig and the other wireless utils for all of the parameters.<br>
<br>
One thing about having 2 interfaces, you need to make sure your kernel
routing table is set up correctly if you want to surf. Make sure the
correct one is set for the gateway. Usually, whichever one is going out
to the internet I make sure there is no gateway set. In the case below
eth0 is heading out to the net and wlan0 just goes to my network drive.
If there is a conflict here you won't get out.<br>
<br>
[stephen@localhost ~]$ netstat -rn<br>
Kernel IP routing table<br>
Destination    
Gateway        
Genmask        
Flags   MSS Window  irtt Iface<br>
<a href="http://192.168.1.1">192.168.1.1</a>     <a href="http://192.168.1.104">192.168.1.104</a>  
<a href="http://255.255.255.255">255.255.255.255</a> UGH       0
0          0 eth0<br>
<a href="http://92.168.1.0">92.168.1.0</a>    
<a href="http://0.0.0.0">0.0.0.0</a>        
<a href="http://255.255.255.0">255.255.255.0</a>  
U         0
0          0 eth0<br>
<a href="http://192.168.0.0">192.168.0.0</a>    
<a href="http://0.0.0.0">0.0.0.0</a>        
<a href="http://255.255.255.0">255.255.255.0</a>  
U         0
0          0 wlan0<br>
<a href="http://192.168.201.0">192.168.201.0</a>  
<a href="http://0.0.0.0">0.0.0.0</a>        
<a href="http://255.255.255.0">255.255.255.0</a>  
U         0
0          0 vmnet8<br>
<a href="http://169.254.0.0">169.254.0.0</a>    
<a href="http://0.0.0.0">0.0.0.0</a>        
<a href="http://255.255.0.0">255.255.0.0</a>    
U         0
0          0 eth0<br>
<a href="http://0.0.0.0">0.0.0.0</a>        
<a href="http://192.168.1.1">192.168.1.1</a>    
<a href="http://0.0.0.0">0.0.0.0</a>        
UG        0
0          0 eth0<br>
<br>
I don't know if this is the easiest way, but hope it helps.<br>
<br>
<br>
Stephen Hess. <br>