-
×InformationNeed Windows 11 help?Check documents on compatibility, FAQs, upgrade information and available fixes.
Windows 11 Support Center. -
-
×InformationNeed Windows 11 help?Check documents on compatibility, FAQs, upgrade information and available fixes.
Windows 11 Support Center. -

Create an account on the HP Community to personalize your profile and ask a question

05-16-2016 06:06 AM
I would like to ask you one question.
If I have two external GK, one is primary and another is secondary.
Is there any chance on DMA for both external GK set up the same prefix?
For example :
primary GK - IP address - prefix 5
secondary GK - another Ip address - the same prefix 5
How to configure this in my DMA 7000?
Could you help me with this ?
05-17-2016 04:15 AM
By my mind the next schema should work:
1. Define both (primary and secondary) GKs as External Gatekeepers without any prefixes.
2. Define a new Dial Rule with action "Resolve to external gatekeeper" and move this GKs to the "Selected gatekeepers" box
3. (Optional) Define the preliminary script for this rule to filter the dial string like the next one (based on the example from DMA Operations Guide):
///////////////////////////////
// FILTER (Inverted)
// Do not match on this rule unless the dial string has prefix 5.
// 1234 --> NEXT_RULE
if (!DIAL_STRING.match(/^5/))
{
return NEXT_RULE;
}
Good luck!