Provision Wireless - Limit Speed

Good afternoon.
What would be the parameters to limit the SSID to 25mbps.

Example:

declare("InternetGatewayDevice.LANDevice.1.WLANConfiguration.1.WMMEnable", {value: now}, {value: "true"});
declare("InternetGatewayDevice.LANDevice.1.WLANConfiguration.1.WMMClassificationEnable", {value: now}, {value: "true"});
declare("InternetGatewayDevice.LANDevice.1.WLANConfiguration.1.UAPSDEnable", {value: now}, {value: "true"});
declare("InternetGatewayDevice.LANDevice.1.WLANConfiguration.1.WMMAccessCategory.1.PhysicalRate", {value: now}, {value: "25000000"}); // 25Mbps

1 Like