> For the complete documentation index, see [llms.txt](https://prosbcdocs.telcobridges.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://prosbcdocs.telcobridges.com/tmedia-documentation/configuration/creating-an-sccp-stack.md).

# Creating an SCCP Stack

> **Applies to:** Tmedia 3.0, 3.2, 3.3

After the [ISUP](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/protocols/isup/README.md) portion of your system is configured, you must create the [SCCP](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/protocols/sccp/README.md) layer. The first step in doing so is to create an SCCP stack.

The Signaling Connection Control Part (SCCP) layer provides connectionless network services and an address translation mechanism, called global title translation (GTT), capability above MTP3.

To create an SCCP stack:

1- Select **SCCP** from the navigation panel

![Create SCCP Stack 0](https://docs.telcobridges.com/w/images/f/fa/Create_SCCP_Stack_0.png)

2- Configure the new SCCP stack:

* Make sure the [Enabled](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/enabled/README.md) box is checked
* Enter a [Name](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/name/README.md) for the SCCP stack
* Select a [Primary Adapter](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/primary-hardware-adapter/README.md)
* Select a [Secondary Adapter](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/secondary-hardware-adapter/README.md)
* Click **Create**

![Create SCCP Stack 1](https://docs.telcobridges.com/w/images/4/45/Create_SCCP_Stack_1.png)

3- Verify that the **"SCCP Stack was successfully created"** message appears

![Create SCCP Stack 2](https://docs.telcobridges.com/w/images/e/e7/Create_SCCP_Stack_2.png)

**Path**

```
/configurations/@[configuration_name]/sccp_stacks/@[sccp_stack]
```

**Parameters (text)**

```
/configurations/@[configuration_name]/sccp_stacks/@[sccp_stack]
enabled             = true
ins_maps            = [  ]
isni_maps           = [  ]
name                = " @[sccp_stack]"
primary_unit        = "@[hardware_name]"
secondary_unit      = "NONE"

/configurations/@[configuration_name]/sccp_stacks/@[sccp_stack]/advanced_parameters
custom_msg_imp              = false
def_status_enq_timer        = 1000
msg_imp_ext_unit_data       = 4
msg_imp_ext_unit_data_serv  = 3
msg_imp_long_unit_data      = 4
msg_imp_long_unit_data_serv = 3
msg_imp_unit_data           = 4
msg_imp_unit_data_serv      = 3
```

**Parameters (json)**

```
{
  "advanced_parameters" : {
    "custom_msg_imp" : false,
    "def_status_enq_timer" : 1000,
    "msg_imp_ext_unit_data" : 4,
    "msg_imp_ext_unit_data_serv" : 3,
    "msg_imp_long_unit_data" : 4,
    "msg_imp_long_unit_data_serv" : 3,
    "msg_imp_unit_data" : 4,
    "msg_imp_unit_data_serv" : 3
  },
  "enabled" : true,
  "ins_maps" : [
  ],
  "isni_maps" : [
  ],
  "name" : " @[sccp_stack]",
  "primary_unit" : "@[hardware_name]",
  "secondary_unit" : "NONE
}
```

### List of Parameters

* [Enabled](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/enabled/README.md)
* [Name](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/name/README.md)
* [Primary Adapter](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/primary-hardware-adapter/README.md)
* [Secondary Adapter](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/secondary-hardware-adapter/README.md)

**Advanced Parameters**

* [Default Status Enquiry Timer](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/default-status-enquiry-timer/README.md)
* [Customize msg importance](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/customize-msg-importance/README.md)
* [Msg Importance: Unit Data](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/msg-importance-unit-data/README.md)
* [Msg Importance: Unit Data Service](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/msg-importance-unit-data-service/README.md)
* [Msg Importance: Ext Unit Data](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/msg-importance-ext-unit-data/README.md)
* [Msg Importance: Ext Unit Data Service](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/msg-importance-ext-unit-data-service/README.md)
* [Msg Importance: Long Unit Data](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/msg-importance-long-unit-data/README.md)
* [Msg Importance: Long Unit Data Service](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/msg-importance-long-unit-data-service/README.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://prosbcdocs.telcobridges.com/tmedia-documentation/configuration/creating-an-sccp-stack.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
