AddSS7TCAPCard

Type

EXS SwitchKit API message

Overview

The AddSS7TCAPCard message is used to make a direct TCP connection between the LLC Host and a SS7 card for the purpose of routing TCAP traffic on a separate link. This message creates the appropriate AddLLCCard messages and sends them to the LLC.

Sent by

Host, using Converged Services Administrator (CSA), webCSA or SwitchManager configuration file.

Arguments

The following table shows the arguments that you can modify:

Argument

Description

CardIP1

The primary SS7 card IP address in the CSP.

CardIP2

The standby SS7 card IP address, if it exists. If there is only one SS7 card in the node, this field should be set to "", that is, the 0-length string.

StackID

The ID of the TCAP stack to which the LLC connects.

SSN

The Subsystem Number configured on the SS7 card to which the LLC should connect.

ControlNode

The logical node ID assigned to the Matrix Controller which controls the chassis where the SS7 card resides.

Action

0x00 To add a connection
0x01 To remove a connection and all RoutingIDs

C Structure

typedef struct {

char CardIP1[30];

char CardIP2[30];

UBYTE StackID;

UBYTE SSN;

int ControlNode;

UBYTE Action;

UBYTE reserved84[5];

} SK_AddSS7TCAPCard;

C++ Class

class SKC_AddSS7TCAPCard : public SKC_DummyMessage {

public:

const char *getCardIP1() const;

void setCardIP1(const char *x);

const char *getCardIP2() const;

void setCardIP2(const char *x);

UBYTE getStackID() const;

void setStackID(UBYTE x);

UBYTE getSSN() const;

void setSSN(UBYTE x);

int getControlNode() const;

void setControlNode(int x);

UBYTE getAction() const;

void setAction(UBYTE x);