I have two Asterisk servers: ast182 and ast188. Calls come into the ast182 server from various machines and VDNs.
I have an Asterisk setup where different VDNs will be calling into the mobilcm context on my server. I need to route these calls to a specific context on another Asterisk server (ast188). The ast188 server also handles other calls routed from the ast182 server, so setting a default context in the pjsip.conf is not an option.
mobilcm Context on ast182:
[mobilcm]
exten => _X.,1,NoOp(Mobil SendToIvr)
same => n,Dial(PJSIP/${EXTEN}@ast188)
same => n,Hangup()
How can I configure my dialplan to ensure that calls routed from the mobilcm context on ast182 are processed in the sendtoivr context on the ast188 server?