Displaying 2 results from an estimated 2 matches for "_5xxxxx".
Did you mean:
_0xxxxx
2006 Dec 29
2
Re: Hi reg. 2 asterisk server
Hi Thiru -
> Could u tell me ,how to connect 2 asterisk server using sip as a
> clients...
> asterisk server are in same network...
You can connect them either as "friends" or as "users/peers". I
generally recommend the user/peer method for connecting two servers
since it clearly delineates which codecs and contexts are allowed.
Your sip.conf files will look
2013 Apr 18
5
ODBC dialplan looping problem
...n=_XXXXXX,1,Set(CONF_ID=${EXTEN})
exten=_XXXXXX,n,Background(conf-getpin)
exten=_XXXXXX,n,WaitExten(5)
exten=_XXXXXX,n,Hangup
exten=_1XXXXX,1,Goto(getpin,${EXTEN},1)
exten=_2XXXXX,1,Goto(getpin,${EXTEN},1)
exten=_3XXXXX,1,Goto(getpin,${EXTEN},1)
exten=_4XXXXX,1,Goto(getpin,${EXTEN},1)
exten=_5XXXXX,1,Goto(getpin,${EXTEN},1)
exten=_6XXXXX,1,Goto(getpin,${EXTEN},1)
exten=_7XXXXX,1,Goto(getpin,${EXTEN},1)
exten=_8XXXXX,1,Goto(getpin,${EXTEN},1)
exten=_9XXXXX,1,Goto(getpin,${EXTEN},1)
exten=i,1,Goto(getpin,${CONF_PIN},1)
;
[getpin]
exten=_XXXXXX,1,Set(GLOBAL(CONF_PIN)=${EXTEN})
exten=_XX...