...
When creating your own record schema, you'll obviously want to incorporate authentication. Asterisk + LDAP requires that the user secrets be stored as an MD5 hash. MD5 hashes can be created using 'md5sum'.
For AstAccountRealmedPassword authentication use this.
Code Block |
---|
echo "<secret composed of username, realm, and password goes here>" | md5sum |
For AstMD5secret authentication use this.
Code Block |
---|
echo "password" | md5sum
|