So, I've noticed that quite a few people have difficulties with connecting the knetworkmanager to hidden wireless networks. Well, I've had that problem quite a lot, but I've found, what is hopefully, a good way to connect to the internet:
EDIT: June 01, 2011
You need to know the interface that supports scanning. Usually, this is wlan0, though there are times when its not. To find all known interfaces, type:
To list out all interfaces. In my case, the top interface was ethernet, the second one was wireless, even if it was named eth1. If need be, try all until you find the one that gives an output for your scan results.
First, you need to know the SSID of the network. You should know this though, since thats required to create new wireless connections.
Second, you create the wireless network with all the proper connection settings in the 'wireless' section of 'manage' on the plasmoid/applet.
Third, open up a Konsole, and punch in this code:
EDIT: March 04, 2011
"name" being the SSID of your network.
Fourth, click on the network applet/plasmoid, and make sure that "see more" is clicked. Your hidden network should then show up, and you can click on it to connect to it.
I've tested this out so far on unsecured wireless networks. It should technically work with WPA/WPA2. If what I wrote doesn't work out, then my best bet is to scan your SSID like I stated previously, and once it comes up, THEN create the new network with the correct settings. That is a theory though. It may/may not work. If possible, can I have people test this out? If anybody has time/inclination to do it that is. Any testing would be appreciated!
Thanks for reading this, and I hope it helped those that needed it
EDIT: June 01, 2011
You need to know the interface that supports scanning. Usually, this is wlan0, though there are times when its not. To find all known interfaces, type:
Code:
ifconfig
First, you need to know the SSID of the network. You should know this though, since thats required to create new wireless connections.
Second, you create the wireless network with all the proper connection settings in the 'wireless' section of 'manage' on the plasmoid/applet.
Third, open up a Konsole, and punch in this code:
EDIT: March 04, 2011
Code:
sudo iwlist wlan0 scan essid "name"
Fourth, click on the network applet/plasmoid, and make sure that "see more" is clicked. Your hidden network should then show up, and you can click on it to connect to it.
I've tested this out so far on unsecured wireless networks. It should technically work with WPA/WPA2. If what I wrote doesn't work out, then my best bet is to scan your SSID like I stated previously, and once it comes up, THEN create the new network with the correct settings. That is a theory though. It may/may not work. If possible, can I have people test this out? If anybody has time/inclination to do it that is. Any testing would be appreciated!
Thanks for reading this, and I hope it helped those that needed it
Comment