Configure Asterisk for Anveo
|
|
|
|
Below is a sample configuration only. You must modify it according to your needs and security standards.
|
|
|
Append the following to the end of sip.conf
|
|
[anveo]
type=friend
host=sip.anveo.com
port=5010
username= ACCOUNT_NUMBER
secret= SIP_PASSWORD
insecure=port,invite
disallow=all
allow=ulaw
context=from-anveo
|
|
Locate [general] secion and add the following
register => ACCOUNT_NUMBER:SIP_PASSWORD@sip.anveo.com:5010
|
|
|
To place an outbound call through Anveo use the following construct in the dial plan:
|
|
exten => _X.,1,Set(CALLERID(number)=1234567890)
exten => _X.,2,Dial(SIP/anveo/${EXTEN})
|
|
Receiving Calls from Anveo
|
|
Edit extensions.conf
Append the following section to the end
|
|
[from-anveo]
exten => _X.,1,NoOp(From Anveo ${EXTEN})
exten => _X.,n,...... The rest of your dial plan....
|
|