I'm using an OAK-4-PRO-W, batch 4525E1.
Some system info:
~ # uname -a
Linux kalama 5.15.144-android13-8-1.23.1-dirty #1 SMP PREEMPT Wed Jan 7 21:38:51 UTC 2026 aarch64 GNU/Linux
~ # cat /etc/os-release
ID=luxonisos-rvc4
NAME="Luxonis OS RVC4"
VERSION="1.23.1"
VERSION_ID=r851-1.23.1
PRETTY_NAME="Luxonis OS RVC4 1.23.1"
IMAGE_REV="112c73e63a9576c7023b6692e249359b1439ae32"
MANIFEST_REV_REV="8ad1fdc"
BUILD_ID="20260107220615"
~ # cat /etc/docker/daemon.json
{"data-root": "/data/docker"}
~ # docker version
Client:
Version: 20.10.25-ce
API version: 1.41
Go version: go1.17.13
Git commit: 911449ca24
Built: Wed Jan 7 23:03:46 2026
OS/Arch: linux/arm64
Context: default
Experimental: true
Server:
Engine:
Version: 20.10.25-ce
API version: 1.41 (minimum version 1.12)
Go version: go1.17.13
Git commit: 791d8ab87747169b4cbfcdf2fd57c81952bae6d5
Built: Thu Nov 10 20:12:34 2022
OS/Arch: linux/arm64
Experimental: false
containerd:
Version: v1.6.19.m
GitCommit: 1e1ea6e986c6c86565bc33d52e34b81b3e2bc71f.m
runc:
Version: 1.1.4+dev
GitCommit: v1.1.4-8-g974efd2df-dirty
docker-init:
Version: 0.19.0
GitCommit: b9f42a0-dirty
And here's how to crash it:
# create bridge network - OK
docker network create test_bridge
# start container on bridge - OK
docker run -d --name test_box --network test_bridge busybox sh -c "while true; do sleep 1; done"
# make outbound traffic - CRASH
docker exec test_box ping -c 1 8.8.8.8
And when I say "crash", I mean this:
- TCP connections, including SSH, hang almost immediately (fraction of a second after execution)
- Front LED goes from blue to off, approx 7 seconds after the command is executed
- System is unrecoverable until physical power cycle
I've tried, to no avail, to get system logs from the crash. I started a program to log kernel messages to a file in /data but it cuts off before the crash occurs. There's nothing in /sys/fs/pstore.
I can obviously work around this, but it's a frustrating limitation! I have an existing software stack which utilises bridge networks, which I was hoping to run on the OAK-4 with minimal changes.
Edited to reflect OS update to 1.23.1, which had no effect.