OLD | NEW |
1 { | 1 { |
2 "global-disabled-technologies": { | 2 "global-disabled-technologies": { |
3 "DisableNetworkTypes": ["WiMAX"] | 3 "DisableNetworkTypes": ["WiMAX"] |
4 }, | 4 }, |
5 "duplicate-network-guid": { | 5 "duplicate-network-guid": { |
6 "NetworkConfigurations": [ | 6 "NetworkConfigurations": [ |
7 { | 7 { |
8 "GUID": "1", | 8 "GUID": "1", |
9 "Type": "WiFi", | 9 "Type": "WiFi", |
10 "Name": "My WiFi Network", | 10 "Name": "My WiFi Network", |
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 "Name": "name", | 301 "Name": "name", |
302 "Ethernet": { | 302 "Ethernet": { |
303 "Authentication": "None" | 303 "Authentication": "None" |
304 }, | 304 }, |
305 "IPConfigs": [ { | 305 "IPConfigs": [ { |
306 "Type": "IPv4", | 306 "Type": "IPv4", |
307 "IPAddress": "127.0.0.1", | 307 "IPAddress": "127.0.0.1", |
308 "RoutingPrefix": 123 | 308 "RoutingPrefix": 123 |
309 } ], | 309 } ], |
310 }, | 310 }, |
311 "network-with-client-cert-pattern": { | |
312 "GUID": "guid", | |
313 "Type": "WiFi", | |
314 "Name": "name", | |
315 "WiFi": { | |
316 "SSID": "ssid", | |
317 "Security": "WPA-EAP", | |
318 "EAP": { | |
319 "Outer": "EAP-TLS", | |
320 "Identity": "abc ${LOGIN_ID}@my.domain.com", | |
321 "ClientCertType": "Pattern", | |
322 "ClientCertPattern": { | |
323 "IssuerCARef": [ | |
324 "{58ac1967-a0e7-49e9-be68-123abc}" | |
325 ], | |
326 "EnrollmentURI": [ | |
327 "chrome-extension://delkjfjibodjclmdijflfnimdmgdagfk/gen
erate-cert.html" | |
328 ] | |
329 } | |
330 } | |
331 } | |
332 }, | |
333 "ipsec-with-psk-and-cacert": { | 311 "ipsec-with-psk-and-cacert": { |
334 "AuthenticationType": "PSK", | 312 "AuthenticationType": "PSK", |
335 "IKEVersion": 1, | 313 "IKEVersion": 1, |
336 "PSK": "some psk", | 314 "PSK": "some psk", |
337 "ServerCARef": "a cert ref" | 315 "ServerCARef": "a cert ref" |
338 }, | 316 }, |
339 "ipsec-with-client-cert-missing-cacert": { | 317 "ipsec-with-client-cert-missing-cacert": { |
340 "AuthenticationType": "Cert", | 318 "AuthenticationType": "Cert", |
341 "IKEVersion": 1, | 319 "IKEVersion": 1, |
342 "ClientCertType": "Ref", | 320 "ClientCertType": "Ref", |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
601 "SSID": "ssid-wpa", | 579 "SSID": "ssid-wpa", |
602 "UnknownField1": "Value1", | 580 "UnknownField1": "Value1", |
603 "Security": "WPA-PSK" } | 581 "Security": "WPA-PSK" } |
604 } | 582 } |
605 ], | 583 ], |
606 "Certificates": [], | 584 "Certificates": [], |
607 "Type": "UnencryptedConfiguration", | 585 "Type": "UnencryptedConfiguration", |
608 "UnknownField3": [], | 586 "UnknownField3": [], |
609 } | 587 } |
610 } | 588 } |
OLD | NEW |