> For the complete documentation index, see [llms.txt](https://docs.weka.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.weka.io/4.1/install/weka-installation-on-gcp/add-clients.md).

# Add clients

To use DPDK mounts, WEKA requires client instances to have at least two NICs, one for management and one for the frontend data. It is possible to add more NICs for redundancy and higher performance.

A client with NICs in the same VPC networks and subnets as the Weka Cluster can access the cluster. If a client is on another VPC network, peering is required between the VPC networks.

The client instance must be in the same region as the WEKA cluster on GCP.

## Mount the filesystem

1. Create a mount point (only once):\
   `mkdir /mnt/weka`
2. Install the Weka agent (only once):\
   `curl <backend server http address>:14000/dist/v1/install | sh`\
   Example:\
   `curl http://10.20.0.2:14000/dist/v1/install | sh`
3. Mount a stateless client on the filesystem:
   * **DPDK mount (the client needs to have at least two NICs):**\
     `mount -t wekafs -o net=ethX <backend server IP address>/<filesystem name> /mnt/weka`

     \
     Example:\
     `mount -t wekafs -o net=eth1 10.20.30.40/fs1 /mnt/weka`<br>
   * **UDP mount:** \
     `mount -t wekafs -o net=udp <backend server IP address>/<filesystem name> /mnt/weka`\
     \
     Example:\
     `mount -t wekafs -o net=udp 10.20.30.40/fs1 /mnt/weka`

**Related topics**

[Mount filesystems](/4.1/fs/mounting-filesystems.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://docs.weka.io/4.1/install/weka-installation-on-gcp/add-clients.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.
