# Connecting the CloudBox via WiFi Access Point

The **RUFUS CloudBox** can create a **WiFi Access Point**, allowing you to connect wirelessly without needing any external network infrastructure like routers or switches. This method is ideal for quick setups and flexible environments. The access point’s SSID follows the format `CLBX_{IP_ADDRESS}` (e.g., `CLBX_192_168_1_10`), where the IP address reflects the CloudBox’s current TCP socket address. When in WiFi Access Point mode, the CloudBox has a fixed IP address of **192.168.4.2** and dynamically assigns IP addresses to devices through **DHCP**.

The default password for the **WiFi Access Point** is: **changeme**

In this article, we’ll go over key considerations, connection steps, and troubleshooting methods, as well as how to test the connection between your device and the CloudBox.

## Key Considerations Before Connecting

1. **WiFi Range and Interference**:
   * Ensure that the device you’re connecting is within the **WiFi range** of the CloudBox. Physical obstacles (walls, metal objects) or interference from other wireless devices can reduce the signal quality.
2. **Bridged Access Point and Ethernet**:
   * In Access Point mode, the WiFi access point and Ethernet port on the CloudBox are **bridged**. Even if your device is connected to the WiFi network and assigned an IP in the range of `192.168.4.x`, you will still be able to access the CloudBox’s Ethernet IP address for **TCP socket connections**.
3. **Firewall and Antivirus**:
   * Ensure that any **firewall** or **antivirus software** on your computer or device does not block connections to the CloudBox’s IP address (`192.168.4.2`). You may need to temporarily disable such software for testing purposes.

## Steps to Connect to the CloudBox via WiFi Access Point

### **1. Locate and Connect to the CloudBox’s Access Point**

* **Step 1**: Power on the CloudBox and allow it to generate the WiFi access point. The SSID of the network will follow the format `CLBX_{IP_ADDRESS}` (e.g., `CLBX_192_168_1_10`), where the IP address reflects the CloudBox’s current configuration.
* **Step 2**: Open your computer or device’s WiFi settings and look for the CloudBox’s SSID (e.g., `CLBX_192_168_1_10`).
* **Step 3**: Connect to the WiFi network. You may be prompted to enter a password, depending on your CloudBox’s security configuration.

### **2. Ensure Your Device is Set to DHCP (Automatic IP Assignment)**

The CloudBox’s WiFi Access Point automatically assigns IP addresses to connected devices using **DHCP**. To avoid connection issues, ensure your device is set to obtain an IP address automatically.

* **Step 1**: Open **Network Settings** in Windows.
  * Press `Windows + X`, and select **Network Connections**.
  * Right-click on your **WiFi** adapter, and select **Properties**.
* **Step 2**: Select **Internet Protocol Version 4 (TCP/IPv4)**, and click **Properties**.
* **Step 3**: Ensure **Obtain an IP address automatically** is selected. This will allow the CloudBox to automatically assign an IP address to your device within the **192.168.4.x** range.
* **Step 4**: Click **OK** to save the settings.

## Testing the Connection

After connecting, it’s important to test the connection to verify communication between your device and the CloudBox. The easiest way to do this 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.4.2
     ```
   * Press **Enter**. If the CloudBox is properly connected, you should see replies from `192.168.4.2`, confirming the connection.

   Example output:

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

   If the ping is successful, your connection is established and working.

**Troubleshooting Ping Failures**

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

* **Check WiFi Connection**: Ensure you’re connected to the correct WiFi network (`CLBX_{IP_ADDRESS}`) and have an IP address in the **192.168.4.x** range.
* **Verify DHCP Settings**: Ensure that your device is set to **Obtain an IP address automatically**.
* **Disable Firewall/Antivirus**: Temporarily disable any firewalls or antivirus programs that may be blocking the connection.

## Summary

Connecting the CloudBox via **WiFi Access Point** is a simple and flexible way to set up communication between your device and the CloudBox. The CloudBox generates a WiFi network with an SSID that reflects its current IP address, making it easy to identify and connect to. Once connected, your device will automatically be assigned an IP address in the **192.168.4.x** range through DHCP, and the CloudBox will have a fixed IP of **192.168.4.2**.

The bridged connection between the WiFi access point and the Ethernet port allows seamless access to the CloudBox’s services, whether you're connected via WiFi or Ethernet. Make sure to check for firewalls or antivirus software that might block the connection, and perform a simple **ping test** to verify communication.
