# Connecting the CloudBox via Ethernet Cable

Connecting the **RUFUS CloudBox** via **Ethernet** provides the most stable and secure method for managing timing data, especially in large events where reliability and speed are essential. This article walks you through the key considerations, steps to establish a connection, and how to troubleshoot connectivity issues. We’ll assume the CloudBox’s **fixed IP address** is set to **192.168.1.10**.

## Key Considerations Before Connecting

1. **Network Configuration**:
   * Ensure that your computer or device is on the same network as the CloudBox. This means the IP address of your device should be within the same range (e.g., `192.168.1.x`).
   * Check that your device’s **subnet mask** is configured correctly (e.g., `255.255.255.0`) to ensure communication within the same network.
2. **Firewall and Antivirus Software**:
   * Firewalls and antivirus software may block the TCP socket connection to the CloudBox. Ensure that the **firewall** allows traffic on the **CloudBox’s IP address** (`192.168.1.10`) and that no antivirus program is preventing communication.
   * For testing, you may want to temporarily disable firewalls or antivirus software to confirm whether they are causing any connection issues.
3. **Ethernet Cable and Port**:
   * Use a high-quality **Ethernet cable** to physically connect the CloudBox to your network router or switch. Check that the Ethernet port on both the CloudBox and the connecting device is functioning correctly.

## Steps to Connect the CloudBox via Ethernet

### **1. Connect the CloudBox to Your Network**

* **Step 1**: Plug one end of the Ethernet cable into the **Ethernet port** on the CloudBox.
* **Step 2**: Connect the other end of the cable to your **network router,** **switch** or **PC**.

The CloudBox will now be part of your network, using the **fixed IP address** you’ve configured (in this case, `192.168.1.10`).

### **2. Configure Your Computer’s Network Settings**

To ensure that your computer can communicate with the CloudBox, you need to configure its network settings to be on the same subnet.

* **Step 1**: Open **Network Settings** in Windows.
  * Press `Windows + X`, and select **Network Connections**.
  * Right-click on your **Ethernet** adapter, and select **Properties**.
* **Step 2**: Select **Internet Protocol Version 4 (TCP/IPv4)**, and click **Properties**.
* **Step 3**: Configure your IPv4 settings:
  * Choose **Use the following IP address**, and input:
    * **IP Address**: Set an address in the same range as the CloudBox, e.g., `192.168.1.50`.
    * **Subnet Mask**: `255.255.255.0`.
    * **Default Gateway**: Set this to the IP address of your router or leave it blank if you're not routing traffic beyond your local network.
* **Step 4**: Click **OK** to save the settings.

## Testing the Connection

Once connected, it’s important to test that your computer can communicate with the CloudBox. The easiest way to verify the connection is by using the **ping** command.

### **Step-by-Step Ping Test**

1. **Open the Command Prompt**:
   * Press `Windows + R`, type **cmd**, and press **Enter**.
2. **Ping the CloudBox**:

   * In the command prompt, type:

     ```bash
     ping 192.168.1.10
     ```
   * Press **Enter**. If the CloudBox is properly connected, you should see replies from `192.168.1.10`, confirming that the connection is working.

   Example output:

   ```bash
   Pinging 192.168.1.10 with 32 bytes of data:
   Reply from 192.168.1.10: bytes=32 time<1ms TTL=64
   Reply from 192.168.1.10: bytes=32 time<1ms TTL=64
   ```

   If you receive replies like the above, your CloudBox is successfully connected and communicating over Ethernet.

**Troubleshooting Ping Failures**

If the ping fails (e.g., you receive **Request Timed Out** errors):

* **Check Cables**: Ensure the Ethernet cable is properly connected to both the CloudBox and your router or switch.
* **Verify IP Configuration**: Confirm that your computer’s IP address is on the same subnet as the CloudBox (e.g., `192.168.1.x`).
* **Disable Firewall/Antivirus**: Temporarily disable any firewalls or antivirus programs that may be blocking the connection.

## Summary

Connecting the CloudBox via **Ethernet** offers a stable, secure connection ideal for high-performance timing events. By following the steps above, you can easily connect and verify communication between your computer and the CloudBox. Be sure to configure your IP settings correctly, ensure there are no firewalls blocking the connection, and perform a simple **ping test** to confirm successful communication.

If you experience connection issues, check your network configuration and cables, and ensure no security software is preventing access.


---

# Agent Instructions: 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:

```
GET https://help.runonrufus.com/rufus-cloudbox/connections/connecting-the-cloudbox-via-ethernet-cable.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
