Networking Forums

Networking Forums > Computer Networking > Linux Networking > wpa_supplicant + hidden SSID = problem

Reply
Thread Tools Display Modes

wpa_supplicant + hidden SSID = problem

 
 
Lx
Guest
Posts: n/a

 
      03-04-2007, 06:53 AM
Hello,
I have a great problem with wpa_supplicant 0.5.7. It's impossible to connect
to my private wireless network, when I have SSID broadcasting disabled on
my router (Linksys WRT54GL). When I enable SSID broadcasting, I am able to
connect, however, it works slow (on Windows XP everything is OK and it
doesn't matter whether SSID is broadcasted or not). It's my configuration:
- computer: notebook HP Compaq NC6000
- system: OpenSuse 10.2
- wifi adapter: Compaq AR5212 802.11abg NIC (sterownik: madwifi-0.9.2.1)
- network with WPA2-PSK (TKIP + AES)
- file wpa_supplicant.conf:
ap_scan=2
#eapol_version=2

network={
Â* Â* Â* Â* Â* Â* Â* Â* ssid="xxx"
Â* Â* Â* Â* Â* Â* Â* Â* bssid=xx:xx:xx:xx:xx:xx
Â* Â* Â* Â* Â* Â* Â* Â* scan_ssid=1
Â* Â* Â* Â* Â* Â* Â* Â* proto=RSN
Â* Â* Â* Â* Â* Â* Â* Â* key_mgmt=WPA_PSK
Â* Â* Â* Â* Â* Â* Â* Â* pairwise=CCMP TKIP
Â* Â* Â* Â* Â* Â* Â* Â* group= CCMP TKIP
Â* Â* Â* Â* Â* Â* Â* Â* #psk="yyy"
Â* Â* Â* Â* Â* Â* Â* Â* psk=zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
}

I would be greatfull if someone could help me. I am beginner in Linux so I
don't what more I can add.
 
Reply With Quote
 
 
 
 
Allen Kistler
Guest
Posts: n/a

 
      03-04-2007, 02:37 PM
Lx wrote:
> I have a great problem with wpa_supplicant 0.5.7. It's impossible to connect
> to my private wireless network, when I have SSID broadcasting disabled on
> my router (Linksys WRT54GL)....
>
> [snip]
>
> I would be greatfull if someone could help me. I am beginner in Linux so I
> don't what more I can add.


If I put the SSID in the ifcfg-ethX network script, then it works fine.
It's a bit annoying, but it allows me to keep the SSID hidden.

Details may vary for your distro.
 
Reply With Quote
 
Floyd L. Davidson
Guest
Posts: n/a

 
      03-04-2007, 03:39 PM
Allen Kistler <(E-Mail Removed)> wrote:
>Lx wrote:
>> I have a great problem with wpa_supplicant 0.5.7. It's impossible to connect
>> to my private wireless network, when I have SSID broadcasting disabled on
>> my router (Linksys WRT54GL)....


Don't disable SSID broadcasting. There simply is no benefit,
and most certainly it is *not* a security issue.

>If I put the SSID in the ifcfg-ethX network script, then it works fine.
> It's a bit annoying, but it allows me to keep the SSID hidden.
>
>Details may vary for your distro.


What do you think is accomplished with a "hidden" SSID? That is
a misnomer to begin with because while it is not being
*broadcast* (at regular intervals), it is seen whenever there is
actual traffic on your network. It is *never* actually
"hidden".

Which of course means that someone who wants it for malicious
purposes can get it easily enough, but someone who does a scan
to see which channels are not in use is very likely to end up
interfering with yours because a quick scan didn't reveal any
obvious use.

--
Floyd L. Davidson <http://www.apaflo.com/floyd_davidson>
Ukpeagvik (Barrow, Alaska) (E-Mail Removed)
 
Reply With Quote
 
Unruh
Guest
Posts: n/a

 
      03-04-2007, 04:14 PM
Allen Kistler <(E-Mail Removed)> writes:

>Lx wrote:
>> I have a great problem with wpa_supplicant 0.5.7. It's impossible to connect
>> to my private wireless network, when I have SSID broadcasting disabled on
>> my router (Linksys WRT54GL)....
>>
>> [snip]
>>
>> I would be greatfull if someone could help me. I am beginner in Linux so I
>> don't what more I can add.


>If I put the SSID in the ifcfg-ethX network script, then it works fine.
> It's a bit annoying, but it allows me to keep the SSID hidden.


Yes, of course. If you have a hidden ssid than your machine MUST
specifically ask for that ssid. It will not simply connect. Note that this
is the full extent of the "protection" a hidden ssid offers. It is
apparenty easy to find out what the ssid of a hidden ssid is.
So, hiding your ssid makes things harder for you and does not slow down an
attacker at all.

>Details may vary for your distro.

 
Reply With Quote
 
Unruh
Guest
Posts: n/a

 
      03-07-2007, 02:56 PM
Lx <(E-Mail Removed)> writes:

>Hello,
>I have a great problem with wpa_supplicant 0.5.7. It's impossible to connect
>to my private wireless network, when I have SSID broadcasting disabled on
>my router (Linksys WRT54GL). When I enable SSID broadcasting, I am able to
>connect, however, it works slow (on Windows XP everything is OK and it
>doesn't matter whether SSID is broadcasted or not). It's my configuration:
>- computer: notebook HP Compaq NC6000
>- system: OpenSuse 10.2
>- wifi adapter: Compaq AR5212 802.11abg NIC (sterownik: madwifi-0.9.2.1)
>- network with WPA2-PSK (TKIP + AES)
>- file wpa_supplicant.conf:
>ap_scan=2
>#eapol_version=2


>network={
>Â* Â* Â* Â* Â* Â* Â* Â* ssid="xxx"


As far as I know this is a directive to wpa_supplicant, not to the wireless
driver. Ie, you also have to tell iwconfig to use the appropriate essid.

I do not know suse, but there may be a file in
/etc/sysconfig/network-scripts like ifcfg-eth1 into which you can put the
essid so that when you run ifup eth1 it will direct iwconfig to use that
essid. You could try
iwconfig eth1 essid xxx
before trying to start up.

>Â* Â* Â* Â* Â* Â* Â* Â* bssid=xx:xx:xx:xx:xx:xx
>Â* Â* Â* Â* Â* Â* Â* Â* scan_ssid=1
>Â* Â* Â* Â* Â* Â* Â* Â* proto=RSN
>Â* Â* Â* Â* Â* Â* Â* Â* key_mgmt=WPA_PSK
>Â* Â* Â* Â* Â* Â* Â* Â* pairwise=CCMP TKIP
>Â* Â* Â* Â* Â* Â* Â* Â* group= CCMP TKIP
>Â* Â* Â* Â* Â* Â* Â* Â* #psk="yyy"
>Â* Â* Â* Â* Â* Â* Â* Â* psk=zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
>}


It would really be nice if people did not use UTF in netnews. Ah well.

>I would be greatfull if someone could help me. I am beginner in Linux so I
>don't what more I can add.

 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Cannot connect to hidden SSID, wpa_supplicant and Zydas driver nancya42000@yahoo.com Linux Networking 1 05-10-2007 09:37 PM
Hidden SSID instead of WEP Syucomm Wireless Internet 7 02-14-2007 12:31 PM
Preferred SSID - Hidden SSID rcb Wireless Networks 4 09-29-2005 11:57 AM
Belkin F5D7050 802.11g USB + AP with hidden SSID problem (using ndiswrapper and wpa_supplicant) Alec Forge Linux Networking 1 08-12-2005 03:57 PM
Hidden SSID Marcelo Broadband Hardware 1 01-28-2005 03:13 PM



1 2 3 4 5 6 7 8 9 10 11