OAK4 Getting Started
This document will guide you through the process of setting up your OAK4 device. OAK4 cameras feature both USB-C and PoE interfaces for power and communication.1
Powering
OAK4 cameras consume up to 25W of power (peaks) and require PoE+ (802.3at, 30W) injector/switch for power (eg. TL-SG1008P). After being powered and booted, status LED should turn blue and start "breathing", indicating that the device is ready for configuration.
PoE+ & Internet
Normal PoE (802.3af, 15W) injector/switch won't be able to provide enough power. We recommend having the switch connected to the internet to get the best experience.

Other connection options
Troubleshoot
2
Setup
To configure the device, please visit setup.luxonis.com.
You can either configure it for local/offline usage, or connect the camera to the Hub.After you configure the device - by showing the generated QR code to the camera - the device's status LED will turn green and start blinking for a few seconds, and then turn solid blue. This means that configuration was successful and you can proceed with the next steps.

OS Compatibility Chart
RVC4 OS version | oakctl version | Command |
---|---|---|
OS 1.11 | 0.9.0 | oakctl self-update -v 0.9.0 (current stable) |
OS 1.8 | 0.4.2 | oakctl self-update -v 0.4.2 |
OS 1.6 | 0.2.11 | oakctl self-update -v 0.2.11 |
Next steps
Next steps assume you have setup the device locally. If your setup was done via the Hub, please continue on Cloud section.
3
Next steps
Now that the device is configured and the status LED is solid blue, you can proceed with the next steps to quickly get started with the OAK4 device.Click here to get started
Software
4
Advanced
SSH
ADB
SSH
To access the device via SSH, you will need to know its IP address. You can find it by connecting the device to your network and checking the DHCP leases on your router, or using a network scanning tool likenmap
or some IP scanner app.Command Line
1# `root` is without a password
2# SSH into the the device
3(pc)$ ssh root@IP_ADDRESS
scp
:Command Line
1(pc)$ scp folder/file.txt root@IP_ADDRESS:/data/
2# Or a folder
3(pc)$ scp -r folder/ root@IP_ADDRESS:/data/
Set static IP
To set a static IP address on the OAK4 device, you can either set it during the Setup (Advanced options -> disable DHCP -> set static IP), or set it manually afterwards by connecting to the camera (either ADB/SSH) and usingagentconfd configure
tool:Command Line
1agentconfd configure --help
2Usage: agentconfd configure [OPTIONS] [NETWORK_CONFIG]
3
4Arguments:
5 [NETWORK_CONFIG] Either "dhcp" or "ipv4,ipv4_mask,ipv4_gateway"
Command Line
1# Set static IP example:
2agentconfd configure 192.168.10.15,255.255.255.0,192.168.10.255
3# Revert back to DHCP:
4agentconfd configure dhcp