Created
June 22, 2014 06:56
-
-
Save ipoddubny/f4ee7df42d2c16083c45 to your computer and use it in GitHub Desktop.
Asterisk Multifon configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[incoming] | |
exten => 7926XXXXXXX,1,Versobe(Hello Multifon) | |
same => n,NoOp(Call from ${CALLERID(num)}) | |
; do something, like answer, ... | |
same => n,Hangup | |
[outbound] | |
exten => _89XXXXXXXXX,1,Dial(SIP/multifon/${EXTEN}) | |
same => n,Hangup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
register => [email protected]:passw0rd123:[email protected]:5060/7926XXXXXXX | |
[multifon] | |
type=peer | |
port=5060 | |
nat=yes | |
host=sbc.megafon.ru | |
insecure=port,invite | |
context=incoming | |
defaultuser=7926XXXXXXX | |
secret=passw0rd123 | |
fromuser=7926XXXXXXX | |
fromdomain=multifon.ru | |
dtmfmode=inband | |
directmedia=no |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment