Use this object to create a Disconnect Signaling Sequence Profile defining a set of signaling sequences necessary to perform disconnect treatment of a call. The Disconnect Signaling Sequence Profile (SSP) is "populated" by creating and configuring individual signaling sequences.

Command Syntax

% set profiles services disconnectSignalSequenceProfile <profile name> 
	ssp <ssp0 - ssp32> 
		param1 <first param. name> 
		param2 <second param. name> 
		position <0-255> 
		state <disabled | enabled> 
		token <clear | delay | exec | playAnn | playTone> 

Command Parameters

The Disconnect SSP parameters are described in the following table.


Note

If both a tone and an announcement are required when configuring the SBC 7000 for this profile, ensure the announcement is played first. If your configuration mandates playing a tone first, configure a small duration silent .wave file as the first announcement to overcome this restriction.

Disconnect SSP parameters

Parameter

Length/Range

Description

disconnectSignalSequenceProfile

N/A

The Disconnect Signaling Sequence Profile name.

ssp

0-32

A unique signaling sequence in the format "ssp#", where # is an index value (ex. ssp1)

param1

N/A

A text field used to pass parameter #1 to the Disconnect SSP signaling sequence that is being configured. This parameter is dependent on the Disconnect signaling token used in this signaling sequence.

param2

N/A

A text field used to pass parameter #2 to the Disconnect SSP signaling sequence that is being configured. This parameter is dependent on the Disconnect signaling token used in this signaling sequence.

position

0-255

The position in Disconnect SSP at which to execute this step.
This parameter allows you to insert steps into the middle of a Disconnect SSP without needing to renumber the index of the subsequent SSP steps. Positions begin with zero, so to insert a step in front of step 3 in the current Disconnect SSP, you declare a position of 2. (default = 0).

state

N/A

The administrative state of this Disconnect SSP. To reconfigure or delete the profile, set to 'disabled'.

  • disabled (default)
  • enabled

token

N/A

This parameter specifies the token, or action to perform.

  • clear – Initiate call clearing procedures on the call. The disconnect reason is an integer specified in param1.
  • delay – Delay further execution of the Disconnect SSP for the interval (in milliseconds) specified in param1.
  • exec – Start execution of the SSP specified in param1.
  • playAnn – Play the announcement specified in param1. The param1 value must match a previously established announcement number see "Announcement Package" .
  • playTone – Play the tone specified in param1 for the duration specified in param2. The param1 value must match a defined tone type (see "Tone Package" . If param2 is "0", the tone plays indefinitely (or until it completes on its own). Execution of the Disconnect SSP is suspended until the tone completes.

Command Examples

The following command creates and enables an SSP called "ssp1" which is set to position 1.

% set profiles services disconnectSignalSequenceProfile DSSP-1 ssp ssp1 state enabled position 1 token playTone param1 callWaiting1 param2 0 
% show profiles services disconnectSignalSequenceProfile DSSP-1
	ssp ssp1 { 
		position 1; 
		token playTone; 
		param1 callWaiting1; 
		param2 0; 
		state enabled; 
	} 
  • No labels