Jump to content

This is the support site for Andrews & Arnold Ltd, a UK Internet provider. Information on these pages is generally for our customers but may be useful to others, enjoy!

VoIP Phones - Asterisk: Difference between revisions

Content deleted Content added
AA-Andrew (talk | contribs)
No edit summary
Line 3: Line 3:
*[[IPv6]] Works!
*[[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.
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==
==Define proxies for inbound calls==
Line 116: Line 116:
For outbound calls:
For outbound calls:
<syntaxhighlight>
<syntaxhighlight>
exten => _[+X].,1,Dial(SIP/voiceless-out/${EXTEN})
exten => _X.,1,Dial(SIP/voiceless-out/${EXTEN})
</syntaxhighlight>
</syntaxhighlight>
For inbound calls (assuming you're routing call to a registered Snom):
For inbound calls (assuming you're routing call to a registered Snom):
<syntaxhighlight>
<syntaxhighlight>
[voiceless-in]
[voiceless-in]
exten => _[+X].,1,Dial(SIP/snom)
exten => _X.,1,Dial(SIP/snom)
</syntaxhighlight>
</syntaxhighlight>