Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(306)

Side by Side Diff: chromeos/test/data/network/invalid_settings_with_repairs.json

Issue 2828713002: Enable client certificate patterns in device ONC policy (Closed)
Patch Set: Rebase. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698