> 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-iua-peers.md).

# Creating IUA Peers

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

After you create the IUA link(s), you must define the IUA peers.

To create an IUA peer:

1- Click **IUA** in the navigation panel

![Create Iua Config 0](https://docs.telcobridges.com/w/images/c/cb/Create_Iua_Config_0.png)

2- Select an IUA SAP

![Select IUA SAP 0](https://docs.telcobridges.com/w/images/f/ff/Select_IUA_SAP_0.png)

3- Select an IUA Cluster

![Select IUA cluster 0](https://docs.telcobridges.com/w/images/4/4d/Select_IUA_cluster_0.png)

4- Click **Create New Iua Peer** in the IUA cluster configuration window:

![Create Iua Peer 0](https://docs.telcobridges.com/w/images/a/a6/Create_Iua_Peer_0.png)

5- Configure the new IUA peer:

* Enter a **name** for the peer
* Enter a **destination port** (as configured in the destination element)
* Click **Create**

![Create Iua Peer 1](https://docs.telcobridges.com/w/images/7/70/Create_Iua_Peer_1.png)

6- Verify that the **"Iua Peer was successfully created"** message appears

![Create Iua Peer 2](https://docs.telcobridges.com/w/images/7/76/Create_Iua_Peer_2.png)

7- Enter a destination address for the peer:

* Enter a **destination address**
* Click the **"<<"** button to add it to the list of destination addresses
* Verify that the ***(your address)*****&#x20;was successfully added** message appears

![Create Iua Peer 3](https://docs.telcobridges.com/w/images/d/d6/Create_Iua_Peer_3.png)

**Path**

```
/configurations/@[configuration_name]/hardware_units/@[hardware_name]/iua_stacks/@[iua_stack]/iua_saps/@[iua_sap]/iua_clusters/@[iua_cluster]/iua_peers/@[iua_peer]
```

**Parameters (text)**

```
/configurations/@[configuration_name]/hardware_units/@[hardware_name]/iua_stacks/@[iua_stack]/iua_saps/@[iua_sap]/iua_clusters/@[iua_cluster]/iua_peers/@[iua_peer]
dst_port            = 9900
ip_dsts             = [ "@[address_number]" ]
name                = "@[iua_peer]"

/configurations/@[configuration_name]/hardware_units/@[hardware_name]/iua_stacks/@[iua_stack]/iua_saps/@[iua_sap]/iua_clusters/@[iua_cluster]/iua_peers/@[iua_peer]/advanced_parameters
ip_header_tos      = 0
nb_of_sctp_streams = 32
prim_timeout       = "1 second"
valid_asp_id_req   = false
```

**Parameters (json)**

```
{
  "advanced_parameters" : {
    "ip_header_tos" : 0,
    "nb_of_sctp_streams" : 32,
    "prim_timeout" : "1 second",
    "valid_asp_id_req" : false
  },
  "dst_port" : 9900,
  "ip_dsts" : [
    "@[address_number]"
  ],
  "name" : "@[iua_peer]"
}
```

### List of Parameters

* [Name](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/name/README.md)
* [Destination Port](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/destination-port/README.md)
* [Destination Address](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/destination-address/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-iua-peers.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.
