Displaying 1 result from an estimated 1 matches for "johnblog".
Did you mean:
johnblogs
2005 May 09
0
SIP and MD5 passwords.
I'm getting myself very confused over SIP and authentication.
I'm using Grandstream phones with Asterisk.
If I have something like this:
[102]
username=102
secret=hello
restofconfig
Then authentication works fine.
However both the following cases seem to fail.
[102]
username=johnblogs
authuser=johnblogs
secret=hello
restofconfig
or
[102]
username=102
md5secret=longmd5digest
restofconfig
In order to get my md5secret I'm doing
echo -n '102:asterisk:hello' | md5sum
So, my two questions are:
1) Can the username be different to the sip userid?
2) Can someone please...