Thursday, September 15, 2011

Nortel BCM and T1s from an Adtran TA 908e

I recently had a customer with a "dynamic T1" where the voice is being carried over VoIP and handed off using an ADTRAN Total Access 908e via T1.  The customer's PBX was a Nortel BCM-200 with an older software version.

The issue that was run into is that the BCM does not support In-band ANI (Caller ID).  In-band is where the Caller ID is sent during the rings, so nothing special is required.  If this is not supported, then you have to do some extra work to get it going.  The easiest solution to this is to just switch to a PRI, so then everything is done on the D channel and there are no issues.  The problem here was that the software version of the BCM did not support the feature to add a synthetic dial tone when making a call, which the customer was not able to live without.

With this specific customer, they previously had a Voice T1 directly from the phone company.  This was configured the "old way" so when a new call came in it would send *ANI*DNIS* to the PBX.  For those unfamiliar with this, I'll explain.  Basically on a T1 trunk, the phone company will send digits to the PBX indicating what number was called.  These are usually used for DIDs (Direct Inward Dialing).  In this case, the customer was receiving 4 digits (the last 4 digits of the number).  So if I'm calling from (800) 444-4444 to (888) 555-1212, the PBX will receive *8004444444*1212*.  It knows based on the asterisks which numbers are which, and routes accordingly.

The original Adtran config looked like this (I added comments with ! to explain commands):

voice trunk T02 type t1-rbs supervision wink role network
  !any calls received on this trunk should use this caller id
  caller-id-override number-inbound 8885551212

  !send 4 digits of the called number to the PBX
  did digits-transferred 4

  !provide dialtone whenever a line is seized on this trunk
  dialtone

  !connect this trunk to a T1 interface
  connect t1 0/3 tdm-group 3

Likewise, this is the original PBX config:



The issue with this configuration is that outbound calls work fine, however inbound calls receive a fast busy.  The reason is because the ANI Number option is set to Y in the BCM configuration, but the Adtran is not sending *ANI*DNIS*, it's only sending DNIS.  But don't worry, there is a solution!

The following Adtran config works to send *ANI*DNIS* for incoming calls, but not expect it for outgoing calls, which is the desired configuration.

voice trunk T02 type t1-rbs supervision fgd role network
  caller-id-override number-inbound 8885551212
  dialtone

  !same as the did line before, just a different syntax
  dnis-digits 4 prefix ""

  connect t1 0/3 tdm-group 3

Two additional notes here:
  1. There is also a command under this context fgd inbound-address which causes this trunk to expect *ANI*DNIS* on outgoing calls.
  2. If you already have your trunk configured for wink supervision (type t1-rbs supervision wink), you will have to remove the trunk (no voice trunk T02), then add it in again, and then add it back to the voice grouped-trunk that it should belong to.

No comments:

Post a Comment