Difference between revisions of "Work flow for DID"
From Kolmisoft Wiki
Jump to navigationJump to search
Line 1: | Line 1: | ||
Technical explanation: | Technical explanation: | ||
# Let's say call comes through some Provider. The connection type is not important. So it could be PSTN/SIP/IAX2 whatever. | # Let's say a call comes through some Provider. The connection type is not important. So it could be PSTN/SIP/IAX2, or whatever. | ||
# Call -> Provider -> PSTN/SIP/IAX2 -> Your Asterisk | # Call -> Provider -> PSTN/SIP/IAX2 -> Your Asterisk. | ||
# Then call hits dialplan [mor] exten => _X.,1,mor: | # Then call hits dialplan [mor] exten => _X.,1,mor: | ||
# Call -> Provider -> PSTN/SIP/IAX2 -> Your Asterisk -> MOR | # Call -> Provider -> PSTN/SIP/IAX2 -> Your Asterisk -> MOR. | ||
# MOR checks incoming DID | # MOR checks its database (DB) for the incoming DID. If it's found, MOR sees where to route the call. In the MOR GUI, you can select to route the DID to a special Dial Plan (CallBack, Calling Cards, Authorization by PIN/ANI) or to some local device. | ||
# | # The local device in its Call Flow can forward the call to: | ||
## VoiceMail | ## VoiceMail | ||
## another Local Device | ## another Local Device | ||
## | ## an external number. | ||
# So summed up, MOR can forward DID to: | # So summed up, MOR can forward a DID to: | ||
## Dial Plan (CallBack, Calling Cards, Authorization by PIN, IVR) | ## Dial Plan (CallBack, Calling Cards, Authorization by PIN, IVR) | ||
## Local Device | ## Local Device |
Revision as of 02:27, 16 May 2010
Technical explanation:
- Let's say a call comes through some Provider. The connection type is not important. So it could be PSTN/SIP/IAX2, or whatever.
- Call -> Provider -> PSTN/SIP/IAX2 -> Your Asterisk.
- Then call hits dialplan [mor] exten => _X.,1,mor:
- Call -> Provider -> PSTN/SIP/IAX2 -> Your Asterisk -> MOR.
- MOR checks its database (DB) for the incoming DID. If it's found, MOR sees where to route the call. In the MOR GUI, you can select to route the DID to a special Dial Plan (CallBack, Calling Cards, Authorization by PIN/ANI) or to some local device.
- The local device in its Call Flow can forward the call to:
- VoiceMail
- another Local Device
- an external number.
- So summed up, MOR can forward a DID to:
- Dial Plan (CallBack, Calling Cards, Authorization by PIN, IVR)
- Local Device
- VoiceMail
- External Number
- Call -> Provider -> PSTN/SIP/IAX2 -> DID -> Your Asterisk -> MOR -> (Dial Plan or Local Device, Voicemail, External Number) -> ...