I'm using Asterisk server as sip server.
When I use sip details on softphone or any sip client it work properly.
But when i try to connect other asterisk server to this sip server it failed to connect.
I'm using Asterisk server as sip server.
When I use sip details on softphone or any sip client it work properly.
But when i try to connect other asterisk server to this sip server it failed to connect.
There is no any info about exact issue in your qeustion.
Check this article
http://www.voip-info.org/wiki/view/Asterisk+Connect+2+servers
Maybe a little late but I had to do something similar a few weeks ago.
sip.conf (Group1)
register=>group01:[email protected]/group02
You are group 1 and the IP Address of the Asterisk Server of the remote site is 10.0.2.2
In you extensions.conf (Group1)
[group02]
exten => _2xxx,1,Answer()
exten => _2xxx,2,Dial(SIP/${EXTEN}@group02,60,r)
exten => _2xxx,3,Hangup()
Group 2 has to do the same thing vice versa
sip.conf (Group2)
register=>group02:[email protected]/group01
extensions.conf (Group2)
[group01]
exten=>_1xxx,1,Answer()
exten=>_1xxx,2,Dial(SIP/${EXTEN}@group01,60,r)
exten=>_1xxx,3,Hangup()
Hope this helps