> 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-isup-stack.md).

# Creating an ISUP Stack

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

The ISDN user part (ISUP) is the highest layer in the SS7 signaling stack and is responsible for the handling of calls. Once you have configured the MTP3 layer of your SS7 system, you must create an ISDN user part stack.

To create an ISUP stack:

1- Click **ISUP** in the navigation panel.

![CreateIsupStack 0](https://docs.telcobridges.com/w/images/7/71/CreateIsupStack_0.png)

2- Click **Create New Stack**

![CreateIsupStack 1](https://docs.telcobridges.com/w/images/f/f1/CreateIsupStack_1.png)

3- Configure the new ISUP stack:

* Make sure the box labeled **Enabled** is **checked**
* Enter a **name** for the stack
* Select a **primary hardware adapter**
* Select a **secondary hardware adapter**
* Click **Create**

![CreateIsupStack 2](https://docs.telcobridges.com/w/images/4/40/CreateIsupStack_2.png)

4- Verify that the **"IsupStack was successfully created"** message appears

![CreateIsupStack 3](https://docs.telcobridges.com/w/images/4/45/CreateIsupStack_3.png)

**Path**

```
/configurations/@[configuration_name]/isup_stacks/@[isup_stack]
```

**Parameters (text)**

```
/configurations/@[configuration_name]/isup_stacks/@[isup_stack]
enabled                 = true
isup_options            = [ "Event information accept all values", "Extra called number bytes", "Extra calling number bytes" ]
name                    = "@[isup_stack]"
primary_hardware_unit   = "@[hardware_name]"
secondary_hardware_unit = ""

/configurations/@[configuration_name]/isup_stacks/@[isup_stack]/timers
first_group_msg_timer = "5 seconds"
t18_timer             = "15 seconds"
t19_timer             = "5 minutes"
t20_timer             = "15 seconds"
t21_timer             = "5 minutes"
t22_timer             = "15 seconds"
t23_timer             = "5 minutes"
t28_timer             = "10 seconds"
```

**Parameters (json)**

```
{
  "enabled" : true,
  "isup_options" : [
    "Event information accept all values",
    "Extra called number bytes",
    "Extra calling number bytes"
  ],
  "name" : "@[isup_stack]",
  "primary_hardware_unit" : "@[hardware_name]",
  "secondary_hardware_unit" : "",
  "timers" : {
    "first_group_msg_timer" : "5 seconds",
    "t18_timer" : "15 seconds",
    "t19_timer" : "5 minutes",
    "t20_timer" : "15 seconds",
    "t21_timer" : "5 minutes",
    "t22_timer" : "15 seconds",
    "t23_timer" : "5 minutes",
    "t28_timer" : "10 seconds"
  }
}
```

### List of Parameters

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

**Advanced**

* [Options](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/isup-options/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-isup-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.
