# KCP Proxy EasyTier typically uses the UDP protocol to transmit IP packets within the virtual network. However, some ISPs restrict UDP, which can lead to high packet loss and affect TCP performance within the virtual network. To address this issue, EasyTier provides a KCP proxy feature that can proxy TCP connections in the virtual network and convert them to KCP for transmission. Thanks to KCP's more aggressive retransmission mechanism, it effectively reduces packet loss and improves TCP transmission speeds within the virtual network. ```mermaid graph LR A[Application Client] -->|TCP| B(EasyTier
Node A) B -->|KCP over UDP| C(EasyTier
Node B) C -->|TCP| D[Application Server] classDef endpoint fill:#c1f0c1,stroke:#2d882d classDef easy fill:#b3d9ff,stroke:#0066cc classDef transport stroke:#ff6666,stroke-width:2px class A,D endpoint class B,C easy linkStyle 1 stroke:#ff6666,stroke-width:2px,stroke-dasharray:5 5 style B stroke-width:2px style C stroke-width:2px ``` ## Using the KCP Proxy The KCP proxy feature requires that all EasyTier nodes in the virtual network be running version v2.2.0 or later. To proxy TCP traffic on Node A to the KCP protocol, simply start EasyTier on Node A with the `--enable-kcp-proxy` parameter. The KCP proxy ensures version compatibility by automatically reverting to the TCP protocol if it detects that the counterpart node does not support the KCP proxy. By default, the KCP proxy uses the kernel's network stack, which may not work correctly due to system firewall settings. You can try using the `--use-smoltcp` parameter to switch to the user-space network stack. ## Disabling KCP Input If you do not want traffic destined for a specific node to use the KCP protocol, start EasyTier on the target node with the `--disable-kcp-input` parameter. For example, if you do not want Node B to receive KCP traffic, start EasyTier on Node B with the `--disable-kcp-input` parameter. In this case, even if Node A has enabled the KCP proxy, the traffic from Node A to Node B will continue to use the TCP protocol. ## Subnet-to-Subnet KCP Support If Node A is a router, and the subnet under A needs to access other EasyTier nodes or other proxied subnets, it can also use the KCP proxy. However, Node A must use the user-space network stack by specifying the `--use-smoltcp` parameter. Otherwise, the TCP protocol will still be used. ## Checking KCP Proxy Status You can check the status of KCP proxy connections using the EasyTier CLI tool. ```bash $ easytier-cli proxy ┌────────────────────┬───────────────────┬─────────────────────────┬───────────┬────────────────┐ │ src │ dst │ start_time │ state │ transport_type │ ├────────────────────┼───────────────────┼─────────────────────────┼───────────┼────────────────┤ │ 10.126.126.7:51838 │ 10.147.223.128:22 │ 2025-02-07 10:39:08 UTC │ Connected │ Tcp │ ├────────────────────┼───────────────────┼─────────────────────────┼───────────┼────────────────┤ │ 0.0.0.0:0 │ 10.147.223.1:80 │ 2025-02-07 10:41:28 UTC │ Connected │ Kcp │ ├────────────────────┼───────────────────┼─────────────────────────┼───────────┼────────────────┤ │ 0.0.0.0:0 │ 10.147.223.1:80 │ 2025-02-07 10:41:18 UTC │ Connected │ Kcp │ └────────────────────┴───────────────────┴─────────────────────────┴───────────┴────────────────┘ ```