OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <link rel="stylesheet" href="onc_spec.css" > | 5 <link rel="stylesheet" href="onc_spec.css" > |
6 <script src="onc_spec.js"></script> | 6 <script src="onc_spec.js"></script> |
7 <title>Open Network Configuration Format</title> | 7 <title>Open Network Configuration Format</title> |
8 </head> | 8 </head> |
9 <body> | 9 <body> |
10 | 10 |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 <dd> | 244 <dd> |
245 <span class="field_meta"> | 245 <span class="field_meta"> |
246 (required) | 246 (required) |
247 <span class="type">string</span> | 247 <span class="type">string</span> |
248 </span> | 248 </span> |
249 A unique identifier for this network connection, which exists to make it | 249 A unique identifier for this network connection, which exists to make it |
250 possible to update previously imported configurations. Must be a non-empty | 250 possible to update previously imported configurations. Must be a non-empty |
251 string. | 251 string. |
252 </dd> | 252 </dd> |
253 | 253 |
| 254 <dt class="field">IPConfigType</dt> |
| 255 <dd> |
| 256 <span class="field_meta"> |
| 257 (optional if <span class="field">Remove</span> is |
| 258 <span class="value">false</span>, otherwise ignored. Defaults to |
| 259 <span class="value">DHCP</span>) |
| 260 <span class="type">string</span> |
| 261 </span> |
| 262 <span class="rule"> |
| 263 <span class="rule_id"></span> |
| 264 Allowed values are <span class="value">DHCP</span> and |
| 265 <span class="value">Static</span>. |
| 266 </span> |
| 267 Determines whether the IP configuration is statically configured, see |
| 268 <span class="field">StaticIPConfig</span> or automatically configured |
| 269 using DHCP. |
| 270 </dd> |
| 271 |
254 <dt class="field">IPConfigs</dt> | 272 <dt class="field">IPConfigs</dt> |
255 <dd> | 273 <dd> |
256 <span class="field_meta"> | 274 <span class="field_meta"> |
257 (optional for connected networks, read-only) | 275 (optional for connected networks, read-only) |
258 <span class="type">array of IPConfig</span> | 276 <span class="type">array of IPConfig</span> |
259 </span> | 277 </span> |
260 Array of IPConfig properties associated with this connection. | 278 Array of IPConfig properties associated with this connection. |
261 </dd> | 279 </dd> |
262 | 280 |
263 <dt class="field">StaticIPConfig</dt> | 281 <dt class="field">StaticIPConfig</dt> |
264 <dd> | 282 <dd> |
265 <span class="field_meta"> | 283 <span class="field_meta"> |
266 (optional if <span class="field">Remove</span> is | 284 (required if <span class="field">IPConfigType</span> is |
267 <span class="value">false</span>, otherwise ignored) | 285 <span class="value">Static</span>) |
268 <span class="type">IPConfig</span> | 286 <span class="type">IPConfig</span> |
269 </span> | 287 </span> |
270 Each property set in this IPConfig object overrides the respective | 288 Each property set in this IPConfig object overrides the respective |
271 parameter received over DHCP. | 289 parameter received over DHCP. |
272 </dd> | 290 </dd> |
273 | 291 |
274 <dt class="field">SavedIPConfig</dt> | 292 <dt class="field">SavedIPConfig</dt> |
275 <dd> | 293 <dd> |
276 <span class="field_meta"> | 294 <span class="field_meta"> |
277 (optional for connected networks, read-only) | 295 (optional for connected networks, read-only) |
(...skipping 2720 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2998 is transmitted or saved to disk should be secure. On client device, when | 3016 is transmitted or saved to disk should be secure. On client device, when |
2999 user names for connections that are user-specific are persisted to disk, | 3017 user names for connections that are user-specific are persisted to disk, |
3000 they should be stored in a location that is encrypted. Users can also opt in | 3018 they should be stored in a location that is encrypted. Users can also opt in |
3001 these cases to not save their user credentials in the config file and will | 3019 these cases to not save their user credentials in the config file and will |
3002 instead be prompted when they are needed. | 3020 instead be prompted when they are needed. |
3003 </p> | 3021 </p> |
3004 </section> | 3022 </section> |
3005 </section> | 3023 </section> |
3006 </body> | 3024 </body> |
3007 </html> | 3025 </html> |
OLD | NEW |