M and MSM Series
1748111 Members
3689 Online
108758 Solutions
New Discussion

Re: Create WIFI guest account by HTTP or HTTPS

 
riwjohan
New Member

Create WIFI guest account by HTTP or HTTPS

Hi

 

Does it exist any "manager" that provides an API that allows you to create WIFI guest account operations using HTTP or HTTPS via POST or GET operations. ?

 

Please let me know if any guidelines exist

 

 

BR
Johan

1 REPLY 1
Peter_Debruyne
Honored Contributor

Re: Create WIFI guest account by HTTP or HTTPS

Hi,

 


1/ Yes, this can be done via the SOAP interface (over http or https). The GSM (Guest Management Software) tool is an example of what can be done with the SOAP interface.

On this link:

http://h17007.www1.hp.com/us/en/support/software/misc.aspx#msm-soap

You can find the download of the 5.5 SOAP SDK, the concepts are still the same for any later releases.

The SDK includes samples for various scenarios.

 

2/ If you want a more basic approach through ssh/telnet script (teraterm scrip or expect), guest users can be defined via the cli as well, sample cli: ( this assumes you have predefined a subscription plan named 1day and an account profile guest-silver )

 

# open ssh session to controller, login with admin ...

enable
conf

user profile guest1
 password 123456

 subscription plan 1day
 control method subscription
 access-controlled profile guest-silver
 use access-controlled profile

 access-controlled virtual ap Demo-Guest
 use access-controlled virtual ap
 end
 end
 
 quit
 

Hope this helps for you,

 

Best regards,Peter