I just fixed a problem I was having with trying to connect to my own school network and I thought I&#39;d share with the list incase other users are having problems similar to mine. I&#39;m using:<br><br>ndiswrapper v1.33<br>
wireless card: Broadcom Corporation BCM4318 [AirForce One 54g] 802.11g Wireless LAN Controller (rev 02) with driver bcmwl5 (Broadcom,04/21/2005, <a href="http://3.100.65.1">3.100.65.1</a>)<br><br>The settings for the network I&#39;m connecting to are:
<br>&nbsp; WPA, TKIP, PEAP, and MS-CHAPv2.<br><br>The problem I changed, which made all the difference, was my conf file didn&#39;t have &#39;pairwise=TKIP&#39; as one of the fields in the config section of my network, this was ESSENTIAL for it to work (as I read on the ndiswrapper site that talks about WPA). I also read that CCMP is the default which was causing my problem. Anyways, adding that parameter in the config section of my network setup fixed my problem.
<br><br>So my config file is as follows:<br><br># BEGIN WPA_SUPPLICANT CONFIG FILE<br>ctrl_interface=/var/run/wpa_supplicant<br>ctrl_interface_group=users<br>eapol_version=1<br>ap_scan=2&nbsp;&nbsp;&nbsp; # You need this as 2 for ndiswrapper apparently.
<br>fast_reauth=1<br><br>network={<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ssid=&quot;YOUR_NETWORK_SSID&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; proto=WPA<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; scan_ssid=1<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; key_mgmt=WPA-EAP<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; eap=PEAP<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; identity=&quot;YOUR_USERNAME&quot;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; password=&quot;YOUR_PASSWORD&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; phase1=&quot;include_tls_length=1 peaplabel=0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; phase2=&quot;auth=MSCHAPV2&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pairwise=TKIP<br>}<br># END WPA SUPPLICANT CONFIG <br><br>Craig.
<br>