Skip to content

Commit

Permalink
docs: config file names and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-shockley committed Sep 15, 2023
1 parent f60aed6 commit 1090fdb
Showing 1 changed file with 11 additions and 14 deletions.
25 changes: 11 additions & 14 deletions config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,33 @@ acmactivate:
provisioningCert: 'your provisioning certificate'
provisioningCertPwd: 'test'
wifiConfigs:
- profileName: 'exampleWifiWPA2' # friendly name
- profileName: 'exampleWifiWPA2' # friendly name, alphanumeric only
ssid: 'exampleSSID'
priority: 1
priority: 1 # must be unique across profiles
authenticationMethod: 6
encryptionMethod: 4
pskPassphrase: 'example123!@#' # pskPassphrase can be provided in this file or a seoarate secrets file
ieee8021xProfileName: ''
pskPassphrase: 'example123!@#' # SECRET: can be in this file, a secrets file, or user prompt
- profileName: 'exampleWifiWPA' # friendly name
ssid: 'exampleSSID'
priority: 2
priority: 2 # must be unique across profiles
authenticationMethod: 4
encryptionMethod: 4
pskPassphrase: '' # pskPassphrase can be provided in this file or a seoarate secrets file
ieee8021xProfileName: ''
- profileName: 'exampleWifi8021xTLS' # friendly name
pskPassphrase: '' # SECRET: can be in this file, a secrets file, or user prompt
- profileName: 'exampleWifi8021xTLS' # friendly name, alphanumeric only
ssid: 'ssid'
priority: 2
priority: 3 # must be unique across profiles
authenticationMethod: 7
encryptionMethod: 4
pskPassphrase: ''
ieee8021xProfileName: 'exampleIeee8021xEAP-TLS'
ieee8021xConfigs:
- profileName: 'exampleIeee8021xEAP-TLS'
username: "exampleUserName"
authenticationProtocol: 0 #8021x profile (ex. EAP-TLS(0))
authenticationProtocol: 0 # Extensible Authentication Protocol (ex. EAP-TLS(0))
clientCert: 'testClientCertString'
caCert: 'testCaCertString'
privateKey: '' # private key can be provided in this file or a seoarate secrets file
privateKey: '' # SECRET: can be in this file, a secrets file, or user prompt
- profileName: 'exampleIeee8021xMSCHAPv2'
username: "exampleUserName"
password: "" # password can be provided in this file or a separate secrets file
authenticationProtocol: 2 #8021x profile (ex. EAP-TLS(0))
password: "" # SECRET: can be in this file, a secrets file, or user prompt
authenticationProtocol: 2 # Extensible Authentication Protocol (ex. EAP-TLS(0))
caCert: 'testCaCertString'

0 comments on commit 1090fdb

Please sign in to comment.