mirror of
https://github.com/unifi-utilities/unifios-utilities.git
synced 2024-08-30 18:32:21 +00:00
df2a0f9144
thanks @kb9gxk
9 lines
140 B
Bash
9 lines
140 B
Bash
#!/bin/bash
|
|
|
|
## Create network bridge for CNI
|
|
|
|
ip link show cni0 > /dev/null 2>&1
|
|
if [ $? -ne 0 ]; then
|
|
ip link add cni0 type bridge
|
|
fi
|