summaryrefslogtreecommitdiff
path: root/templates/interfaces/bridge/node.def
blob: b6654f077205f14b3156a34a128a783b57d8110e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
tag:
priority: 310
type: txt
help: Bridge interface name
val_help: <brN>; Bridge interface name
syntax:expression: pattern $VAR(@) "^br[0-9]+$" ; "Must be (br0 - br999)"

create: /sbin/brctl addbr $VAR(@)
	if [ -n "$VAR(mac/@)" ] ; then
	   sudo ip li set dev $VAR(@) address $VAR(mac/@)
	fi
        sudo ip link set $VAR(@) up

delete: if ! /opt/vyatta/sbin/vyatta-bridgegroup-depedency.pl   \
          --no-interfaces-assigned                            	\
          --bridge-interface="$VAR(@)"; then                    \
          exit 1
        fi
        sudo ip link set $VAR(@) down;
        sudo /sbin/brctl delbr $VAR(@);