Connect to Olares One via SSH 10 min
Certain development and operational tasks, such as connecting Olares One with other devices to form a cluster, require direct command-line access.
Olares One is primarily used as a headless device, so you can access the terminal remotely without a monitor or keyboard connected to it.
You can connect to the host shell using one of the following methods:
- Control Hub Terminal is a web-based interface for direct root access. It is recommended for quick tasks.
- Secure Shell (SSH) is the standard protocol for remote management and complex operations.
Before you begin
- The default username and password for Olares One are both
olares.Reset default SSH password
Even if you primarily use the Control Hub terminal, you must reset this password immediately in Settings > My hardware to secure your device against unauthorized access.
- SSH access grants powerful control over the system. Ensure you keep your credentials secure.
Prerequisites
Hardware
- Your Olares One is set up and connected to a network.
- A client device, such as a computer, is required to access the terminal.
Experience
- Basic familiarity with terminal commands and the command-line interface (CLI).
LarePass (Required for remote access)
- The LarePass app is installed on your device. This is required only if you plan to connect via SSH from a remote location outside your local network.
Method 1: Access via Control Hub
For quick access without configuring SSH clients, you can use the web-based terminal built directly into Control Hub.
- Open the Control Hub app.
- In the left sidebar, under the Terminal section, click Olares.

You can now execute system commands directly in the embedded terminal.
Run as root
The Control Hub terminal runs as root by default. You do not need to use sudo before commands.
Method 2: Access via SSH
SSH establishes a secure session over the network, allowing you to use command-line operations for Olares One on your current device.
Get IP address of Olares One
To connect via SSH, you first need to find the internal IP address of your Olares One.
Open the LarePass app, and go to Settings > System to navigate to the Olares management page.

Tap on the device card.
Scroll down to the Network section. You can find the Intranet IP there.
Check via Control Hub
You can check the IP using the ifconfig command in the Control Hub terminal.
Look for your active connection, typically named enp3s0 (wired) or wlo1 (wireless). The IP address follows inet.
Connect via SSH (local network)
If your computer and the Olares One are on the same Wi-Fi or LAN:
Open a terminal on your computer.
Run the
sshcommand using Olares One's local IP address:bashssh <username>@<host_ip_address>For example:
bashssh [email protected]Enter the host password when prompted.
Connect via SSH (remote access)
If you are away from home, you can use LarePass VPN to bridge the connection securely.
Allow SSH access via VPN
For security, SSH access via VPN is disabled by default. You must enable it once.
- On Olares, open the Settings app.
- Navigate to VPN.
- Toggle on Allow SSH via VPN.
Enable LarePass VPN
Open the LarePass desktop client on your computer.
Click your avatar in the top-left corner and toggle on VPN connection.

Open a terminal on your computer.
Run the
sshcommand using Olares One's local IP address. LarePass handles the routing automatically.bashssh <username>@<host_ip_address>For example:
bashssh [email protected]Enter the host password when prompted.