FortiAP
FortiAP devices are thin wireless access points (AP) supporting the latest Wi-Fi technologies (multi-user MIMO 802.11ac Wave 1 and Wave 2, 4x4), as well as 802.11n, 802.11AX , and the demand for plug and play deployment.
magarwal
Staff
Staff
Article Id 349169
Description This article describes steps to limit bandwidth on a WIFI SSID.
Scope

All FortiAPs.

Solution

Step 1: Create a QoS Profile on the Fortigate CLI to Limit Bandwidth.

 

config wireless-controller qos-profile
    edit "Wifi speed"
        set uplink-sta 5000     --> The maximum uplink speed (Clients), in Kbps.
        set downlink-sta 5000  --> The maximum downlink speed (Clients), in Kbps.
        set dscp-wmm-mapping enable
        set dscp-wmm-vo 48 56
        set dscp-wmm-vi 32 40
        set dscp-wmm-be 0
        set dscp-wmm-bk 8 16
        set wmm-dscp-marking enable
        set wmm-vo-dscp 0
        set wmm-vi-dscp 0
        set wmm-bk-dscp 0
    next

 

Step 2: Apply the QoS Profile to the Desired SSID.

 

config wireless-controller vap

    edit “Guest”

        set qos-profile Wifi speed "

    next

end