OLD | NEW |
1 { "GUID": "guid", | 1 { "GUID": "guid", |
2 "Type": "VPN", | 2 "Type": "VPN", |
3 "Name": "MyL2TPVPN", | 3 "Name": "MyL2TPVPN", |
4 "VPN": { | 4 "VPN": { |
5 "Type": "L2TP-IPsec", | 5 "Type": "L2TP-IPsec", |
6 "Host": "some.host.org", | 6 "Host": "some.host.org", |
7 "IPsec": { | 7 "IPsec": { |
8 "AuthenticationType": "Cert", | 8 "AuthenticationType": "Cert", |
9 "ClientCertType": "Pattern", | 9 "ClientCertType": "Pattern", |
10 "ClientCertPattern": { | 10 "ClientCertPattern": { |
11 "EnrollmentURI": [ "my.enrollment.url" ], | 11 "EnrollmentURI": [ "my.enrollment.url" ], |
12 "IssuerCARef": [ | 12 "IssuerCAPEMs": [ |
13 "def", | 13 "pem1", |
14 "abc" | 14 "pem2" |
15 ], | 15 ], |
16 "Issuer": { | 16 "Issuer": { |
17 "CommonName": "common_name", | 17 "CommonName": "common_name", |
18 "Locality": "locality", | 18 "Locality": "locality", |
19 "Organization": "organization", | 19 "Organization": "organization", |
20 "OrganizationalUnit": "unit" | 20 "OrganizationalUnit": "unit" |
21 } | 21 } |
22 }, | 22 }, |
23 "IKEVersion": 1, | 23 "IKEVersion": 1, |
24 "SaveCredentials": true | 24 "SaveCredentials": true |
25 }, | 25 }, |
26 "L2TP": { | 26 "L2TP": { |
27 "Username": "some username", | 27 "Username": "some username", |
28 "Password": "some password" | 28 "Password": "some password" |
29 } | 29 } |
30 } | 30 } |
31 } | 31 } |
OLD | NEW |