Skip to content

Cellular Management

Arrow devices include integrated LTE cellular modems that provide backup connectivity when primary ethernet connections are unavailable. The cellular connection ensures your Arrow devices remain accessible even during network outages.


Access cellular status through the Arrow Manager dashboard on your device. The Cellular Status card displays real-time connection information.

StatusMeaning
ConnectedCellular is online and can route traffic
RegisteredModem is registered with carrier but may not have data
DisabledCellular is intentionally turned off
DisconnectedNo cellular connection available

When cellular is connected, an additional badge indicates routing status:

BadgeMeaning
Active RouteCellular is actively routing network traffic
BackupConnected but ethernet is handling traffic

Signal strength is displayed in dBm (decibel-milliwatts):

RangeQuality
-50 to -70 dBmExcellent
-70 to -85 dBmGood
-85 to -100 dBmFair
-100 to -110 dBmPoor
Below -110 dBmVery Poor
MetricDescriptionGood Values
SINRSignal-to-Interference-plus-Noise Ratio> 10 dB
RSRPReference Signal Received Power> -80 dBm
RSRQReference Signal Received Quality> -10 dB
FieldDescription
CarrierMobile network provider
ModeConnection type (LTE, 5G, etc.)
BandFrequency band in use
IP AddressInternal cellular IP
Public IPExternal IP seen by internet services
LatencyNetwork round-trip time in milliseconds
Download/UploadCurrent connection speeds

Arrow devices automatically manage cellular connectivity based on ethernet status:

flowchart TD
    A[Ethernet Connected] --> B{Has Internet?}
    B -->|Yes| C[Cellular: Backup Mode]
    B -->|No| D[Cellular: Active Route]
    E[Ethernet Disconnected] --> D
    D --> F[Traffic Routes via LTE]
    C --> G[Traffic Routes via Ethernet]

Cellular becomes the active route when:

  • Ethernet cable is disconnected
  • Ethernet is connected but has no internet access
  • Primary network gateway is unreachable

Cellular returns to backup mode when:

  • Ethernet regains internet connectivity
  • Primary network gateway becomes reachable

The Arrow Manager shows which interface is currently handling traffic:

InterfaceMeaning
vmbr0Ethernet bridge is active route
wwan0Cellular modem is active route

LTE Bridge Mode creates a dedicated network bridge that routes virtual machine traffic through the cellular connection. This is an advanced feature for specific use cases.

LTE Bridge Mode incurs a $20 per gigabyte data fee. This mode should only be used for temporary testing or emergency access. Normal operation should use ethernet connectivity.

  • Emergency access when ethernet is completely unavailable
  • Temporary testing requiring isolated internet access
  • Specific scenarios where VM traffic must use cellular
ComponentDescription
Bridge ModeEnabled or Disabled
vmbr1 InterfaceWhether the LTE bridge interface exists
LTE ConnectionWhether wwan0 is active
NAT RulesWhether network translation is configured
Active VMsNumber of VMs attached to vmbr1
  1. Access Arrow Manager on your device
  2. Navigate to LTE Bridge Mode settings
  3. Verify the LTE connection is active (required)
  4. Click Enable LTE Bridge
  5. Confirm the cost warning in the dialog
  1. Navigate to LTE Bridge Mode settings
  2. Click Disable LTE Bridge
  3. Confirm the action

VMs attached to vmbr1 will lose connectivity until reconfigured.


To route a VM through the LTE bridge:

  1. Enable LTE Bridge Mode in Arrow Manager
  2. Edit your VM’s hardware settings
  3. Change the Network Device bridge from vmbr0 to vmbr1
  4. Save and restart the VM

Configure network settings using one of these methods:

Set your VM’s network interface to DHCP. It will automatically receive:

  • IP Address: 192.168.2.10-250
  • Gateway: 192.168.2.1
  • DNS: Provided by DHCP
SettingValue
IP Address192.168.2.X (2-254)
Subnet Mask255.255.255.0
Gateway192.168.2.1
DNS8.8.8.8 (or preferred)

Test the connection from inside the VM:

Terminal window
curl ifconfig.me

This should return the cellular public IP address.


flowchart LR
    subgraph Arrow Device
        VM[Virtual Machine] --> vmbr1[vmbr1 Bridge<br/>192.168.2.1/24]
        vmbr1 --> NAT[NAT Rules]
        NAT --> wwan0[LTE Modem<br/>wwan0]
    end
    wwan0 --> Internet[Internet]
  1. vmbr1 Bridge: Created with IP 192.168.2.1/24
  2. DHCP Server: Assigns IPs (192.168.2.10-250) to VMs
  3. NAT Rules: Translates VM IPs to the LTE interface
  4. IP Forwarding: Enabled between vmbr1 and wwan0
  5. Auto-Disable: Bridge disables if LTE connection drops

Possible Causes:

  • No cellular signal in location
  • SIM card issue
  • Modem hardware problem

Resolution:

  1. Check signal strength in a different location
  2. Verify SIM status with VTEM Labs support
  3. Restart the Arrow device

Possible Causes:

  • Data plan exhausted
  • Carrier network issues
  • APN configuration problem

Resolution:

  1. Wait for carrier network recovery
  2. Contact VTEM Labs to verify data plan status
  3. Check if other cellular devices work in the location

Possible Causes:

  • LTE connection not active
  • Previous bridge configuration failed

Resolution:

  1. Verify “LTE Connection” shows as active
  2. Try refreshing the status
  3. Restart Arrow Manager if needed

Possible Causes:

  • VM not attached to vmbr1
  • Incorrect network configuration in VM
  • Bridge not fully enabled

Resolution:

  1. Verify VM network device is set to vmbr1
  2. Check VM has IP in 192.168.2.x range
  3. Verify all bridge status indicators are green
  4. Test with DHCP before using static IP