cancel
Showing results for 
Search instead for 
Did you mean: 

Ap cli script

Anonymous
Not applicable
I have created a script to execute on the vSz, but it is giving error 

"Unable to upload the AP CLI script to the controller. Reason: com.ruckuswireless.wsg.domain.diagnostics.exception.InvalidAPCLIScriptFileException: Wrong AP script syntax."

my script is as follows
script
#define AP FW version ­­ this should match the AP version of that zone
fw_version=x.x.x.x   
#define Model class, at present we only support model=all  
model=all   
# Actual AP CLI command goes here, single line for single command  
set scg ip x.x.x.x
set scg config interval 300  
set scg status interval 300   
quit
3 REPLIES 3

martin_martin
Valued Contributor
Hi 

As example
save the following as text file.
model should allways be all.

fw_version=3.1.1.0.349
model=all
set qos wlan0 igmp disable

regards
Martin

Anonymous
Not applicable
Hi Martin,
Thank you for your reply.
can you please tell me what does this command will do "set qos wlan0 igmp disable"

Regards
Ramesh

martin_martin
Valued Contributor
Hi Ramesh,

This was just an example file I used.
The command itself disables IGMP on the wlan0 (for multicast traffic).

regards
Martin