Wittfella
Group: Members
Posts: 33
Joined: Sep. 2006 |
|
Posted: Feb. 20 2007,03:14 |
|
Hey Confused,
Are you sure your encryption settings are optional? If you have no security, your wlan card should associate with the router as soon as you set the ESSID.
ie. once ndiswrapper is up and running, at a terminal type
Code Sample | iwconfig eth0 essid YOURESSID |
It should associate with the router. Check this by
If connected it will show a bunch of info like connection speed etc. If it didn't connect it sounds like you need to set the security info. Assuming you use WEP, the key can be 'open' or 'shared', with iwconfig it is called 'open' and 'restricted'. I believe iwconfig defaults to restricted. If you wanted to use 'open' you would connect with:
Code Sample | iwconfig eth0 essid YOURESSID key open XXXXXXX |
Once again, check connectivity with just 'iwconfig'. Either way, once your associated with the router, you can then (if using DHCP):
Code Sample | sudo pump -i eth0 |
Finally check everything with:
It should show your IP address etc., if everything went well.
Another useful command just to check, if you are not associating with the router is:
It should at least list your router, showing essid and various other stats.
Hope this helps, Wittfella
|