You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[airos] complied with style issue from code review
[airos][test] be professional and wear a 👔
[airos][doc] changed to comply to pull request review
[airos] renamed to more declarative name
[airos] switched to friendlier names in dictionary iteration
[airos] fixed invalid schema
[airos] fixed empty dictionary result
[airos] draft for key derivation in user converter
[airos] draft for specifying user password from netjson
[airos] included password as blob
[airos] added doc about user password for airos
[airos] fixed bugs with child_value being used as child_key
[airos] added test for conversion from intermediate_data
[airos] comply with PEP8 naming convention
[airos] fixed indentation issues for dictionaries
[airos] fixed typo in class attribute
[airos] made indented code more compact
[airos] fixed typo in converter class
[airos] fixed indentation in list comprehension
[airos] renamed to more readable name
[airos] remove commented code
[airos] made more compat code
[airos] retabbed test code to use 4 spaces
[airos] removed unused import
[airos] changed to 4 spaces indentation in template
[qa] Fixed flake8 & isort warnings
[airos] renamed renderer for PEP8 compliance
I the line ``users.1.password=$1$yRo1tmtC$EcdoRX.JnD4VaEYgghgWg1`` there are both the salt and the password hash in the format ``$ algorithm $ salt $ hash $``, e.g in the previous block ``algorithm=1``, ``salt=yRo1tmtC`` and ``hash=EcdoRX.JnD4VaEYgghgWg1``.
157
+
158
+
To specify the password in NetJSON use the ``user`` property.
159
+
160
+
.. code-block:: json
161
+
162
+
{
163
+
"type": "DeviceConfiguration",
164
+
"user": {
165
+
"name": "ubnt",
166
+
"passsword": "EcdoRX.JnD4VaEYgghgWg1",
167
+
"salt": "yRo1tmtC"
168
+
}
169
+
}
170
+
171
+
142
172
WPA2
143
173
----
144
174
@@ -180,4 +210,4 @@ And another that set the authentication protocol to WPA2 enterprise, but this is
180
210
]
181
211
}
182
212
183
-
Leaving the `NetJSON Encryption object <http://netjson.org/rfc.html#rfc.section.5.4.2.1>` empty defaults to no encryption at all
213
+
Leaving the `NetJSON Encryption object <http://netjson.org/rfc.html#rfc.section.5.4.2.1>` empty defaults to no encryption at all.
0 commit comments