Disable Short Gi
The following scenario shows how to disable the short guard interval which forces the configured network to use the long preamble instead of the default short guard.
Disable Short Guard Interval
Description
In this example, a WLAN interface will be created on top of the 5GHz
radio module in access-point
mode. Then, the short guard interval will
be disabled be mean of the disable-short-gi
command.
Scenario
Warning
Note that the long preamble is considered legacy so it should be only used when very old devices are present in the deployment since the performance is degraded by around 10%.
Step 1: Set the following configuration in DUT0
:
set controllers wlan installation indoor set controllers wlan radios wifi0 band 5GHz set controllers wlan radios wifi0 channel 36 set controllers wlan radios wifi0 bandwidth 80MHz set controllers wlan radios wifi0 mode 802.11n set controllers wlan radios wifi0 mode 802.11ac set controllers wlan radios wifi0 mode 802.11ax set interfaces bridge br0 set interfaces wlan wlan1 bridge-group bridge br0 set interfaces wlan wlan1 phy wifi0 set interfaces wlan wlan1 type access-point security akm none set interfaces wlan wlan1 type access-point ssid network_5GHz
Step 2: Configure the MON
device to listen for packets on channel 36
for 10s
seconds discarding all packets not sent by DUT0
.
Then, apply the following filter to the captured traffic:
wlan.ht.capabilities.short40 == 1 && wlan.vht.capabilities.short80 == 1
At least one packet with the provided criteria must be present.
Step 3: Set the following configuration in DUT0
:
set controllers wlan radios wifi0 disable-short-gi
Step 4: Configure the MON
device to listen for packets on channel 36
for 10s
seconds discarding all packets not sent by DUT0
.
Then, apply the following filter to the captured traffic:
wlan.ht.capabilities.short40 == 0 && wlan.vht.capabilities.short80 == 0
At least one packet with the provided criteria must be present.