Talk:VoIP Phones - Asterisk: Difference between revisions
Appearance
Content deleted Content added
SimonArlott (talk | contribs) No edit summary |
SimonArlott (talk | contribs) No edit summary |
||
| Line 17: | Line 17: | ||
=== Authenticate Everyone === |
=== Authenticate Everyone === |
||
*This is the more secure option as it stops your usernames from being enumerated by brute force. |
*This is the more secure option as it stops your usernames from being enumerated by brute force. |
||
*You can't allow a default guest context (unauthenticated calls) or calls from Voiceless will use it. |
|||
<pre> |
<pre> |
||
[general] |
[general] |
||
allowguest=no |
|||
alwaysauthreject=yes |
alwaysauthreject=yes |
||
match_auth_username=yes |
match_auth_username=yes |
||
| Line 25: | Line 27: | ||
=== Authenticate Voiceless === |
=== Authenticate Voiceless === |
||
*This is the more complex option as you need to list every Voiceless name. |
*This is the more complex option as you need to list every Voiceless name. |
||
*It is the only option if you need to allow the default guest context (unauthenticated calls). |
|||
<pre> |
<pre> |
||
[general] |
[general] |
||
; allowguest=yes |
|||
alwaysauthreject=no |
; alwaysauthreject=no |
||
match_auth_username=yes |
match_auth_username=yes |
||