---
title: "Tcp Client Input Connector"
slug: "tcp-client-input-connector"
updated: 2024-11-26T16:57:19Z
published: 2024-11-26T16:57:19Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://help.tritondigital.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Tcp Client Input Connector

| **Param name** | **Mandatory** | **Description** | **Default Value** | **Possible Value** |
| --- | --- | --- | --- | --- |
| Host | Yes | Host name or IP address of automation system. | n/a | Any valid host name / IP address. |
| Port | Yes | Port of automation system. | n/a | 1 - 65535 |
| DeadAirTimeout | No | If specified, defines a timeout period between the reception of data after which the input connector is reset. | n/a | 1 - 2,147,483,647 |
| KeepAlive | No | If specified, keeps TCP connection alive. | Off | on/off |

**Example XML:**

```xml
<TcpClientInputConnector>
   <Host>www.test.com</Host>
   <Port>9000</Port>
   <DeadAirTimeout>600</DeadAirTimeout>
   <Relays>
     <LogFileRelay>
       <FilesToKeep>10</FilesToKeep>
     </LogFileRelay>
     <TcpServerRelay>
       <Port>12834</Port>
     </TcpServerRelay>
   </Relays>
</TcpClientInputConnector>
```
