1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
"NetworkConfigurations": [
{
"GUID": "{485d6076-dd44-6b6d-69787465725f5045}",
"Type": "WiFi",
"Name": "My WiFi Network",
"WiFi": {
"Passphrase": "z123456789012",
"SSID": "ssid",
"Security": "WEP-PSK"
},
"ProxySettings": {
"Type": "Manual",
"Manual": {
"HTTPProxy" : {
"Host" : "http.example.com",
"Port" : 1234
},
"SecureHTTPProxy" : {
"Host" : "https.example.com",
"Port" : 3456
},
"FTPProxy" : {
"Host" : "ftp.example.com",
"Port" : 5678
},
"SOCKS" : {
"Host" : "socks5://socks.example.com",
"Port" : 7890
}
},
"ExcludeDomains": [
"google.com",
"<local>"
]
}
}
],
"Certificates": [],
"Type": "UnencryptedConfiguration"
}
|