diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-11-18 21:41:27 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-11-18 21:41:27 +0100 |
commit | f00985ccc246194a248c8ccbbc4a9fbc6093e3e7 (patch) | |
tree | cc88517b0d68cef42636627fd127e8d86b17e200 /src/conf_mode/interfaces-wireless.py | |
parent | 4dc93212f77c00433330f5e90d4c5383c883f644 (diff) | |
download | vyos-1x-f00985ccc246194a248c8ccbbc4a9fbc6093e3e7.tar.gz vyos-1x-f00985ccc246194a248c8ccbbc4a9fbc6093e3e7.zip |
Revert "wireless: T2241: add "wds" CLI option"
This reverts commit 806f35b5856c3f8dae634718a6a9e82cc90bb63a.
Unfortunately this did not work our in the attempt to bridge a station to a
bridge "brX" interface. Also adjusting the wireless interface during operation
cause several exceptions and the feature is removed again as it was never in any
production system.
Diffstat (limited to 'src/conf_mode/interfaces-wireless.py')
-rwxr-xr-x | src/conf_mode/interfaces-wireless.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/conf_mode/interfaces-wireless.py b/src/conf_mode/interfaces-wireless.py index 5d723bbfd..d302c7df7 100755 --- a/src/conf_mode/interfaces-wireless.py +++ b/src/conf_mode/interfaces-wireless.py @@ -261,7 +261,6 @@ def apply(wifi): # Assign WiFi instance configuration parameters to config dict conf['phy'] = wifi['physical_device'] - conf['wds'] = 'on' if 'wds' in wifi else 'off' # Finally create the new interface w = WiFiIf(interface, **conf) |