logo

System Commands

Device information, diagnostics, updates, and system management from the shell

Device Information

info

Display a summary of device hardware and software information.

info

show version

Display the firmware version, device model, and unique identifier.

show version

Output includes:

FieldDescription
Firmware VersionThe currently running firmware release
Device ModelHardware model identifier (e.g., BXE2150C)
Device UUIDUnique device identifier used by the Simplifyd Cloud

VPN Tunnel Status

status

Show the current state of the secure cloud tunnel.

status

Output includes:

FieldDescription
InterfaceThe tunnel interface (typically tun0)
AIDAssignment ID for this device in the Simplifyd network
IP AddressThe tunnel IP assigned to this device
MTUMaximum transmission unit for the tunnel
RunningWhether the tunnel is active

Diagnostics

ping

Test connectivity to a host from the device.

ping <hostname-or-ip>

Example:

ping 8.8.8.8

Example output:

64 bytes from 8.8.8.8 ttl=55 time=12.4ms
64 bytes from 8.8.8.8 ttl=55 time=11.9ms

Press Ctrl+C to stop.

logs

Stream live log output from a system service.

logs <service>

Available services:

ServiceDescription
vpndVPN tunnel daemon
netconfigdNetwork configuration daemon
websocketCloud communication bridge
wifiWiFi management daemon
dhcp4dDHCP server
updaterFirmware update service

Example — tail the VPN daemon log:

logs vpnd

Press Ctrl+C to stop streaming.


Security

password

Set the SSH login password for the device. This password is also required to enable remote packet capture from the dashboard.

password <new-password>

Example:

password myNewP@ss

Choose a strong password. This credential grants shell access to the device. If SSH is enabled in the topology settings, anyone with this password and network access to the device can log in.


System Configuration

set api-url

Configure the API server the device connects to. Useful in air-gapped or private cloud deployments.

set api-url <host:port> [--secure]
ArgumentDescription
<host:port>The hostname and port of the API server
--secureUse a TLS-secured WebSocket (wss://) instead of ws://

Examples:

set api-url api.example.com:9999
set api-url api.example.com:443 --secure

This setting is configured automatically during provisioning and should only be changed if you are running a private Simplifyd deployment.

set system-tunnel-route

Define the IP range assigned to the Simplifyd Cloud infrastructure. See Routing for details.


Firmware Updates

update

Trigger a firmware update. The device will download and apply the latest firmware release from Simplifyd's update server.

update

To update from a custom server (for testing or private deployments):

update <server-ip>

Example:

update 192.168.1.50

The device will automatically reboot after a successful firmware update to apply the new version.


Power Management

reboot

Restart the device. All active connections will be briefly interrupted while the system restarts.

reboot

shutdown

Power the device off. The device will need to be physically powered on again to restart.

shutdown

shutdown cuts power to the device. Ensure you have physical or out-of-band access before running this command in a remote session.