We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd9efa4 commit b8c5fe6Copy full SHA for b8c5fe6
tests/airos/test_wpasupplicant.py
@@ -176,6 +176,30 @@ def test_wpa2_enterprise(self):
176
177
@skip("target later")
178
def test_peap_wpa2_enterprise(self):
179
+
180
+ o = self.backend({
181
+ "interfaces": [
182
+ {
183
+ "type": "wireless",
184
+ "name": "wlan0",
185
+ "mac": "de:9f:db:30:c9:c5",
186
+ "mtu": 1500,
187
+ "txqueuelen": 1000,
188
+ "wireless": {
189
+ "radio": "radio0",
190
+ "mode": "station",
191
+ "ssid": "ap-ssid-example",
192
+ "encryption": {
193
+ "protocol": "wpa2_enterprise",
194
+ "server": "radius.example.com",
195
+ "key": "the-shared-key",
196
+ "acct_server": "accounting.example.com",
197
+ },
198
199
+ }
200
+ ]
201
+ })
202
+ o.to_intermediate()
203
expected = [
204
{
205
'device.1.devname': 'radio0',
0 commit comments