diff options
author | Alain Lamar <alain_lamar@yahoo.de> | 2020-04-04 19:01:28 +0200 |
---|---|---|
committer | Alain Lamar <alain_lamar@yahoo.de> | 2020-04-04 19:01:28 +0200 |
commit | c3b3f6fe1242b5774eccfa70e3e9c4736e4ab5d1 (patch) | |
tree | 36de180f7dc7209017b15c69fdaad79a0b56e3b0 /src/conf_mode/interfaces-wireless.py | |
parent | 31737597c424793eee03f92fa76908b1251d3724 (diff) | |
download | vyos-1x-c3b3f6fe1242b5774eccfa70e3e9c4736e4ab5d1.tar.gz vyos-1x-c3b3f6fe1242b5774eccfa70e3e9c4736e4ab5d1.zip |
wireless: T2211: bugfix: Bugfix for the bugfix: set no defaults
When any defaults are set, VHT capabilities are automatically assumed
for all WiFi modes which does not match the reality. Therefore we must
leave this undefined by default.
Diffstat (limited to 'src/conf_mode/interfaces-wireless.py')
-rwxr-xr-x | src/conf_mode/interfaces-wireless.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/interfaces-wireless.py b/src/conf_mode/interfaces-wireless.py index 3d62897aa..f7ecb098e 100755 --- a/src/conf_mode/interfaces-wireless.py +++ b/src/conf_mode/interfaces-wireless.py @@ -797,7 +797,7 @@ default_config_data = { 'cap_vht_beamform' : '', 'cap_vht_center_freq_1' : '', 'cap_vht_center_freq_2' : '', - 'cap_vht_chan_set_width' : '0', + 'cap_vht_chan_set_width' : '', 'cap_vht_ldpc' : False, 'cap_vht_link_adaptation' : False, 'cap_vht_max_mpdu_exp' : '', |