cancel
Showing results for 
Search instead for 
Did you mean: 

Secure Hotspot with V9.6

bc_chamberlin
New Contributor II
Trying to get a demo of Secure Hotspot up and running. We're using ZD 1100 V9.6 Hotspot setup with RADIUS. RADIUS & ZD 'Test' Connection Okay.

But getting this error message (on the client device) when connecting to open-dpsk (our open WLAN): (for this test we're using the unrestricted login script)

Traceback (most recent call last):
  File "/usr/lib/cgi-bin/xmlcommon.py", line 313, in sendXmlString

c.perform()
error: (51, "SSL: certificate subject name (Ruckus Wireless ZoneDirector SN-401123000658) does not match target
host name '192.168.2.4'")

Content-type: text/html

Unrestricted user generation failed: No response from ZoneDirector

If we change to HTTP at port 80 by changing out HTTPS at 433 in /usr/lib/cgi-bin/hotspot_unrestricted.py we don't get the SSL error, but we get redirected back to unrestricted login page when we click 'I Agree'

We've verified Northbound Passwords, sever_loc, and Secure SSID on both sides...

Struggling here...appreciate any advice, Thanks
8 REPLIES 8

alberto_de_la_c
New Contributor III
Ummm, I think I had the same problem and I added one line in xmlcommon.py

search for this line in the file:

c.setopt(pycurl.SSL_VERIFYPEER, False)

and add this one:

c.setopt(pycurl.SSL_VERIFYHOST, False)

Let me know if helps.

bc_chamberlin
New Contributor II
Thanks Alberto, tried your suggestion, but completely different response,
server internal error 500.
regards

keith_redfield
Valued Contributor II
500 error means the code won't run anymore due to a syntax error. Did you replace the line or add it?

bc_chamberlin
New Contributor II
Yes, removed suggested code change, now back to original error condition:

File "/usr/lib/cgi-bin/xmlcommon.py", line 313, in sendXmlString
c.perform()
error: (51, "SSL: certificate subject name (Ruckus Wireless ZoneDirector SN-401123000658) does not match target
host name '192.168.2.4'")