gluon-core: add isolated option to gluon_wired proto

allow setting the isolated flag for all bridge interfaces
This commit is contained in:
Julian Labus 2022-04-19 16:00:12 +02:00 committed by Alexander List
parent 027118b127
commit 5e28199c2d

View File

@ -58,6 +58,12 @@ proto_gluon_wired_setup() {
proto_init_update "$ifname" 1
proto_send_update "$config"
if [ -d "/sys/devices/virtual/net/${ifname}/bridge" ]; then
for brif in "/sys/class/net/${ifname}/brif/"* ; do
echo 1 > "${brif}/isolated"
done
fi
if [ "$vxlan" -eq 1 ]; then
meshif="vx_$config"