VoIP Phones - Asterisk: Difference between revisions

No edit summary
*[[IPv6]] Works!
 
Asterisk is extremely flexible and covering different uses for it is outside the scope of this example as the setup used here was very basic. You should read through the included documentation, especially the security documentation, before configuring Asterisk for the first time.
 
==Define proxies for inbound calls==
For outbound calls:
<syntaxhighlight>
exten => _[+X]_X.,1,Dial(SIP/voiceless-out/${EXTEN})
</syntaxhighlight>
For inbound calls (assuming you're routing call to a registered Snom):
<syntaxhighlight>
[voiceless-in]
exten => _[+X]_X.,1,Dial(SIP/snom)
</syntaxhighlight>