1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 08:48:05 +00:00
thatmattlove-hyperglass/docs/configuration/authentication.md
2019-05-11 23:28:13 -07:00

611 B

Authentication parameters are stored in the devices.toml file, at hyperglass/hyperglass/configuration/devices.toml. The array of tables simply stores the username and password for a device. SSH Key authentication is not yet supported.

Example:

[credential.'default']
username = "hyperglass"
password = "secret_password"

[credential.'other_credential']
username = "other_username"
password = "other_secret_password"

!!! warning "Security Warning" These values are stored in plain text. Make sure the accounts are restricted and that the configuration file is stored in a secure location.