π Sunday, 1 March 2026
π 1:37 AM
-
Docker related interfaces (br-xxxxxxxxxxxx)
-
Docker creates interfaces for containers on the kernel level. So you can troubleshoot the majority of it on the kernel (data plane) rather than the docker level (control plane)
-
Check the kernelβs view of network interfaces
-
ip link show
-
If its there, see if its up
-
ip link show br-xxxxxxxxxxxx
-
Check the kernel logs for the interface name to see any events
-
journalctl -k | grep br-xxxxxxxxxxxxx
-
For more info you can check docker logs for events also within a certain time period (wont show network interface logs)
-
journalctl -u docker βsince β00:00β βuntil β00:10β